Skip to content

Commit dcc01e2

Browse files
committed
Change model paths
1 parent b834804 commit dcc01e2

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

Diff for: model_cards/v4.0.0a.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
1919
## Description
2020

21-
- **Identifier:** kaggle:google/FIXME
21+
- **Identifier:** `kaggle:google/speciesnet/keras/v4.0.0a`
2222
- **Type:** Always crop, i.e. we run the detector first and crop the image to the top detection bounding box before feeding it to the species classifier.
2323

2424
## Classifier

Diff for: model_cards/v4.0.0b.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
1919
## Description
2020

21-
- **Identifier:** kaggle:google/FIXME
21+
- **Identifier:** `kaggle:google/speciesnet/keras/v4.0.0b`
2222
- **Type:** Full image, i.e. we run both the detector and the species classifier on the full image, independently.
2323

2424
## Classifier

Diff for: speciesnet/__init__.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,8 @@
2323
from speciesnet.multiprocessing import *
2424
from speciesnet.utils import *
2525

26-
DEFAULT_MODEL = "models/v4.0.0a" # FIXME
26+
DEFAULT_MODEL = "kaggle:google/speciesnet/keras/v4.0.0a"
2727
SUPPORTED_MODELS = [
28-
"models/v4.0.0a", # FIXME
29-
"models/v4.0.0b", # FIXME
30-
# "kaggle:google/FIXME",
31-
# "hf:google/FIXME",
28+
"kaggle:google/speciesnet/keras/v4.0.0a",
29+
"kaggle:google/speciesnet/keras/v4.0.0b",
3230
]

0 commit comments

Comments
 (0)