Instructions to use sdhaos/Aminatron with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use sdhaos/Aminatron with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://sdhaos/Aminatron") - Notebooks
- Google Colab
- Kaggle
Upload class_names.json with huggingface_hub
Browse files- class_names.json +5 -0
class_names.json
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
"cat",
|
| 3 |
+
"dog",
|
| 4 |
+
"human"
|
| 5 |
+
]
|