SmartPlate / scripts /export_model.py
Aishrica's picture
initial commit
50ba6d4
Raw
History Blame Contribute Delete
324 Bytes
"""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()