Spaces:
Running
Running
| """Single source of truth for model + index versioning. | |
| The indexer (PC) and the server (HF Space) both import these constants. | |
| The server asserts that meta.json carries matching values before it starts, | |
| so a stale index can never be served against a different model. | |
| """ | |
| # The indexer (build_index.py) builds THIS model's index (currently the "geo" index). | |
| MODEL_ID = "geolocal/StreetCLIP" | |
| INDEX_VERSION = "v3" | |
| # The Space serves multiple switchable models. Each has its own baked weights and | |
| # its own index/meta files in data/. Switch per request via /guess?model=<key>. | |
| MODELS = { | |
| "fast": { | |
| "model_id": "openai/clip-vit-base-patch32", | |
| "index_version": "v1", | |
| "index_file": "index_fast.npy", | |
| "meta_file": "meta_fast.json", | |
| "label": "Lite β ViT-B/32 (fast, less accurate)", | |
| }, | |
| "pro": { | |
| "model_id": "openai/clip-vit-large-patch14", | |
| "index_version": "v2", | |
| "index_file": "index_pro.npy", | |
| "meta_file": "meta_pro.json", | |
| "label": "Pro β ViT-L/14 (slower, more accurate)", | |
| }, | |
| "geo": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "index_version": "v3", | |
| "index_file": "index_geo.npy", | |
| "meta_file": "meta_geo.json", | |
| "label": "Geo β StreetCLIP image retrieval only", | |
| }, | |
| "geoplus": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "index_version": "v3", | |
| "index_file": "index_geo.npy", | |
| "meta_file": "meta_geo.json", | |
| "text_file": "text_geo.npy", | |
| "text_countries_file": "text_geo_countries.json", | |
| "label": "Geo+ β StreetCLIP + clue-text", | |
| }, | |
| "atlas": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "head_file": "atlas_head.npz", | |
| "label": "Atlas β learned classifier (best)", | |
| }, | |
| "serbia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "serbia_index.npz", | |
| "country_slug": "serbia", | |
| "country_name": "Serbia", | |
| "label": "Serbia β pinpoint locator (Serbia map only)", | |
| }, | |
| "krajina": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "krajina_index.npz", | |
| "country_slug": "krajina", | |
| "country_name": "Krajina", | |
| "label": "Krajina β pinpoint locator (Serbian Krajina map only)", | |
| }, | |
| "usa": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "usa_index.npz", | |
| "country_slug": "usa", | |
| "country_name": "USA", | |
| "map_id": "69c14929fc130ff0dfb0b916", | |
| "label": "USA β pinpoint locator (USA map only)", | |
| }, | |
| "canada": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "canada_index.npz", | |
| "country_slug": "canada", | |
| "country_name": "Canada", | |
| "map_id": "69c13f8a66d5a179c340dd12", | |
| "label": "Canada β pinpoint locator (Canada map only)", | |
| }, | |
| "brazil": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "brazil_index.npz", | |
| "country_slug": "brazil", | |
| "country_name": "Brazil", | |
| "map_id": "69c13f7066d5a179c340ac38", | |
| "label": "Brazil β pinpoint locator (Brazil map only)", | |
| }, | |
| "argentina": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "argentina_index.npz", | |
| "country_slug": "argentina", | |
| "country_name": "Argentina", | |
| "map_id": "69c13c6466d5a179c33f9e16", | |
| "label": "Argentina β pinpoint locator (Argentina map only)", | |
| }, | |
| "russia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "russia_index.npz", | |
| "country_slug": "russia", | |
| "country_name": "Russia", | |
| "map_id": "69c1457b047406872f3c80f4", | |
| "label": "Russia β pinpoint locator (Russia map only)", | |
| }, | |
| "indonesia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "indonesia_index.npz", | |
| "country_slug": "indonesia", | |
| "country_name": "Indonesia", | |
| "map_id": "69c141f7200aba567e5352a8", | |
| "label": "Indonesia β pinpoint locator (Indonesia map only)", | |
| }, | |
| "peru": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "peru_index.npz", | |
| "country_slug": "peru", | |
| "country_name": "Peru", | |
| "map_id": "69c144a7047406872f3be463", | |
| "label": "Peru β pinpoint locator (Peru map only)", | |
| }, | |
| "italy": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "italy_index.npz", | |
| "country_slug": "italy", | |
| "country_name": "Italy", | |
| "map_id": "69c14219200aba567e538c4c", | |
| "label": "Italy β pinpoint locator (Italy map only)", | |
| }, | |
| "malaysia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "malaysia_index.npz", | |
| "country_slug": "malaysia", | |
| "country_name": "Malaysia", | |
| "map_id": "69c14385047406872f3af85c", | |
| "label": "Malaysia β pinpoint locator (Malaysia map only)", | |
| }, | |
| "colombia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "colombia_index.npz", | |
| "country_slug": "colombia", | |
| "country_name": "Colombia", | |
| "label": "Colombia β pinpoint locator (Colombia map only)", | |
| }, | |
| "chile": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "chile_index.npz", | |
| "country_slug": "chile", | |
| "country_name": "Chile", | |
| "map_id": "69c140b8200aba567e525880", | |
| "label": "Chile β pinpoint locator (Chile map only)", | |
| }, | |
| "new-zealand": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "new-zealand_index.npz", | |
| "country_slug": "new-zealand", | |
| "country_name": "New Zealand", | |
| "map_id": "69c14422047406872f3b6e4f", | |
| "label": "New Zealand β pinpoint locator (New Zealand map only)", | |
| }, | |
| # --- All 107 geobot countries (auto-generated) --- | |
| "albania": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "albania_index.npz", | |
| "country_slug": "albania", | |
| "country_name": "Albania", | |
| "map_id": "6a4374dfb273ca11f3f8286d", | |
| "label": "Albania β pinpoint locator", | |
| }, | |
| "american-samoa": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "american-samoa_index.npz", | |
| "country_slug": "american-samoa", | |
| "country_name": "American Samoa", | |
| "map_id": "6a4374dfb273ca11f3f82f20", | |
| "label": "American Samoa β pinpoint locator", | |
| }, | |
| "andorra": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "andorra_index.npz", | |
| "country_slug": "andorra", | |
| "country_name": "Andorra", | |
| "map_id": "6a4374dfb273ca11f3f83011", | |
| "label": "Andorra β pinpoint locator", | |
| }, | |
| "australia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "australia_index.npz", | |
| "country_slug": "australia", | |
| "country_name": "Australia", | |
| "map_id": "69c13e6d66d5a179c3400fe0", | |
| "label": "Australia β pinpoint locator", | |
| }, | |
| "austria": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "austria_index.npz", | |
| "country_slug": "austria", | |
| "country_name": "Austria", | |
| "map_id": "6a4374e0b273ca11f3f8310c", | |
| "label": "Austria β pinpoint locator", | |
| }, | |
| "bangladesh": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "bangladesh_index.npz", | |
| "country_slug": "bangladesh", | |
| "country_name": "Bangladesh", | |
| "map_id": "6a4374e0b273ca11f3f83fb2", | |
| "label": "Bangladesh β pinpoint locator", | |
| }, | |
| "belgium": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "belgium_index.npz", | |
| "country_slug": "belgium", | |
| "country_name": "Belgium", | |
| "map_id": "6a4374e0b273ca11f3f8533a", | |
| "label": "Belgium β pinpoint locator", | |
| }, | |
| "bhutan": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "bhutan_index.npz", | |
| "country_slug": "bhutan", | |
| "country_name": "Bhutan", | |
| "map_id": "6a4374e1b273ca11f3f8604f", | |
| "label": "Bhutan β pinpoint locator", | |
| }, | |
| "bolivia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "bolivia_index.npz", | |
| "country_slug": "bolivia", | |
| "country_name": "Bolivia", | |
| "map_id": "6a4374e1b273ca11f3f8663e", | |
| "label": "Bolivia β pinpoint locator", | |
| }, | |
| "bosnia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "bosnia_index.npz", | |
| "country_slug": "bosnia", | |
| "country_name": "Bosnia & Herzegovina", | |
| "map_id": "6a4374e1b273ca11f3f876d8", | |
| "label": "Bosnia & Herzegovina β pinpoint locator", | |
| }, | |
| "botswana": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "botswana_index.npz", | |
| "country_slug": "botswana", | |
| "country_name": "Botswana", | |
| "map_id": "6a4374e2b273ca11f3f8886b", | |
| "label": "Botswana β pinpoint locator", | |
| }, | |
| "bulgaria": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "bulgaria_index.npz", | |
| "country_slug": "bulgaria", | |
| "country_name": "Bulgaria", | |
| "map_id": "6a4374e2b273ca11f3f89613", | |
| "label": "Bulgaria β pinpoint locator", | |
| }, | |
| "cambodia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "cambodia_index.npz", | |
| "country_slug": "cambodia", | |
| "country_name": "Cambodia", | |
| "map_id": "6a4374e2b273ca11f3f8a99b", | |
| "label": "Cambodia β pinpoint locator", | |
| }, | |
| "costa-rica": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "costa-rica_index.npz", | |
| "country_slug": "costa-rica", | |
| "country_name": "Costa Rica", | |
| "map_id": "6a4374e3b273ca11f3f8cbc9", | |
| "label": "Costa Rica β pinpoint locator", | |
| }, | |
| "cura-ao": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "cura-ao_index.npz", | |
| "country_slug": "cura-ao", | |
| "country_name": "CuraΓ§ao", | |
| "map_id": "6a4374e3b273ca11f3f8d58e", | |
| "label": "CuraΓ§ao β pinpoint locator", | |
| }, | |
| "czechia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "czechia_index.npz", | |
| "country_slug": "czechia", | |
| "country_name": "Czechia", | |
| "map_id": "6a4374e4b273ca11f3f8d728", | |
| "label": "Czechia β pinpoint locator", | |
| }, | |
| "denmark": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "denmark_index.npz", | |
| "country_slug": "denmark", | |
| "country_name": "Denmark", | |
| "map_id": "6a4374e4b273ca11f3f8eab0", | |
| "label": "Denmark β pinpoint locator", | |
| }, | |
| "dominican-republic": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "dominican-republic_index.npz", | |
| "country_slug": "dominican-republic", | |
| "country_name": "Dominican Republic", | |
| "map_id": "6a4374e4b273ca11f3f8f956", | |
| "label": "Dominican Republic β pinpoint locator", | |
| }, | |
| "ecuador": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "ecuador_index.npz", | |
| "country_slug": "ecuador", | |
| "country_name": "Ecuador", | |
| "map_id": "6a4374e4b273ca11f3f8fde8", | |
| "label": "Ecuador β pinpoint locator", | |
| }, | |
| "estonia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "estonia_index.npz", | |
| "country_slug": "estonia", | |
| "country_name": "Estonia", | |
| "map_id": "6a4374e5b273ca11f3f9116f", | |
| "label": "Estonia β pinpoint locator", | |
| }, | |
| "eswatini": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "eswatini_index.npz", | |
| "country_slug": "eswatini", | |
| "country_name": "Eswatini", | |
| "map_id": "6a4374e5b273ca11f3f91747", | |
| "label": "Eswatini β pinpoint locator", | |
| }, | |
| "faroe-islands": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "faroe-islands_index.npz", | |
| "country_slug": "faroe-islands", | |
| "country_name": "Faroe Islands", | |
| "map_id": "6a4374e5b273ca11f3f91c2a", | |
| "label": "Faroe Islands β pinpoint locator", | |
| }, | |
| "finland": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "finland_index.npz", | |
| "country_slug": "finland", | |
| "country_name": "Finland", | |
| "map_id": "6a4374e5b273ca11f3f91e02", | |
| "label": "Finland β pinpoint locator", | |
| }, | |
| "france": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "france_index.npz", | |
| "country_slug": "france", | |
| "country_name": "France", | |
| "map_id": "69c14192200aba567e52dd15", | |
| "label": "France β pinpoint locator", | |
| }, | |
| "germany": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "germany_index.npz", | |
| "country_slug": "germany", | |
| "country_name": "Germany", | |
| "map_id": "69c141a6200aba567e53042b", | |
| "label": "Germany β pinpoint locator", | |
| }, | |
| "ghana": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "ghana_index.npz", | |
| "country_slug": "ghana", | |
| "country_name": "Ghana", | |
| "map_id": "6a4374e6b273ca11f3f9318a", | |
| "label": "Ghana β pinpoint locator", | |
| }, | |
| "greece": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "greece_index.npz", | |
| "country_slug": "greece", | |
| "country_name": "Greece", | |
| "map_id": "6a4374e6b273ca11f3f94030", | |
| "label": "Greece β pinpoint locator", | |
| }, | |
| "greenland": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "greenland_index.npz", | |
| "country_slug": "greenland", | |
| "country_name": "Greenland", | |
| "map_id": "6a4374e7b273ca11f3f953b9", | |
| "label": "Greenland β pinpoint locator", | |
| }, | |
| "guatemala": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "guatemala_index.npz", | |
| "country_slug": "guatemala", | |
| "country_name": "Guatemala", | |
| "map_id": "6a4374e7b273ca11f3f95418", | |
| "label": "Guatemala β pinpoint locator", | |
| }, | |
| "hong-kong": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "hong-kong_index.npz", | |
| "country_slug": "hong-kong", | |
| "country_name": "Hong Kong", | |
| "map_id": "6a4374e7b273ca11f3f95a02", | |
| "label": "Hong Kong β pinpoint locator", | |
| }, | |
| "hungary": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "hungary_index.npz", | |
| "country_slug": "hungary", | |
| "country_name": "Hungary", | |
| "map_id": "6a4374e7b273ca11f3f95b1d", | |
| "label": "Hungary β pinpoint locator", | |
| }, | |
| "iceland": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "iceland_index.npz", | |
| "country_slug": "iceland", | |
| "country_name": "Iceland", | |
| "map_id": "6a4374e8b273ca11f3f96bb7", | |
| "label": "Iceland β pinpoint locator", | |
| }, | |
| "india": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "india_index.npz", | |
| "country_slug": "india", | |
| "country_name": "India", | |
| "map_id": "6a4374e8b273ca11f3f97a5c", | |
| "label": "India β pinpoint locator", | |
| }, | |
| "ireland": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "ireland_index.npz", | |
| "country_slug": "ireland", | |
| "country_name": "Ireland", | |
| "map_id": "6a4374e9b273ca11f3f98de5", | |
| "label": "Ireland β pinpoint locator", | |
| }, | |
| "israel": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "israel_index.npz", | |
| "country_slug": "israel", | |
| "country_name": "Israel", | |
| "map_id": "6a4374e9b273ca11f3f9a16d", | |
| "label": "Israel β pinpoint locator", | |
| }, | |
| "japan": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "japan_index.npz", | |
| "country_slug": "japan", | |
| "country_name": "Japan", | |
| "map_id": "69c1423b200aba567e53b362", | |
| "label": "Japan β pinpoint locator", | |
| }, | |
| "jordan": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "jordan_index.npz", | |
| "country_slug": "jordan", | |
| "country_name": "Jordan", | |
| "map_id": "6a4374eab273ca11f3f9aa6a", | |
| "label": "Jordan β pinpoint locator", | |
| }, | |
| "kazakhstan": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "kazakhstan_index.npz", | |
| "country_slug": "kazakhstan", | |
| "country_name": "Kazakhstan", | |
| "map_id": "6a4374eab273ca11f3f9ab3a", | |
| "label": "Kazakhstan β pinpoint locator", | |
| }, | |
| "kenya": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "kenya_index.npz", | |
| "country_slug": "kenya", | |
| "country_name": "Kenya", | |
| "map_id": "6a4374eab273ca11f3f9ac2a", | |
| "label": "Kenya β pinpoint locator", | |
| }, | |
| "kyrgyzstan": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "kyrgyzstan_index.npz", | |
| "country_slug": "kyrgyzstan", | |
| "country_name": "Kyrgyzstan", | |
| "map_id": "6a4374eab273ca11f3f9bfb3", | |
| "label": "Kyrgyzstan β pinpoint locator", | |
| }, | |
| "laos": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "laos_index.npz", | |
| "country_slug": "laos", | |
| "country_name": "Laos", | |
| "map_id": "6a4374eab273ca11f3f9c96a", | |
| "label": "Laos β pinpoint locator", | |
| }, | |
| "latvia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "latvia_index.npz", | |
| "country_slug": "latvia", | |
| "country_name": "Latvia", | |
| "map_id": "6a4374ebb273ca11f3f9cc32", | |
| "label": "Latvia β pinpoint locator", | |
| }, | |
| "lebanon": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "lebanon_index.npz", | |
| "country_slug": "lebanon", | |
| "country_name": "Lebanon", | |
| "map_id": "6a4374ebb273ca11f3f9cdc8", | |
| "label": "Lebanon β pinpoint locator", | |
| }, | |
| "lesotho": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "lesotho_index.npz", | |
| "country_slug": "lesotho", | |
| "country_name": "Lesotho", | |
| "map_id": "6a4374ebb273ca11f3f9cebb", | |
| "label": "Lesotho β pinpoint locator", | |
| }, | |
| "liechtenstein": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "liechtenstein_index.npz", | |
| "country_slug": "liechtenstein", | |
| "country_name": "Liechtenstein", | |
| "map_id": "6a4374ebb273ca11f3f9d39d", | |
| "label": "Liechtenstein β pinpoint locator", | |
| }, | |
| "lithuania": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "lithuania_index.npz", | |
| "country_slug": "lithuania", | |
| "country_name": "Lithuania", | |
| "map_id": "6a4374ebb273ca11f3f9d497", | |
| "label": "Lithuania β pinpoint locator", | |
| }, | |
| "luxembourg": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "luxembourg_index.npz", | |
| "country_slug": "luxembourg", | |
| "country_name": "Luxembourg", | |
| "map_id": "6a4374ebb273ca11f3f9d627", | |
| "label": "Luxembourg β pinpoint locator", | |
| }, | |
| "malta": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "malta_index.npz", | |
| "country_slug": "malta", | |
| "country_name": "Malta", | |
| "map_id": "6a4374ebb273ca11f3f9da74", | |
| "label": "Malta β pinpoint locator", | |
| }, | |
| "mexico": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "mexico_index.npz", | |
| "country_slug": "mexico", | |
| "country_name": "Mexico", | |
| "map_id": "69c143dd047406872f3b1ffa", | |
| "label": "Mexico β pinpoint locator", | |
| }, | |
| "monaco": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "monaco_index.npz", | |
| "country_slug": "monaco", | |
| "country_name": "Monaco", | |
| "map_id": "6a4374ebb273ca11f3f9dc67", | |
| "label": "Monaco β pinpoint locator", | |
| }, | |
| "mongolia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "mongolia_index.npz", | |
| "country_slug": "mongolia", | |
| "country_name": "Mongolia", | |
| "map_id": "6a4374ecb273ca11f3f9de25", | |
| "label": "Mongolia β pinpoint locator", | |
| }, | |
| "montenegro": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "montenegro_index.npz", | |
| "country_slug": "montenegro", | |
| "country_name": "Montenegro", | |
| "map_id": "69c14401047406872f3b4710", | |
| "label": "Montenegro β pinpoint locator", | |
| }, | |
| "namibia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "namibia_index.npz", | |
| "country_slug": "namibia", | |
| "country_name": "Namibia", | |
| "map_id": "6a4374ecb273ca11f3f9e7e0", | |
| "label": "Namibia β pinpoint locator", | |
| }, | |
| "nepal": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "nepal_index.npz", | |
| "country_slug": "nepal", | |
| "country_name": "Nepal", | |
| "map_id": "6a4374edb273ca11f3f9f399", | |
| "label": "Nepal β pinpoint locator", | |
| }, | |
| "netherlands": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "netherlands_index.npz", | |
| "country_slug": "netherlands", | |
| "country_name": "Netherlands", | |
| "map_id": "6a4374edb273ca11f3f9fb3a", | |
| "label": "Netherlands β pinpoint locator", | |
| }, | |
| "nigeria": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "nigeria_index.npz", | |
| "country_slug": "nigeria", | |
| "country_name": "Nigeria", | |
| "map_id": "6a4374edb273ca11f3fa06f2", | |
| "label": "Nigeria β pinpoint locator", | |
| }, | |
| "north-macedonia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "north-macedonia_index.npz", | |
| "country_slug": "north-macedonia", | |
| "country_name": "North Macedonia", | |
| "map_id": "6a4374eeb273ca11f3fa1a7b", | |
| "label": "North Macedonia β pinpoint locator", | |
| }, | |
| "norway": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "norway_index.npz", | |
| "country_slug": "norway", | |
| "country_name": "Norway", | |
| "map_id": "6a4374eeb273ca11f3fa224b", | |
| "label": "Norway β pinpoint locator", | |
| }, | |
| "oman": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "oman_index.npz", | |
| "country_slug": "oman", | |
| "country_name": "Oman", | |
| "map_id": "6a4374eeb273ca11f3fa35d3", | |
| "label": "Oman β pinpoint locator", | |
| }, | |
| "pakistan": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "pakistan_index.npz", | |
| "country_slug": "pakistan", | |
| "country_name": "Pakistan", | |
| "map_id": "6a4374efb273ca11f3fa495b", | |
| "label": "Pakistan β pinpoint locator", | |
| }, | |
| "panama": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "panama_index.npz", | |
| "country_slug": "panama", | |
| "country_name": "Panama", | |
| "map_id": "6a4374efb273ca11f3fa497a", | |
| "label": "Panama β pinpoint locator", | |
| }, | |
| "paraguay": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "paraguay_index.npz", | |
| "country_slug": "paraguay", | |
| "country_name": "Paraguay", | |
| "map_id": "6a4374efb273ca11f3fa518c", | |
| "label": "Paraguay β pinpoint locator", | |
| }, | |
| "philippines": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "philippines_index.npz", | |
| "country_slug": "philippines", | |
| "country_name": "Philippines", | |
| "map_id": "69c144c0047406872f3c0b79", | |
| "label": "Philippines β pinpoint locator", | |
| }, | |
| "poland": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "poland_index.npz", | |
| "country_slug": "poland", | |
| "country_name": "Poland", | |
| "map_id": "6a4374efb273ca11f3fa5b39", | |
| "label": "Poland β pinpoint locator", | |
| }, | |
| "portugal": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "portugal_index.npz", | |
| "country_slug": "portugal", | |
| "country_name": "Portugal", | |
| "map_id": "6a4374f0b273ca11f3fa6ec1", | |
| "label": "Portugal β pinpoint locator", | |
| }, | |
| "puerto-rico": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "puerto-rico_index.npz", | |
| "country_slug": "puerto-rico", | |
| "country_name": "Puerto Rico", | |
| "map_id": "6a4374f0b273ca11f3fa8055", | |
| "label": "Puerto Rico β pinpoint locator", | |
| }, | |
| "qatar": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "qatar_index.npz", | |
| "country_slug": "qatar", | |
| "country_name": "Qatar", | |
| "map_id": "6a4374f0b273ca11f3fa83e9", | |
| "label": "Qatar β pinpoint locator", | |
| }, | |
| "r-union": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "r-union_index.npz", | |
| "country_slug": "r-union", | |
| "country_name": "RΓ©union", | |
| "map_id": "6a4374f1b273ca11f3fa86cf", | |
| "label": "RΓ©union β pinpoint locator", | |
| }, | |
| "republic-of-cyprus": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "republic-of-cyprus_index.npz", | |
| "country_slug": "republic-of-cyprus", | |
| "country_name": "Cyprus", | |
| "map_id": "6a4374f1b273ca11f3fa87f9", | |
| "label": "Cyprus β pinpoint locator", | |
| }, | |
| "romania": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "romania_index.npz", | |
| "country_slug": "romania", | |
| "country_name": "Romania", | |
| "map_id": "69c1454d047406872f3c59dc", | |
| "label": "Romania β pinpoint locator", | |
| }, | |
| "rwanda": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "rwanda_index.npz", | |
| "country_slug": "rwanda", | |
| "country_name": "Rwanda", | |
| "map_id": "6a4374f1b273ca11f3fa8e99", | |
| "label": "Rwanda β pinpoint locator", | |
| }, | |
| "san-marino": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "san-marino_index.npz", | |
| "country_slug": "san-marino", | |
| "country_name": "San Marino", | |
| "map_id": "6a4374f1b273ca11f3fa9373", | |
| "label": "San Marino β pinpoint locator", | |
| }, | |
| "senegal": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "senegal_index.npz", | |
| "country_slug": "senegal", | |
| "country_name": "Senegal", | |
| "map_id": "6a4374f1b273ca11f3fa9568", | |
| "label": "Senegal β pinpoint locator", | |
| }, | |
| "singapore": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "singapore_index.npz", | |
| "country_slug": "singapore", | |
| "country_name": "Singapore", | |
| "map_id": "6a4374f1b273ca11f3fa9f2d", | |
| "label": "Singapore β pinpoint locator", | |
| }, | |
| "slovakia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "slovakia_index.npz", | |
| "country_slug": "slovakia", | |
| "country_name": "Slovakia", | |
| "map_id": "6a4374f2b273ca11f3faa210", | |
| "label": "Slovakia β pinpoint locator", | |
| }, | |
| "slovenia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "slovenia_index.npz", | |
| "country_slug": "slovenia", | |
| "country_name": "Slovenia", | |
| "map_id": "6a4374f2b273ca11f3fab0b6", | |
| "label": "Slovenia β pinpoint locator", | |
| }, | |
| "south-africa": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "south-africa_index.npz", | |
| "country_slug": "south-africa", | |
| "country_name": "South Africa", | |
| "map_id": "6a4374f2b273ca11f3fabf5b", | |
| "label": "South Africa β pinpoint locator", | |
| }, | |
| "spain": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "spain_index.npz", | |
| "country_slug": "spain", | |
| "country_name": "Spain", | |
| "map_id": "69c148b74fc9a80447c424e9", | |
| "label": "Spain β pinpoint locator", | |
| }, | |
| "sri-lanka": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "sri-lanka_index.npz", | |
| "country_slug": "sri-lanka", | |
| "country_name": "Sri Lanka", | |
| "map_id": "6a4374f3b273ca11f3fad2e4", | |
| "label": "Sri Lanka β pinpoint locator", | |
| }, | |
| "sweden": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "sweden_index.npz", | |
| "country_slug": "sweden", | |
| "country_name": "Sweden", | |
| "map_id": "6a4374f3b273ca11f3fadc7b", | |
| "label": "Sweden β pinpoint locator", | |
| }, | |
| "switzerland": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "switzerland_index.npz", | |
| "country_slug": "switzerland", | |
| "country_name": "Switzerland", | |
| "map_id": "6a4374f3b273ca11f3faf001", | |
| "label": "Switzerland β pinpoint locator", | |
| }, | |
| "taiwan": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "taiwan_index.npz", | |
| "country_slug": "taiwan", | |
| "country_name": "Taiwan", | |
| "map_id": "6a4374f4b273ca11f3faf9c2", | |
| "label": "Taiwan β pinpoint locator", | |
| }, | |
| "thailand": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "thailand_index.npz", | |
| "country_slug": "thailand", | |
| "country_name": "Thailand", | |
| "map_id": "6a4374f4b273ca11f3fb0352", | |
| "label": "Thailand β pinpoint locator", | |
| }, | |
| "tunisia": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "tunisia_index.npz", | |
| "country_slug": "tunisia", | |
| "country_name": "Tunisia", | |
| "map_id": "6a4374f4b273ca11f3fb16db", | |
| "label": "Tunisia β pinpoint locator", | |
| }, | |
| "turkey": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "turkey_index.npz", | |
| "country_slug": "turkey", | |
| "country_name": "Turkey", | |
| "map_id": "69c148e64fc9a80447c44bff", | |
| "label": "Turkey β pinpoint locator", | |
| }, | |
| "uganda": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "uganda_index.npz", | |
| "country_slug": "uganda", | |
| "country_name": "Uganda", | |
| "map_id": "6a4374f5b273ca11f3fb209d", | |
| "label": "Uganda β pinpoint locator", | |
| }, | |
| "ukraine": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "ukraine_index.npz", | |
| "country_slug": "ukraine", | |
| "country_name": "Ukraine", | |
| "map_id": "6a4374f5b273ca11f3fb24e8", | |
| "label": "Ukraine β pinpoint locator", | |
| }, | |
| "united-arab-emirates": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "united-arab-emirates_index.npz", | |
| "country_slug": "united-arab-emirates", | |
| "country_name": "United Arab Emirates", | |
| "map_id": "6a4374f6b273ca11f3fb338d", | |
| "label": "United Arab Emirates β pinpoint locator", | |
| }, | |
| "united-kingdom": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "united-kingdom_index.npz", | |
| "country_slug": "united-kingdom", | |
| "country_name": "United Kingdom", | |
| "map_id": "6a4374f6b273ca11f3fb422b", | |
| "label": "United Kingdom β pinpoint locator", | |
| }, | |
| "uruguay": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "uruguay_index.npz", | |
| "country_slug": "uruguay", | |
| "country_name": "Uruguay", | |
| "map_id": "6a4374f6b273ca11f3fb55b4", | |
| "label": "Uruguay β pinpoint locator", | |
| }, | |
| "us-virgin-islands": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "us-virgin-islands_index.npz", | |
| "country_slug": "us-virgin-islands", | |
| "country_name": "US Virgin Islands", | |
| "map_id": "6a4374f7b273ca11f3fb5f79", | |
| "label": "US Virgin Islands β pinpoint locator", | |
| }, | |
| "vietnam": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "vietnam_index.npz", | |
| "country_slug": "vietnam", | |
| "country_name": "Vietnam", | |
| "map_id": "6a4374f7b273ca11f3fb6039", | |
| "label": "Vietnam β pinpoint locator", | |
| }, | |
| "west-bank": { | |
| "model_id": "geolocal/StreetCLIP", | |
| "region_file": "west-bank_index.npz", | |
| "country_slug": "west-bank", | |
| "country_name": "West Bank", | |
| "map_id": "6a4374f7b273ca11f3fb71cd", | |
| "label": "West Bank β pinpoint locator", | |
| }, | |
| } | |
| DEFAULT_MODEL = "atlas" | |