forked from guy-singer/MedImageInsight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflask_app.py
More file actions
57 lines (47 loc) · 1.71 KB
/
flask_app.py
File metadata and controls
57 lines (47 loc) · 1.71 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
from fastapi import FastAPI, HTTPException
from pydantic import BaseModel
from typing import List
import uvicorn
from medimageinsightmodel import MedImageInsight
import base64
# Initialize FastAPI app
app = FastAPI(title="Medical Image Analysis API")
# Initialize model
classifier = MedImageInsight(
model_dir="2024.09.27",
vision_model_name="medimageinsigt-v1.0.0.pt",
language_model_name="language_model.pth"
)
classifier.load_model()
class ClassificationRequest(BaseModel):
images: List[str] # Base64 encoded images
labels: List[str]
multilabel : bool = False
class EmbeddingRequest(BaseModel):
images: List[str] = None # Base64 encoded images
texts: List[str] = None
@app.post("/predict")
async def predict(request: ClassificationRequest):
try:
results = classifier.predict(
images=request.images,
labels=request.labels,
multilabel = request.multilabel
)
return {"predictions": results}
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.post("/encode")
async def encode(request: EmbeddingRequest):
try:
results = classifier.encode(images=request.images, texts= request.texts)
results["image_embeddings"] = results["image_embeddings"].tolist() if results["image_embeddings"] is not None else None
results["text_embeddings"] = results["text_embeddings"].tolist() if results["text_embeddings"] is not None else None
return results
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
@app.get("/health")
async def health():
return {"status": "healthy"}
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)