Skip to content
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

a small error in train.py #114

Open
wants to merge 47 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
992d02f
add train file
jnulzl Jan 20, 2019
4eaec0b
Update README.md
jnulzl Jan 20, 2019
ca1f210
Update README.md
jnulzl Jan 20, 2019
a9f9430
Update README.md
jnulzl Jan 20, 2019
bb79085
Update README.md
jnulzl Jan 20, 2019
90707a1
Update README.md
jnulzl Jan 20, 2019
bbdc3c9
Update README.md
jnulzl Jan 20, 2019
1d65254
Update train.py
jnulzl Dec 1, 2019
cc7e8bf
Update train.py
jnulzl Dec 1, 2019
3d3b4cb
update train.py and upload script to generate train set
jnulzl Dec 1, 2019
6610a96
update train.py and upload script to generate train set
jnulzl Dec 1, 2019
3683459
update train.py and upload script to generate train set
jnulzl Dec 1, 2019
2949342
update train.py and upload script to generate train set
jnulzl Dec 1, 2019
55fb1fc
update README.md
jnulzl Dec 1, 2019
a959cae
update README.md
jnulzl Dec 1, 2019
ed1d041
update README.md
jnulzl Dec 1, 2019
0d61439
update README.md
jnulzl Dec 1, 2019
21d1f87
update README.md
jnulzl Dec 1, 2019
2800a87
update README.md
jnulzl Dec 1, 2019
25b2ddf
update README.md
jnulzl Dec 1, 2019
35045e5
update train.py
jnulzl Dec 1, 2019
b9a4e3d
update 9_generate_prnet_trainset_300WLP.py
jnulzl Dec 1, 2019
fae9da1
update train.py
jnulzl Dec 1, 2019
a31b57a
upload DataRotate and update README.md
jnulzl Dec 22, 2019
1af1370
upload DataRotate and update README.md
jnulzl Dec 22, 2019
8cfc7fb
dupload DataRotate
jnulzl Dec 22, 2019
a5ddc61
Update 9_generate_prnet_trainset_300WLP.py
jnulzl Dec 22, 2019
a2c5a1c
Update train.py
jnulzl Dec 22, 2019
3e3188b
Update README.md
jnulzl Dec 22, 2019
1bde556
Update 9_generate_prnet_trainset_300WLP.py
jnulzl Dec 22, 2019
9a775c1
add some results and my pretrained models
jnulzl Dec 28, 2019
30f6680
update train.py
jnulzl Dec 28, 2019
966ecaa
update train.py
jnulzl Dec 28, 2019
ad8ca56
update README.md
jnulzl Dec 28, 2019
973d8f8
update README.md
jnulzl Dec 28, 2019
0be2dfd
update README.md
jnulzl Dec 28, 2019
59a9f6a
update README.md
jnulzl Dec 28, 2019
354ea9a
update README.md
jnulzl Dec 28, 2019
f05317d
update README.md
jnulzl Dec 28, 2019
13f1f46
update README.md
jnulzl Dec 28, 2019
62512bc
update README.md
jnulzl Dec 28, 2019
72ced70
Update README.md
jnulzl Dec 28, 2019
3f08ce9
Update README.md
jnulzl Dec 28, 2019
97ec33d
Update README.md and add method of generate my own trainset
jnulzl Dec 29, 2019
873a423
Update README.md
jnulzl Jan 1, 2020
6badae2
Update README.md
jnulzl Jan 1, 2020
4a1f843
Update README.md
jnulzl Jan 1, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
60 changes: 30 additions & 30 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
group: travis_latest
language: python
cache: pip
python:
- 2.7
- 3.6
#- nightly
#- pypy
#- pypy3
matrix:
allow_failures:
- python: nightly
- python: pypy
- python: pypy3
install:
- pip install -r requirements.txt
- pip install flake8 # pytest # add another testing frameworks later
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
- ls
- wget "https://drive.google.com/uc?export=download&confirm=D2ug&id=1UoE-XuW1SDLUjZmJPkIZ1MLxvQFgmTFH"
- ls
- python run_basics.py # Can run only with python and tensorflow
notifications:
on_success: change
on_failure: change # `always` will be the setting once code changes slow down
group: travis_latest
language: python
cache: pip
python:
- 2.7
- 3.6
#- nightly
#- pypy
#- pypy3
matrix:
allow_failures:
- python: nightly
- python: pypy
- python: pypy3
install:
- pip install -r requirements.txt
- pip install flake8 # pytest # add another testing frameworks later
before_script:
# stop the build if there are Python syntax errors or undefined names
- flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
- flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
script:
- ls
- wget "https://drive.google.com/uc?export=download&confirm=D2ug&id=1UoE-XuW1SDLUjZmJPkIZ1MLxvQFgmTFH"
- ls
- python run_basics.py # Can run only with python and tensorflow
notifications:
on_success: change
on_failure: change # `always` will be the setting once code changes slow down
Binary file added Data/sample-data/author/0_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/author/1_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/author/2_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/author/4_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/me_rotate/0_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/me_rotate/1_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/me_rotate/2_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/me_rotate/4_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/me_unrotate/0_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/me_unrotate/1_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/me_unrotate/2_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Data/sample-data/me_unrotate/4_sparse.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading