forked from fsschneider/DeepOBS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from fsschneider/master
Update to version 1.1.2
- Loading branch information
Showing
6 changed files
with
73 additions
and
34 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: "\U0001F195 Status: New, \U0001F41B Type: Bug" | ||
assignees: fsschneider | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A description of what the bug is... |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: "\U0001F195 Status: New" | ||
assignees: fsschneider | ||
|
||
--- | ||
|
||
**Are you requesting a new feature or an enhancement of an existing one? Please use the labels accordingly.** | ||
|
||
**Describe the solution you'd like** | ||
A description of what you want ... |
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 |
---|---|---|
|
@@ -33,3 +33,7 @@ wheels/ | |
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
|
||
# ToDo.md file | ||
|
||
ToDo.md |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -5,17 +5,18 @@ | |
|
||
|
||
def readme(): | ||
with open('README.md') as f: | ||
with open("README.md") as f: | ||
return f.read() | ||
|
||
|
||
setuptools.setup( | ||
name='deepobs', | ||
version='1.1.1', | ||
description='Deep Learning Optimizer Benchmark Suite', | ||
name="deepobs", | ||
version="1.1.2", | ||
description="Deep Learning Optimizer Benchmark Suite", | ||
long_description=readme(), | ||
author='Frank Schneider, Lukas Balles and Philipp Hennig,', | ||
author_email='[email protected]', | ||
license='MIT', | ||
author="Frank Schneider, Lukas Balles and Philipp Hennig,", | ||
author_email="[email protected]", | ||
license="MIT", | ||
packages=setuptools.find_packages(), | ||
classifiers=[ | ||
"Programming Language :: Python :: 3.6", | ||
|
@@ -26,13 +27,18 @@ def readme(): | |
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
], | ||
install_requires=[ | ||
'argparse', 'numpy', 'pandas', 'matplotlib', 'matplotlib2tikz', | ||
'seaborn' | ||
"argparse", | ||
"numpy", | ||
"pandas", | ||
"matplotlib", | ||
"matplotlib2tikz==0.6.18", | ||
"seaborn", | ||
], | ||
scripts=[ | ||
'deepobs/scripts/deepobs_prepare_data.sh', | ||
'deepobs/scripts/deepobs_get_baselines.sh', | ||
'deepobs/scripts/deepobs_plot_results.py', | ||
'deepobs/scripts/deepobs_estimate_runtime.py' | ||
"deepobs/scripts/deepobs_prepare_data.sh", | ||
"deepobs/scripts/deepobs_get_baselines.sh", | ||
"deepobs/scripts/deepobs_plot_results.py", | ||
"deepobs/scripts/deepobs_estimate_runtime.py", | ||
], | ||
zip_safe=False) | ||
zip_safe=False, | ||
) |