-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding compatibility with tensorflow2 #17
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
4abc041
First commit of tensorflow2 compatibility
pzinemanas 967269b
Change version of dependendencies
pzinemanas 75e2253
Fix minor bug
pzinemanas 3bf260f
Update README and add option in setup.py for tf1-gpu
pzinemanas e509313
Update README.md
pzinemanas 8f3d64f
Update main.yml
pzinemanas 701a9b7
Add build for py38
pzinemanas File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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 |
---|---|---|
|
@@ -19,22 +19,22 @@ | |
download_url='http://github.com/pzinemanas/DCASE-models/releases', | ||
packages=setuptools.find_packages(), | ||
install_requires=[ | ||
'numpy==1.17.4', | ||
'pandas==0.25.3', | ||
'SoundFile==0.10.3.post1', | ||
'PyYAML==5.2', | ||
'numba==0.48.0', | ||
'librosa==0.7.1', | ||
'openl3==0.3.1', | ||
'scikit-learn==0.22.1', | ||
'keras==2.2.4', | ||
# 'tensorflow-gpu==1.12.0', | ||
'autopool==0.1.0', | ||
'wget==3.2', | ||
'sox==1.3.7', | ||
'sed_eval==0.2.1', | ||
'numpy>=1.1', | ||
'pandas>=0.25', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we still need pandas? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, we have to implement a |
||
'SoundFile>=0.1', | ||
'PyYAML>=5.0', | ||
'librosa>=0.7', | ||
'scikit-learn>=0.20', | ||
'wget>=3.0', | ||
'sox<1.4', | ||
'sed_eval>=0.2', | ||
], | ||
extras_require={ | ||
'keras_tf': ['tensorflow<1.14', 'keras==2.2.4'], | ||
'keras_tf_gpu': ['tensorflow-gpu<1.14', 'keras==2.2.4'], | ||
'tf2': ['tensorflow>2.0'], | ||
'openl3': ['openl3==0.3.1'], | ||
'autopool': ['autopool==0.1.0'], | ||
'docs': ['numpydoc', 'sphinx!=1.3.1', 'sphinx_rtd_theme'], | ||
'tests': ['pytest >= 5.4.3', 'pytest-cov >= 2.11.1'], | ||
'visualization': [ | ||
|
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cool :)