Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
from flask import Flask, request, render_template, jsonify
|
2 |
-
|
3 |
import cv2
|
4 |
import numpy as np
|
5 |
import tensorflow as tf
|
@@ -11,9 +11,9 @@ import json
|
|
11 |
app = Flask(__name__)
|
12 |
|
13 |
# Load model and data at startup
|
14 |
-
model = tf.keras.models.load_model("/data/app/sneaker_category_predictor_v2.h5")
|
15 |
-
|
16 |
-
|
17 |
|
18 |
# Define expected columns for one-hot encoding
|
19 |
with open("metadata.json", "r") as f:
|
|
|
1 |
from flask import Flask, request, render_template, jsonify
|
2 |
+
from huggingface_hub import hf_hub_download
|
3 |
import cv2
|
4 |
import numpy as np
|
5 |
import tensorflow as tf
|
|
|
11 |
app = Flask(__name__)
|
12 |
|
13 |
# Load model and data at startup
|
14 |
+
# model = tf.keras.models.load_model("/data/app/sneaker_category_predictor_v2.h5")
|
15 |
+
model_path = hf_hub_download(repo_id="thejagstudio/SneakerAI", filename="sneaker_category_predictor_v2.h5", repo_type="model")
|
16 |
+
model = tf.keras.models.load_model(model_path)
|
17 |
|
18 |
# Define expected columns for one-hot encoding
|
19 |
with open("metadata.json", "r") as f:
|