forked from ChihebTrabelsi/deep_complex_networks
-
-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
095871f
commit 7796b00
Showing
4 changed files
with
35 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,16 @@ | ||
How to Contribute | ||
================= | ||
================= | ||
|
||
You can add a [Pull Request](https://github.com/JesperDramsch/keras-complex/pulls/) on Github. | ||
|
||
Test | ||
---- | ||
|
||
Make sure the tests pass and new features have at least unittests to cover the new functions. | ||
|
||
These tests should run with `pytest`. | ||
|
||
Documentation | ||
------------- | ||
|
||
New features should be documented in the docs/ folder, which will be automatically generated on readthedocs.org. |
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,14 +1,16 @@ | ||
# Installation | ||
|
||
Installation is as easy as | ||
|
||
``` | ||
pip install keras-complex | ||
``` | ||
but you'll need to install tensorflow in addition using | ||
``` | ||
pip install tensorflow-gpu | ||
``` | ||
for the GPU version or for the non-GPU version: | ||
|
||
The requirements are: | ||
|
||
``` | ||
pip install tensorflow | ||
tensorflow >= 2 | ||
numpy | ||
scipy | ||
scikit-learn | ||
``` |
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