Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Fluospark128
/
Cassava_Disease_Classifier
like
1
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Fluospark128
commited on
Feb 10
Commit
eaff305
·
verified
·
1 Parent(s):
8cd0577
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
# Available backend options are: "jax", "torch", "tensorflow".
2
+
import os
3
+
os.environ["KERAS_BACKEND"] = "jax"
4
+
5
+
import keras
6
+
7
+
model = keras.saving.load_model("hf://Fluospark128/Cassava_Disease_Classifier")