Skip to content

Commit

Permalink
Add autosklearn import
Browse files Browse the repository at this point in the history
  • Loading branch information
fnielsen committed Dec 13, 2016
1 parent 444b843 commit ec5dfe3
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions everything.py
Expand Up @@ -28,6 +28,7 @@
- zlib
Conditional import (only if installed):
- autosklearn (auto-sklearn)
- DB from db
- networkx
- nltk, sent_tokenize, word_tokenize
Expand Down Expand Up @@ -69,6 +70,13 @@
except ImportError:
pass

try:
import autosklearn
except (ImportError, SyntaxError):
pass
else:
from autosklearn.classification import AutoSklearnClassifier

import base64
from base64 import b16decode, b16encode, b32decode, b32encode, \
b64decode, b64encode, urlsafe_b64decode, urlsafe_b64encode
Expand Down

0 comments on commit ec5dfe3

Please sign in to comment.