We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 28c57ff + e594abc commit e0dc608Copy full SHA for e0dc608
3 files changed
doc/usage.rst
@@ -33,7 +33,7 @@ programmatically after loading the package:
33
>>> import openml
34
35
>>> apikey = 'Your API key'
36
- >>> openml.apikey = apikey
+ >>> openml.config.apikey = apikey
37
38
The second option is to create a config file:
39
openml/testing.py
@@ -45,6 +45,7 @@ def setUp(self):
45
self.production_server = "https://www.openml.org/api/v1/xml"
46
self.test_server = "https://test.openml.org/api/v1/xml"
47
openml.config.server = self.test_server
48
+
49
openml.config.set_cache_directory(self.workdir, self.workdir)
50
51
def tearDown(self):
requirements.txt
@@ -5,4 +5,5 @@ liac-arff>=2.1.1dev
5
xmltodict
6
nose
7
requests
8
-scikit-learn
+scikit-learn
9
+nbformat
0 commit comments