Publish verified portfolio asset
Browse files- README.md +22 -0
- model_spec.json +10 -0
README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: torchvision
|
| 3 |
+
pipeline_tag: image-classification
|
| 4 |
+
tags:
|
| 5 |
+
- efficientnet
|
| 6 |
+
- aws
|
| 7 |
+
- sagemaker
|
| 8 |
+
- healthcare-ai
|
| 9 |
+
- reference-card
|
| 10 |
+
---
|
| 11 |
+
# OtoSage EfficientNetV2-S Reference
|
| 12 |
+
|
| 13 |
+
Architecture/provenance card for the OtoSage SageMaker training path.
|
| 14 |
+
|
| 15 |
+
- `torchvision.models.efficientnet_v2_s`
|
| 16 |
+
- pretrained dependency: `EfficientNet_V2_S_Weights.DEFAULT`
|
| 17 |
+
- project code replaces the classifier for the otoscopic classes
|
| 18 |
+
|
| 19 |
+
**No user-trained SageMaker checkpoint is hosted here.** The roadmap requires an executed SageMaker training/evaluation/model-registry run before a checkpoint or cloud-performance claim is published.
|
| 20 |
+
|
| 21 |
+
Source revision: `eb2188bbf0b42751c35a53af20947bae0d3c994e`
|
| 22 |
+
Source: https://github.com/singhankitsrf/OtoSage_AWS_GitHub
|
model_spec.json
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"framework": "torchvision",
|
| 3 |
+
"architecture": "efficientnet_v2_s",
|
| 4 |
+
"pretrained_weights_reference": "EfficientNet_V2_S_Weights.DEFAULT",
|
| 5 |
+
"classifier_head": "Dropout(0.25 default) + Linear(in_features, num_classes)",
|
| 6 |
+
"source_file": "ml/src/train.py",
|
| 7 |
+
"source_revision": "eb2188bbf0b42751c35a53af20947bae0d3c994e",
|
| 8 |
+
"user_trained_checkpoint_included": false,
|
| 9 |
+
"deployment_target": "SageMaker asynchronous inference after validated training"
|
| 10 |
+
}
|