Spaces:
Runtime error
Runtime error
File size: 324 Bytes
50ba6d4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | """Model export entry point placeholder.
Use this script in the future for ONNX export, quantization, or packaging the trained model
for deployment.
"""
def main() -> None:
print("Model export is not configured yet. Current served model is in models/aishrica_food_predictor/")
if __name__ == "__main__":
main()
|