inie2003 commited on
Commit
24be9fc
1 Parent(s): f79277f

updated folder path

Browse files
Files changed (1) hide show
  1. app.py +9 -5
app.py CHANGED
@@ -13,31 +13,35 @@ AWS_ACCESS_KEY_ID = os.getenv("AWS_ACCESS_KEY_ID")
13
  AWS_SECRET_ACCESS_KEY = os.getenv("AWS_SECRET_ACCESS_KEY")
14
 
15
  # Predefined list of datasets
16
- datasets = ["MajorTom-Germany", "MajorTom-Netherlands","WayveScenes"]
17
  folder_path_dict = {
18
- "WayveScenes": "WayveScenes/",
19
  "MajorTom-Germany": "MajorTOM-DE/",
20
  "MajorTom-Netherlands": "MajorTOM-NL/",
 
21
  "MajorTom-UK" :""
22
  }
23
  description = {
24
  "WayveScenes": "A large-scale dataset featuring diverse urban driving scenes, captured from vehicles to advance AI perception and navigation in complex environments.",
25
  "MajorTom-Germany": "A geospatial dataset containing satellite imagery from across Germany, designed for tasks like land-use classification, environmental monitoring, and earth observation analytics.",
26
  "MajorTom-Netherlands": "A geospatial dataset containing satellite imagery from across Netherlands, designed for tasks like land-use classification, environmental monitoring, and earth observation analytics.",
27
- "MajorTom-UK" :"A geospatial dataset containing satellite imagery from across the United Kingdom, designed for tasks like land-use classification, environmental monitoring, and earth observation analytics."
 
28
  }
29
  selection = {
30
  'WayveScenes': [1, 10], #Is there problem?
31
  "MajorTom-Germany": [1, 1],
32
  "MajorTom-Netherlands": [1,1],
33
- "MajorTom-UK": [1,1]
 
34
  }
35
 
36
  example_queries = {
37
  'WayveScenes': "Parking Signs, Pedestrian Crossing, Traffic Light (Red, Green, Orange)",
38
  "MajorTom-Germany": "Airports, Golf Courses, Wind Mills, Solar Panels ",
39
  "MajorTom-Netherlands": "Airports, Golf Courses, Wind Mills, Solar Panels ",
40
- "MajorTom-UK": "Airports, Golf Courses, Wind Mills, Solar Panels "
 
41
  }
42
 
43
 
 
13
  AWS_SECRET_ACCESS_KEY = os.getenv("AWS_SECRET_ACCESS_KEY")
14
 
15
  # Predefined list of datasets
16
+ datasets = ["MajorTom-Germany", "MajorTom-Netherlands","WayveScenes", "MajorTom-Europe"]
17
  folder_path_dict = {
18
+ "WayveScenes": "",
19
  "MajorTom-Germany": "MajorTOM-DE/",
20
  "MajorTom-Netherlands": "MajorTOM-NL/",
21
+ "MajorTom-Europe": "MajorTom-Europe/",
22
  "MajorTom-UK" :""
23
  }
24
  description = {
25
  "WayveScenes": "A large-scale dataset featuring diverse urban driving scenes, captured from vehicles to advance AI perception and navigation in complex environments.",
26
  "MajorTom-Germany": "A geospatial dataset containing satellite imagery from across Germany, designed for tasks like land-use classification, environmental monitoring, and earth observation analytics.",
27
  "MajorTom-Netherlands": "A geospatial dataset containing satellite imagery from across Netherlands, designed for tasks like land-use classification, environmental monitoring, and earth observation analytics.",
28
+ "MajorTom-UK" :"A geospatial dataset containing satellite imagery from across the United Kingdom, designed for tasks like land-use classification, environmental monitoring, and earth observation analytics.",
29
+ "MajorTom-Europe" :"A geospatial dataset containing satellite imagery from across Europe, designed for tasks like land-use classification, environmental monitoring, and earth observation analytics."
30
  }
31
  selection = {
32
  'WayveScenes': [1, 10], #Is there problem?
33
  "MajorTom-Germany": [1, 1],
34
  "MajorTom-Netherlands": [1,1],
35
+ "MajorTom-UK": [1,1],
36
+ "MajorTom-Europe": [1,19]
37
  }
38
 
39
  example_queries = {
40
  'WayveScenes': "Parking Signs, Pedestrian Crossing, Traffic Light (Red, Green, Orange)",
41
  "MajorTom-Germany": "Airports, Golf Courses, Wind Mills, Solar Panels ",
42
  "MajorTom-Netherlands": "Airports, Golf Courses, Wind Mills, Solar Panels ",
43
+ "MajorTom-UK": "Airports, Golf Courses, Wind Mills, Solar Panels ",
44
+ "MajorTom-Europe": "Airports, Golf Courses, Wind Mills, Solar Panels "
45
  }
46
 
47