mirror of
https://github.com/wassname/pytorch-lightning.git
synced 2026-09-12 12:40:20 +08:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
004f015ee0 | ||
|
|
398b709b76 | ||
|
|
e9bcbc2318 | ||
|
|
ee51d7b7bc | ||
|
|
bb75bdf87b | ||
|
|
aeef648199 |
@@ -7,6 +7,7 @@ test_tube_data/
|
||||
datasets/
|
||||
model_weights/
|
||||
app/models/
|
||||
pip-wheel-metadata/
|
||||
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
|
||||
@@ -9,7 +9,6 @@ from pytorch_lightning.utils.arg_parse import add_default_args
|
||||
from time import sleep
|
||||
|
||||
from pytorch_lightning.utils.pt_callbacks import EarlyStopping, ModelCheckpoint
|
||||
|
||||
SEED = 2334
|
||||
torch.manual_seed(SEED)
|
||||
np.random.seed(SEED)
|
||||
@@ -1,16 +1,13 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from setuptools import setup, find_packages, os
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
# https://packaging.python.org/guides/single-sourcing-package-version/
|
||||
version = {}
|
||||
with open(os.path.join("src", "pytorch-lightning", "__init__.py")) as fp:
|
||||
exec(fp.read(), version)
|
||||
|
||||
# http://blog.ionelmc.ro/2014/05/25/python-packaging/
|
||||
setup(
|
||||
name="pytorch-lightning",
|
||||
version=version["__version__"],
|
||||
version='0.1.dev12',
|
||||
description="The Keras for ML researchers using PyTorch",
|
||||
author="William Falcon",
|
||||
author_email="waf2107@columbia.edu",
|
||||
@@ -24,34 +21,7 @@ setup(
|
||||
"tqdm",
|
||||
"test-tube",
|
||||
],
|
||||
extras_require={
|
||||
"dev": [
|
||||
"black ; python_version>='3.6'",
|
||||
"coverage",
|
||||
"isort",
|
||||
"pytest",
|
||||
"pytest-cov<2.6.0",
|
||||
"pycodestyle",
|
||||
"sphinx",
|
||||
"nbsphinx",
|
||||
"ipython>=5.0",
|
||||
"jupyter-client",
|
||||
]
|
||||
},
|
||||
packages=find_packages("src"),
|
||||
package_dir={"": "src"},
|
||||
classifiers=[
|
||||
"Development Status :: 4 - Beta",
|
||||
"Intended Audience :: Education",
|
||||
"Intended Audience :: Science/Research",
|
||||
"License :: OSI Approved :: MIT License",
|
||||
"Operating System :: OS Independent",
|
||||
"Programming Language :: Python",
|
||||
"Programming Language :: Python :: 3",
|
||||
"Programming Language :: Python :: 3.5",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
],
|
||||
packages=find_packages(),
|
||||
long_description=open("README.md", encoding="utf-8").read(),
|
||||
include_package_data=True,
|
||||
zip_safe=False,
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
"""
|
||||
=================
|
||||
pytorch-lightning
|
||||
=================
|
||||
|
||||
The Keras for ML researchers using PyTorch. More control. Less boilerplate.
|
||||
|
||||
"""
|
||||
|
||||
__version__ = "0.1.dev01"
|
||||
Reference in New Issue
Block a user