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
* fixed link
* ES bugfix
* setup api docs
* apidocs fix
* Return the reason why the XML was not valid according to the XSD
* force download of RDF files
* add uploader to evaluation_list
* add user_id to name
* add to initial check
* list of user names
* add username tpl to views and remove from_id function
* remove extra brace
* add uploader to evaluations
* change uploader to user
* change uploader to user
* doc update
* doc update
* Delete swagger.json
* Delete swagger.yaml
* review comments
* add space
* extended error messages
* better error handling
* increase stat circles on cover page
* indentation changes
* two spaces
* fix code style
Copy file name to clipboardExpand all lines: downloads/swagger.json
+65-7Lines changed: 65 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -1979,6 +1979,7 @@
1979
1979
"evaluation" : [ {
1980
1980
"run_id" : "1",
1981
1981
"task_id" : "68",
1982
+
"uploader" : "1",
1982
1983
"flow_id" : "61",
1983
1984
"function" : "area_under_roc_curve",
1984
1985
"upload_time" : "2014-04-06 23:30:40",
@@ -1987,6 +1988,7 @@
1987
1988
}, {
1988
1989
"run_id" : "1",
1989
1990
"task_id" : "68",
1991
+
"uploader" : "1",
1990
1992
"flow_id" : "61",
1991
1993
"function" : "f_measure",
1992
1994
"upload_time" : "2014-04-06 23:30:40",
@@ -1995,6 +1997,7 @@
1995
1997
}, {
1996
1998
"run_id" : "1",
1997
1999
"task_id" : "68",
2000
+
"uploader" : "1",
1998
2001
"flow_id" : "61",
1999
2002
"function" : "predictive_accuracy",
2000
2003
"upload_time" : "2014-04-06 23:30:40",
@@ -2237,16 +2240,16 @@
2237
2240
"parameters" : [ {
2238
2241
"name" : "id",
2239
2242
"in" : "path",
2240
-
"description" : "Id of the study.",
2243
+
"description" : "Id of the study. Supplied in the URL path.",
2241
2244
"required" : true,
2242
2245
"type" : "number",
2243
2246
"format" : "integer"
2244
2247
}, {
2245
-
"name" : "description",
2248
+
"name" : "ids",
2246
2249
"in" : "formData",
2247
-
"description" : "An XML file describing the entities to be attached. Also see the [XSD schema](https://www.openml.org/api/v1/xsd/openml.study.attach) and an [XML example](https://www.openml.org/api/v1/xml_example/attach).",
2250
+
"description" : "Comma-separated list of entity IDs to be attached to the study. For instance, if this is a run study, the list of run IDs that need to be added (attached) to the study. Must be supplied as a POST variable.",
2248
2251
"required" : true,
2249
-
"type" : "file"
2252
+
"type" : "string"
2250
2253
}, {
2251
2254
"name" : "api_key",
2252
2255
"in" : "query",
@@ -2292,11 +2295,11 @@
2292
2295
"type" : "number",
2293
2296
"format" : "integer"
2294
2297
}, {
2295
-
"name" : "description",
2298
+
"name" : "ids",
2296
2299
"in" : "formData",
2297
-
"description" : "An XML file describing the entities to be detached. Also see the [XSD schema](https://www.openml.org/api/v1/xsd/openml.study.detach) and an [XML example](https://www.openml.org/api/v1/xml_example/detach).",
2300
+
"description" : "Comma-separated list of entity IDs to be detached from the study. For instance, if this is a run study, the list of run IDs that need to be removed (detached) from the study. Must be supplied as a POST variable.",
2298
2301
"required" : true,
2299
-
"type" : "file"
2302
+
"type" : "string"
2300
2303
}, {
2301
2304
"name" : "api_key",
2302
2305
"in" : "query",
@@ -2359,6 +2362,31 @@
2359
2362
}
2360
2363
}
2361
2364
},
2365
+
"/user/list" : {
2366
+
"get" : {
2367
+
"tags" : [ "user" ],
2368
+
"summary" : "List all users by user id",
2369
+
"description" : "Returns an array with all user ids and names.\n",
2370
+
"parameters" : [ {
2371
+
"name" : "api_key",
2372
+
"in" : "query",
2373
+
"description" : "API key to authenticate the user",
description: Id of the study. Supplied in the URL path.
2918
2921
required: true
2919
2922
type: number
2920
2923
format: integer
2921
-
- name: description
2924
+
- name: ids
2922
2925
in: formData
2923
-
description: An XML file describing the entities to be attached. Also see the [XSD schema](https://www.openml.org/api/v1/xsd/openml.study.attach) and an [XML example](https://www.openml.org/api/v1/xml_example/attach).
2926
+
description: Comma-separated list of entity IDs to be attached to the study. For instance, if this is a run study, the list of run IDs that need to be added (attached) to the study. Must be supplied as a POST variable.
2924
2927
required: true
2925
-
type: file
2928
+
type: string
2926
2929
- name: api_key
2927
2930
in: query
2928
2931
description: Api key to authenticate the user
@@ -2971,11 +2974,11 @@ paths:
2971
2974
required: true
2972
2975
type: number
2973
2976
format: integer
2974
-
- name: description
2977
+
- name: ids
2975
2978
in: formData
2976
-
description: An XML file describing the entities to be detached. Also see the [XSD schema](https://www.openml.org/api/v1/xsd/openml.study.detach) and an [XML example](https://www.openml.org/api/v1/xml_example/detach).
2979
+
description: Comma-separated list of entity IDs to be detached from the study. For instance, if this is a run study, the list of run IDs that need to be removed (detached) from the study. Must be supplied as a POST variable.
2977
2980
required: true
2978
-
type: file
2981
+
type: string
2979
2982
- name: api_key
2980
2983
in: query
2981
2984
description: Api key to authenticate the user
@@ -3052,6 +3055,38 @@ paths:
3052
3055
500 - No model performance estimation procedures available.
Copy file name to clipboardExpand all lines: openml_OS/models/api/v1/Api_evaluation.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -207,7 +207,7 @@ private function evaluation_list($segs, $user_id) {
207
207
// TODO: remove dependency on task_inputs and dataset table
208
208
// TODO (2): transform into subquery where all columns except evaluation_fold are obtained in subquery (along with limit requirements, as MYSQL query optimizer does not seem to understand this query has an upper limit to the number of obtained runs that need to be inspected)
0 commit comments