Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions examples/20_basic/introduction_tutorial.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@
# crowding with example datasets, tasks, studies, and so on.

############################################################################

# License: BSD 3-Clause

import openml
from sklearn import neighbors

Expand Down
2 changes: 2 additions & 0 deletions openml/datasets/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# License: BSD 3-Clause

from .functions import (
attributes_arff_from_df,
check_datasets_active,
Expand Down
3 changes: 3 additions & 0 deletions openml/datasets/data_feature.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# License: BSD 3-Clause


class OpenMLDataFeature(object):
"""
Data Feature (a.k.a. Attribute) object.
Expand Down
2 changes: 2 additions & 0 deletions openml/datasets/dataset.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# License: BSD 3-Clause

from collections import OrderedDict
import re
import gzip
Expand Down
2 changes: 2 additions & 0 deletions openml/datasets/functions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# License: BSD 3-Clause

import io
import logging
import os
Expand Down