Instructions to use nicolamustone/minires with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Keras
How to use nicolamustone/minires with Keras:
# Available backend options are: "jax", "torch", "tensorflow". import os os.environ["KERAS_BACKEND"] = "jax" import keras model = keras.saving.load_model("hf://nicolamustone/minires") - Notebooks
- Google Colab
- Kaggle
Commit ·
75dcd5d
1
Parent(s): c20ef20
added .gitignore
Browse files- .gitignore +6 -0
.gitignore
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/bayesian_optimization
|
| 2 |
+
/.ipynb_checkpoints
|
| 3 |
+
/__pycache__
|
| 4 |
+
/temp
|
| 5 |
+
|
| 6 |
+
.DS_Store
|