@@ -359,6 +359,22 @@ class TuringUKSpeciesClassifier(SpeciesClassifier, Resnet50Classifier_Turing):
359
359
"03_uk_data_category_map.json"
360
360
)
361
361
362
+ class QuebecVermontMothSpeciesClassifierMixedResolution (
363
+ SpeciesClassifier , Resnet50ClassifierLowRes
364
+ ):
365
+ name = "Quebec & Vermont Species Classifier"
366
+ description = (
367
+ "Trained on February 24, 2022 using mix of low & med resolution images"
368
+ )
369
+ weights_path = (
370
+ "https://object-arbutus.cloud.computecanada.ca/ami-models/moths/classification/"
371
+ "moths_quebecvermont_resnet50_randaug_mixres_128_fev24.pth"
372
+ )
373
+ labels_path = (
374
+ "https://object-arbutus.cloud.computecanada.ca/ami-models/moths/classification/"
375
+ "quebec-vermont_moth-category-map_19Jan2023.json"
376
+ )
377
+
362
378
363
379
class UKDenmarkMothSpeciesClassifierMixedResolution (
364
380
SpeciesClassifier , Resnet50ClassifierLowRes
@@ -382,7 +398,6 @@ class UKDenmarkMothSpeciesClassifierMixedResolution(
382
398
"01-moths-ukdenmark_v2_category_map_species_names.json"
383
399
)
384
400
385
-
386
401
class PanamaMothSpeciesClassifierMixedResolution (SpeciesClassifier , Resnet50Classifier ):
387
402
name = "Panama Species Classifier"
388
403
description = "Trained on December 22, 2022 using a mix of low & med resolution images. 148 species."
@@ -415,13 +430,13 @@ class PanamaMothSpeciesClassifierMixedResolution2023(
415
430
416
431
417
432
class GlobalMothSpeciesClassifier (SpeciesClassifier , Resnet50TimmClassifier ):
418
- name = "Global Species Classifier 2024"
419
433
input_size = 128
420
- lookup_gbif_names = False
421
434
normalization = imagenet_normalization
435
+ lookup_gbif_names = False
422
436
437
+ name = "Global Species Classifier - Aug 2024"
423
438
description = (
424
- "Trained on August 28th, 2024 on 29,176 species. "
439
+ "Trained on August 28th, 2024 for 29,176 species. "
425
440
"https://wandb.ai/moth-ai/global-moth-classifier/runs/h0cuqrbc/overview"
426
441
)
427
442
weights_path = (
@@ -432,3 +447,73 @@ class GlobalMothSpeciesClassifier(SpeciesClassifier, Resnet50TimmClassifier):
432
447
"https://object-arbutus.cloud.computecanada.ca/ami-models/moths/classification/"
433
448
"global_category_map_with_names_20240828.json"
434
449
)
450
+
451
+
452
+ class QuebecVermontMothSpeciesClassifier2024 (
453
+ SpeciesClassifier , Resnet50TimmClassifier
454
+ ):
455
+ input_size = 128
456
+ normalization = imagenet_normalization
457
+ lookup_gbif_names = False
458
+
459
+ name = "Quebec & Vermont Species Classifier - Apr 2024"
460
+ description = (
461
+ "Trained on April 17, 2024 for 2,497 species. "
462
+ "https://wandb.ai/moth-ai/ami-gbif-fine-grained/runs/1x53zmp2/overview"
463
+ )
464
+ weights_path = (
465
+ "https://object-arbutus.cloud.computecanada.ca/ami-models/moths/classification/"
466
+ "quebec-vermont_resnet50_baseline_20240417_950de764.pth"
467
+ )
468
+ labels_path = (
469
+ "https://object-arbutus.cloud.computecanada.ca/ami-models/moths/classification/"
470
+ "01_ami-gbif_fine-grained_ne-america_category_map-with_names.json"
471
+ )
472
+
473
+
474
+
475
+ class UKDenmarkMothSpeciesClassifier2024 (
476
+ SpeciesClassifier , Resnet50TimmClassifier
477
+ ):
478
+ input_size = 128
479
+ normalization = imagenet_normalization
480
+ lookup_gbif_names = False
481
+
482
+ name = "UK & Denmark Species Classifier - Apr 2024"
483
+ description = (
484
+ "Trained on April 17, 2024 for 2,603 species. "
485
+ "https://wandb.ai/moth-ai/ami-gbif-fine-grained/runs/x5u7jcbf/overview"
486
+ )
487
+ weights_path = (
488
+ "https://object-arbutus.cloud.computecanada.ca/ami-models/moths/classification/"
489
+ "uk-denmark_resnet50_baseline_20240417_55250a8b.pth"
490
+ )
491
+ labels_path = (
492
+ "https://object-arbutus.cloud.computecanada.ca/ami-models/moths/classification/"
493
+ "02_ami-gbif_fine-grained_w-europe_category_map-with_names.json"
494
+ )
495
+
496
+
497
+ class PanamaMothSpeciesClassifier2024 (
498
+ SpeciesClassifier , Resnet50TimmClassifier
499
+ ):
500
+ input_size = 128
501
+ normalization = imagenet_normalization
502
+ lookup_gbif_names = False
503
+
504
+ name = "Panama Species Classifier - Apr 2024"
505
+ description = (
506
+ "Trained on April 17, 2024 for 636 species. "
507
+ "https://wandb.ai/moth-ai/ami-gbif-fine-grained/runs/1sekgkan/overview"
508
+ )
509
+
510
+ weights_path = (
511
+ "https://object-arbutus.cloud.computecanada.ca/ami-models/moths/classification/"
512
+ "panama_resnet50_baseline_20240417_edbb46dd.pth"
513
+ )
514
+ labels_path = (
515
+ "https://object-arbutus.cloud.computecanada.ca/ami-models/moths/classification/"
516
+ "03_ami-gbif_fine-grained_c-america_category_map-with_names.json"
517
+ )
518
+
519
+
0 commit comments