ArsanForEver commited on
Commit
4c25720
·
verified ·
1 Parent(s): f6a49ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -9,6 +9,9 @@ import io
9
 
10
  app = FastAPI()
11
 
 
 
 
12
  def home():
13
  return {"message": "Aksara Lontara API is running"}
14
 
 
9
 
10
  app = FastAPI()
11
 
12
+ # Load model Keras
13
+ model = tf.keras.models.load_model("lontara_model_finetuning.keras")
14
+
15
  def home():
16
  return {"message": "Aksara Lontara API is running"}
17