You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 6, 2021. It is now read-only.
Maybe the routes for the measurement points should be expanded. If the individual points have an _id, we might want to allow deleting them, in case of mistaken submits. Otherwise it might be bad if one cherry picks measurement points without any feedback to other users or the future self, i.e. an activity timeline or a transparency report.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
/experiment
: the experimentPOST /experiment
: create new experimentGET /experiment
: get all experimentsGET /experiment/:id
: get experiment data (all of it)PUT /experiment/:id
: change experiment data (only the meta data about the experiment)DELETE /experiment/:id
: remove experiment from database/experiment/:id/model
: the different models that ought to be compared for the experimentPOST /experiment/:id/model
: create a new modelGET /experiment/:id/model
: get all modelsGET /experiment/:id/model/:id
: get model dataPUT /experiment/:id/model/:id
: change model data (only meta data about the model)DELETE /experiment/:id/model/:id
: remove model/experiment/:id/model/:id/measurements
POST /experiment/:id/model/:id/measurements
: create a new measurement pointGET /experiment/:id/model/:id/measurements
: get all measurement points (sorted by name)GET /experiment/:id/model/:id/measurements/forname/:name
: get all metrics with a name (for examplef1_micro
ortotalLoss
)The text was updated successfully, but these errors were encountered: