DPSGDTool / run.py
Shuya Feng
feat: Implement DP-SGD Explorer web application with Flask backend, interactive frontend, and easy deployment script
6640531
raw
history blame
99 Bytes
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(debug=True)