Spaces:
Runtime error
Runtime error
Update main.py
Browse files
main.py
CHANGED
@@ -11,7 +11,11 @@ from projects.DL_CatDog.DL_CatDog import preprocess_image, read_image, model_DL_
|
|
11 |
from projects.ML_StudentPerformance.ML_StudentPerformace import predict_student_performance, create_custom_data, form1
|
12 |
from projects.ML_DiabetesPrediction.ML_DiabetesPrediction import model_ML_DiabetesPrediction, form2
|
13 |
|
14 |
-
|
|
|
|
|
|
|
|
|
15 |
|
16 |
app = FastAPI()
|
17 |
|
@@ -24,7 +28,6 @@ app.add_middleware(
|
|
24 |
allow_headers=["*"],
|
25 |
)
|
26 |
|
27 |
-
|
28 |
# Health check route
|
29 |
@app.get("/api/working")
|
30 |
def home():
|
@@ -43,7 +46,7 @@ async def predict_DL_CatDog(file: UploadFile = File(...)):
|
|
43 |
return JSONResponse(content={"ok": -1, "message": f"Something went wrong! {str(e)}"}, status_code=500)
|
44 |
|
45 |
# Classification route for DL_PlantDisease
|
46 |
-
pipe = pipeline("image-classification", model="wambugu71/crop_leaf_diseases_vit", cache_dir=
|
47 |
@app.post("/api/classify")
|
48 |
async def classify_image(file: UploadFile = File(...)):
|
49 |
try:
|
|
|
11 |
from projects.ML_StudentPerformance.ML_StudentPerformace import predict_student_performance, create_custom_data, form1
|
12 |
from projects.ML_DiabetesPrediction.ML_DiabetesPrediction import model_ML_DiabetesPrediction, form2
|
13 |
|
14 |
+
cache_dir = './mycache'
|
15 |
+
if not os.path.exists(cache_dir):
|
16 |
+
os.makedirs(cache_dir)
|
17 |
+
|
18 |
+
os.environ['TRANSFORMERS_CACHE'] = cache_dir
|
19 |
|
20 |
app = FastAPI()
|
21 |
|
|
|
28 |
allow_headers=["*"],
|
29 |
)
|
30 |
|
|
|
31 |
# Health check route
|
32 |
@app.get("/api/working")
|
33 |
def home():
|
|
|
46 |
return JSONResponse(content={"ok": -1, "message": f"Something went wrong! {str(e)}"}, status_code=500)
|
47 |
|
48 |
# Classification route for DL_PlantDisease
|
49 |
+
pipe = pipeline("image-classification", model="wambugu71/crop_leaf_diseases_vit", cache_dir=cache_dir)
|
50 |
@app.post("/api/classify")
|
51 |
async def classify_image(file: UploadFile = File(...)):
|
52 |
try:
|