Upload configuration_mobilenetv3_large_100.py with huggingface_hub
Browse files
configuration_mobilenetv3_large_100.py
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from transformers import PretrainedConfig
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
class RyzenAIORTModelForImageClassificationConfig(PretrainedConfig):
|
| 5 |
+
# no-format
|
| 6 |
+
r"""
|
| 7 |
+
This is the configuration class to store the configuration of a [`RyzenAIORTModelForImageClassification`].
|
| 8 |
+
"""
|
| 9 |
+
|
| 10 |
+
model_type = "RyzenAIORTModelForImageClassification_mobilenetv3_large_100"
|
| 11 |
+
|
| 12 |
+
def __init__(self,
|
| 13 |
+
**kwargs):
|
| 14 |
+
super().__init__(**kwargs)
|