-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Add DeepFeatureSynthesisTask Add EmailNotifier All tasks can retrieve also data as dataframes (instead only as URL/file path) Add examples with DeepFeatureSynthesisTask Upgrade dependencies
- Loading branch information
1 parent
43efef8
commit 22ac014
Showing
285 changed files
with
19,754 additions
and
16,738 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
sphinx==3.3.1 | ||
sphinx==3.4.1 | ||
sphinx-rtd-theme==0.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,55 @@ | ||
How do I install it? | ||
==================== | ||
|
||
PyPI | ||
---- | ||
|
||
.. code:: sh | ||
pip install skrobot | ||
Graphviz | ||
-------- | ||
|
||
If you want to export feature computation graphs using the argument ``export_feature_graphs`` in :class:`.DeepFeatureSynthesisTask` class, you need to install Graphviz. | ||
|
||
Conda users: | ||
|
||
.. code:: sh | ||
conda install python-graphviz | ||
GNU/Linux: | ||
|
||
.. code:: sh | ||
sudo apt-get install graphviz | ||
pip install graphviz | ||
Mac OS: | ||
|
||
.. code:: sh | ||
brew install graphviz | ||
pip install graphviz | ||
Windows: | ||
|
||
.. code:: sh | ||
conda install python-graphviz | ||
Development Version | ||
------------------- | ||
|
||
The skrobot version on PyPI may always be one step behind; you can install the latest development version from the GitHub repository by executing | ||
|
||
.. code:: sh | ||
pip install git+git://github.com/medoidai/skrobot.git | ||
Or, you can clone the GitHub repository and install skrobot from your local drive via | ||
|
||
.. code:: sh | ||
$ pip install skrobot | ||
python setup.py install |
Oops, something went wrong.