Skip to content

Commit

Permalink
add xlrd to dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasplagwitz committed Sep 17, 2020
1 parent d2947a2 commit 71f70ab
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions photonai/__init__.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
"""
PHOTON
PHOTONAI
is a rapid prototyping framework enabling (not so experienced) users to build, train, optimize, evaluate,
and share even complex machine learning pipelines with very high efficiency.
PHOTON is an object-oriented python framework designed to leave you deciding the important things and automatizing the rest:
PHOTONAI is an object-oriented python framework designed to leave you deciding the important things and automatizing the rest:
By treating each pipeline element as a building block, we create a system in which the user can select and combine
processing steps, adapt their arrangement or stack them in more advanced pipeline layouts.
PHOTON gives you an easy way of setting up a full stack machine learning pipeline including nested cross-validation and hyperparameter search.
PHOTONAI gives you an easy way of setting up a full stack machine learning pipeline including nested cross-validation and hyperparameter search.
After PHOTON has found the best configuration for your model, it offers a convenient possibility to explore the analyzed hyperparameter space.
It also enables you to persist and load your optimal model, including all preprocessing elements, with only one line of code.
Expand Down
3 changes: 2 additions & 1 deletion photonai/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ joblib
dask
distributed
scikit-optimize
pytest
pytest
xlrd
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,6 @@
'joblib',
'dask',
'distributed',
'scikit-optimize']
'scikit-optimize',
'xlrd']
)

0 comments on commit 71f70ab

Please sign in to comment.