-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
34 lines (27 loc) · 890 Bytes
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import os
import shutil
from fastapi import FastAPI, UploadFile
from fastapi.middleware.cors import CORSMiddleware
import uvicorn
from cnnClassifier.pipeline.prediction import PredictionPipeline
app = FastAPI(swagger_ui_parameters={"defaultModelsExpandDepth": -1})
app.add_middleware(
CORSMiddleware,
allow_origins=["*"],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
@app.post("/predict")
async def classification(file: UploadFile):
temp_file_path = f"temp_{file.filename}"
with open(temp_file_path, "wb") as buffer:
shutil.copyfileobj(file.file, buffer)
try:
predictor = PredictionPipeline(temp_file_path)
prediction = predictor.predict()
finally:
os.remove(temp_file_path)
return {'prediction' : prediction}
if __name__ == '__main__':
uvicorn.run(app, host='0.0.0.0', port=7384)