Skip to content

Commit

Permalink
Minor fixes in the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ArlindKadra committed Apr 25, 2017
1 parent 287f32a commit ae8fb90
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
*.DS_Store
*/target/*
*/bin/*
*/bin/*
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ public UploadFlow flowUpload(File description, File binary, File source) throws
* - An XML file describing the run. See documentation at
* openml.org.
* @param output_files
* - A Map<String,File> containing all relevant output files. Key
* - A Map&gt;String,File&lt; containing all relevant output files. Key
* "predictions" usually contains the predictions that were
* generated by this run.
* @return UploadRun - An object containing information on the
Expand Down Expand Up @@ -878,13 +878,13 @@ public RunTraceUpload runTraceUpload(File trace) throws Exception {
/**
* Stores trace results in the database, typically used when an internal parameter optimization loop was executed. (admin rights required, typically executed by evaluation engine)
*
* @param trace - the trace description xml
* @param trace_id - the trace description xml
* @return
* @throws Exception
*/
public RunTrace runTrace(int run_id) throws Exception {
public RunTrace runTrace(int trace_id) throws Exception {

Object apiResult = HttpConnector.doApiRequest(OPENML_URL + API_PART + "run/trace/" + run_id, getApiKey(), verboseLevel);
Object apiResult = HttpConnector.doApiRequest(OPENML_URL + API_PART + "run/trace/" + trace_id, getApiKey(), verboseLevel);
if (apiResult instanceof RunTrace) {
return (RunTrace) apiResult;
} else {
Expand Down Expand Up @@ -947,7 +947,7 @@ public RunReset runReset(int run_id) throws Exception {
/**
* A list with the parameter settings of a setup
*
* @param a file equivalent to run description, but only featuring the parts important to parameters
* @param description - a file equivalent to run description, but only featuring the parts important to parameters
* @return
* @throws Exception
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* information. Highly recommended to use config file and this class when
* executing experiments on a server.
*
* @author J. N. van Rijn <[email protected]>
* @author J. N. van Rijn &gt;[email protected]&lt;
*/
public class Config implements Serializable {

Expand Down

0 comments on commit ae8fb90

Please sign in to comment.