Spaces:
Sleeping
Sleeping
File size: 12,404 Bytes
afb5ef1 | 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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 | import os
import json
import io
import base64
from datetime import datetime
from threading import Lock
import numpy as np
import torch
import torch.nn as nn
from torchvision import transforms, models
import joblib
from PIL import Image
from flask import Flask, request, jsonify
from flask_cors import CORS
from supabase import create_client, Client
# =========================
# Flask App
# =========================
app = Flask(__name__)
CORS(app)
# =========================
# Device
# =========================
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
print(f"Using device: {device}")
# =========================
# Paths
# =========================
MODEL_DIR = os.path.join(os.path.dirname(__file__), "models")
model_path = os.path.join(MODEL_DIR, "svm_densenet201_rbf.joblib")
meta_path = os.path.join(MODEL_DIR, "metadata.json")
# =========================
# Globals (Models & Config)
# =========================
svm_model = None
class_names = None
IMG_SIZE = 224
# DenseNet globals
densenet = None
feature_extractor = None
gap = None
# Transform global (will be built after metadata loaded)
eval_tfms = None
# Load flags + lock (safe for concurrent requests)
model_loaded = False
densenet_loaded = False
load_lock = Lock()
# =========================
# Supabase
# =========================
supabase_url = os.environ.get("SUPABASE_URL")
supabase_key = os.environ.get("SUPABASE_ANON_KEY")
supabase: Client = None
if supabase_url and supabase_key:
try:
supabase = create_client(supabase_url, supabase_key)
print("β Supabase client initialized")
except Exception as e:
print(f"β Failed to initialize Supabase: {e}")
supabase = None
else:
print("β Supabase credentials not found, predictions won't be saved to database")
# =========================
# Helpers
# =========================
def format_class_name(raw_name: str) -> str:
"""Convert usia_3_bulan to 3 Bulan for display"""
mapping = {
"usia_3_bulan": "3 Bulan",
"usia_6_bulan": "6 Bulan",
"usia_9_bulan": "9 Bulan"
}
return mapping.get(raw_name, raw_name)
def build_eval_transforms(img_size: int):
"""Build transforms using current IMG_SIZE"""
return transforms.Compose([
transforms.Resize((img_size, img_size)),
transforms.ToTensor(),
transforms.Normalize([0.485, 0.456, 0.406],
[0.229, 0.224, 0.225]),
])
def decode_base64_image(base64_string: str) -> Image.Image:
if "," in base64_string:
base64_string = base64_string.split(",")[1]
image_data = base64.b64decode(base64_string)
image = Image.open(io.BytesIO(image_data)).convert("RGB")
return image
def preprocess_image(image: Image.Image) -> torch.Tensor:
global eval_tfms
if eval_tfms is None:
# fallback if metadata not yet loaded
eval_tfms = build_eval_transforms(IMG_SIZE)
x = eval_tfms(image).unsqueeze(0)
return x
# =========================
# Loading: SVM + Metadata
# =========================
def load_model():
"""
Load SVM + metadata safely (works under gunicorn too).
Lazy loaded on first request /classify.
"""
global svm_model, class_names, IMG_SIZE, model_loaded, eval_tfms
if model_loaded:
return
with load_lock:
if model_loaded:
return
os.makedirs(MODEL_DIR, exist_ok=True)
try:
print(f"π Checking model directory: {MODEL_DIR}")
print(f" Model path: {model_path}")
print(f" Metadata path: {meta_path}")
print(f" Model exists: {os.path.exists(model_path)}")
print(f" Metadata exists: {os.path.exists(meta_path)}")
if os.path.exists(MODEL_DIR):
files = os.listdir(MODEL_DIR)
print(f" Files in models/: {files}")
# ---- Load SVM ----
if os.path.exists(model_path):
print("β³ Loading SVM model...")
svm_model = joblib.load(model_path)
print("β SVM model loaded successfully")
else:
print(f"β Model file not found at {model_path}")
print(" Using simulation mode until model is uploaded")
svm_model = None
# ---- Load Metadata ----
if os.path.exists(meta_path):
with open(meta_path, "r") as f:
meta = json.load(f)
class_names = meta.get("class_names", ["usia_3_bulan", "usia_6_bulan", "usia_9_bulan"])
IMG_SIZE = int(meta.get("img_size", 224))
print(f"β Metadata loaded: class_names={class_names}, IMG_SIZE={IMG_SIZE}")
else:
class_names = ["usia_3_bulan", "usia_6_bulan", "usia_9_bulan"]
IMG_SIZE = 224
print(f"β Metadata not found, using default classes: {class_names}, IMG_SIZE={IMG_SIZE}")
# IMPORTANT: rebuild transforms after IMG_SIZE updated
eval_tfms = build_eval_transforms(IMG_SIZE)
model_loaded = True
except Exception as e:
print(f"β Error loading model: {str(e)}")
import traceback
traceback.print_exc()
svm_model = None
class_names = ["usia_3_bulan", "usia_6_bulan", "usia_9_bulan"]
IMG_SIZE = 224
eval_tfms = build_eval_transforms(IMG_SIZE)
model_loaded = True
# =========================
# Loading: DenseNet201
# =========================
def load_densenet():
global densenet, feature_extractor, gap, densenet_loaded
if densenet_loaded:
return
with load_lock:
if densenet_loaded:
return
print("β³ Loading DenseNet201 (first time may take a while)...")
densenet = models.densenet201(weights=models.DenseNet201_Weights.DEFAULT)
densenet.eval()
feature_extractor = densenet.features.to(device)
gap = nn.AdaptiveAvgPool2d((1, 1)).to(device)
densenet_loaded = True
print("β DenseNet201 loaded successfully")
@torch.no_grad()
def extract_features(img_tensor: torch.Tensor) -> np.ndarray:
load_densenet()
img_tensor = img_tensor.to(device)
feats = feature_extractor(img_tensor)
feats = torch.relu(feats)
feats = gap(feats)
feats = feats.view(feats.size(0), -1)
return feats.cpu().numpy()
# =========================
# Prediction
# =========================
def simulate_prediction():
if not class_names:
_classes = ["usia_3_bulan", "usia_6_bulan", "usia_9_bulan"]
else:
_classes = class_names
probabilities = np.random.dirichlet(np.ones(len(_classes)), size=1)[0]
pred_idx = int(np.argmax(probabilities))
pred_label = _classes[pred_idx]
confidence = float(probabilities[pred_idx])
return pred_label, confidence, probabilities
def predict_with_model(features: np.ndarray):
proba = svm_model.predict_proba(features)[0]
pred_idx = int(np.argmax(proba))
pred_label = class_names[pred_idx]
confidence = float(proba[pred_idx])
return pred_label, confidence, proba
# =========================
# Database Save
# =========================
def save_to_database(pred_label, confidence, prob_dict, mode, image_data_url=None):
if not supabase:
return None
try:
prediction_data = {
"predicted_class": pred_label,
"confidence": float(confidence),
"probabilities": prob_dict,
"mode": mode,
"created_at": datetime.utcnow().isoformat(),
}
if image_data_url:
# truncate for safety
prediction_data["image_data"] = image_data_url[:1000]
# Save full image for display
prediction_data["image_url"] = image_data_url
result = supabase.table("predictions").insert(prediction_data).execute()
return result.data[0] if result.data else None
except Exception as e:
print(f"β Failed to save to database: {e}")
return None
# =========================
# Routes
# =========================
@app.route("/", methods=["GET"])
def home():
return jsonify({
"service": "Seedling Classifier API",
"status": "running",
"version": "1.0.0",
"endpoints": {
"health": "/health",
"classify": "/classify (POST)",
"reload_model": "/reload-model (POST)",
"warmup": "/warmup (POST)",
},
"note": "Open /health to verify. Use POST /classify with JSON {image: base64DataURL}."
})
@app.route("/health", methods=["GET"])
def health_check():
default_classes = ["usia_3_bulan", "usia_6_bulan", "usia_9_bulan"]
current_classes = class_names if class_names else default_classes
display_classes = [format_class_name(c) for c in current_classes]
return jsonify({
"status": "healthy",
"model_loaded": svm_model is not None,
"densenet_loaded": feature_extractor is not None,
"device": str(device),
"classes": display_classes,
"ready": True
})
@app.route("/classify", methods=["POST"])
def classify_image():
try:
# Lazy-load model + metadata on first request
if not model_loaded:
load_model()
data = request.get_json(silent=True)
if not data or "image" not in data:
return jsonify({"error": "No image data provided"}), 400
image_base64 = data["image"]
image = decode_base64_image(image_base64)
img_tensor = preprocess_image(image)
# Use real model if available, else simulation mode
if svm_model is not None:
features = extract_features(img_tensor)
pred_label, confidence, probabilities = predict_with_model(features)
mode = "real"
else:
pred_label, confidence, probabilities = simulate_prediction()
mode = "simulation"
# Ensure class_names exists
_classes = class_names if class_names else ["usia_3_bulan", "usia_6_bulan", "usia_9_bulan"]
prob_dict = {format_class_name(_classes[i]): float(probabilities[i]) for i in range(len(_classes))}
formatted_pred_label = format_class_name(pred_label)
db_record = save_to_database(formatted_pred_label, confidence, prob_dict, mode, data.get("image"))
response = {
"predicted_class": formatted_pred_label,
"confidence": float(confidence),
"probabilities": prob_dict,
"mode": mode,
"saved_to_db": bool(db_record),
}
if db_record:
response["id"] = db_record.get("id")
return jsonify(response)
except Exception as e:
return jsonify({
"error": "Classification failed",
"message": str(e)
}), 500
@app.route("/reload-model", methods=["POST"])
def reload_model_route():
global model_loaded, svm_model, class_names, eval_tfms
try:
with load_lock:
model_loaded = False
svm_model = None
class_names = None
eval_tfms = None
load_model()
display_classes = [format_class_name(c) for c in class_names] if class_names else []
return jsonify({
"status": "success",
"model_loaded": svm_model is not None,
"classes": display_classes
})
except Exception as e:
return jsonify({
"status": "error",
"message": str(e)
}), 500
@app.route("/warmup", methods=["POST"])
def warmup():
try:
load_densenet()
return jsonify({
"status": "success",
"densenet_loaded": feature_extractor is not None,
"device": str(device)
})
except Exception as e:
return jsonify({
"status": "error",
"message": str(e)
}), 500
# =========================
# Local run (optional)
# =========================
if __name__ == "__main__":
os.makedirs(MODEL_DIR, exist_ok=True)
print("π Starting locally...")
# Optional: uncomment to preload on local run
# load_model()
# load_densenet()
port = int(os.environ.get("PORT", 7860))
app.run(host="0.0.0.0", port=port, debug=False) |