sonja-a-topf commited on
Commit
04bdb17
·
verified ·
1 Parent(s): 1578f70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -44,8 +44,8 @@ def root():
44
  @app.get("/metadata")
45
  def metadata():
46
  return {
47
- "name": "Tox21 GIN classifier",
48
- "version": "1.0.0",
49
  "tox_endpoints": [
50
  "NR-AR",
51
  "NR-AR-LBD",
@@ -73,5 +73,5 @@ def predict(request: Request):
73
  predictions = predict_func(request.smiles)
74
  return {
75
  "predictions": predictions,
76
- "model_info": {"name": "Tox21 GIN classifier", "version": "1.0.0"},
77
  }
 
44
  @app.get("/metadata")
45
  def metadata():
46
  return {
47
+ "name": "Tox21 GIN Classifier",
48
+ "version": "0.1.0",
49
  "tox_endpoints": [
50
  "NR-AR",
51
  "NR-AR-LBD",
 
73
  predictions = predict_func(request.smiles)
74
  return {
75
  "predictions": predictions,
76
+ "model_info": {"name": "Tox21 GIN classifier", "version": "0.1.0"},
77
  }