Init
@@ -0,0 +1,145 @@
|
|||||||
|
data/
|
||||||
|
keras/
|
||||||
|
models/
|
||||||
|
logs/
|
||||||
|
outputs/
|
||||||
|
|
||||||
|
# Created by https://www.gitignore.io/api/linux,python,windows
|
||||||
|
|
||||||
|
### Linux ###
|
||||||
|
*~
|
||||||
|
|
||||||
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
|
||||||
|
# .nfs files are created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
### Python ###
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
*.so
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
env/
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a python script from a template
|
||||||
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*,cover
|
||||||
|
.hypothesis/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
.python-version
|
||||||
|
|
||||||
|
# celery beat schedule file
|
||||||
|
celerybeat-schedule
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# dotenv
|
||||||
|
.env
|
||||||
|
|
||||||
|
# virtualenv
|
||||||
|
.venv
|
||||||
|
venv/
|
||||||
|
ENV/
|
||||||
|
|
||||||
|
# Spyder project settings
|
||||||
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
|
|
||||||
|
# Rope project settings
|
||||||
|
.ropeproject
|
||||||
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
### Windows ###
|
||||||
|
# Windows thumbnail cache files
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
||||||
|
ehthumbs_vista.db
|
||||||
|
|
||||||
|
# Folder config file
|
||||||
|
Desktop.ini
|
||||||
|
|
||||||
|
# Recycle Bin used on file shares
|
||||||
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
|
# Windows Installer files
|
||||||
|
*.cab
|
||||||
|
*.msi
|
||||||
|
*.msm
|
||||||
|
*.msp
|
||||||
|
|
||||||
|
# Windows shortcuts
|
||||||
|
*.lnk
|
||||||
|
|
||||||
|
# End of https://www.gitignore.io/api/linux,python,windows
|
||||||
|
After Width: | Height: | Size: 195 KiB |
|
After Width: | Height: | Size: 254 KiB |
|
After Width: | Height: | Size: 197 KiB |
|
After Width: | Height: | Size: 40 KiB |
|
After Width: | Height: | Size: 69 KiB |
|
After Width: | Height: | Size: 195 KiB |
|
After Width: | Height: | Size: 184 KiB |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 1.7 MiB |
|
After Width: | Height: | Size: 1.8 MiB |
@@ -0,0 +1,82 @@
|
|||||||
|
appdirs==1.4.2
|
||||||
|
arrow==0.8.0
|
||||||
|
aws==0.2.5
|
||||||
|
backports.shutil-get-terminal-size==1.0.0
|
||||||
|
boto==2.42.0
|
||||||
|
branca==0.2.0
|
||||||
|
certifi==2017.1.23
|
||||||
|
configparser==3.5.0
|
||||||
|
cstruct==1.0
|
||||||
|
dask==0.11.0
|
||||||
|
dataset==0.7.0
|
||||||
|
decorator==4.0.11
|
||||||
|
descartes==1.0.2
|
||||||
|
entrypoints==0.2.2
|
||||||
|
folium==0.3.0
|
||||||
|
geojson==1.3.3
|
||||||
|
geopandas==0.2.1
|
||||||
|
georasters==0.4
|
||||||
|
h5py==2.6.0
|
||||||
|
h5pyViewer==0.0.1.6
|
||||||
|
homura==0.1.3
|
||||||
|
humanize==0.5.1
|
||||||
|
ipykernel==4.5.2
|
||||||
|
ipyleaflet==0.3.0
|
||||||
|
ipython==5.3.0
|
||||||
|
ipython-genutils==0.1.0
|
||||||
|
Jinja2==2.9.5
|
||||||
|
jiphy==1.2.1
|
||||||
|
jsonschema==2.6.0
|
||||||
|
jupyter-client==5.0.0
|
||||||
|
jupyter-console==5.1.0
|
||||||
|
jupyter-contrib-core==0.3.0
|
||||||
|
jupyter-contrib-nbextensions==0.2.1
|
||||||
|
jupyter-core==4.3.0
|
||||||
|
jupyter-nbextensions-configurator==0.2.2
|
||||||
|
Keras==1.1.0
|
||||||
|
keras-tqdm==1.0.7
|
||||||
|
line-profiler==2.0
|
||||||
|
metakernel==0.14.0
|
||||||
|
mistune==0.7.3
|
||||||
|
nbconvert==5.1.1
|
||||||
|
nbformat==4.3.0
|
||||||
|
netaddr==0.7.19
|
||||||
|
normality==0.3.0
|
||||||
|
notebook==4.4.1
|
||||||
|
numpy==1.12.0
|
||||||
|
octave-kernel==0.16.0
|
||||||
|
packaging==16.8
|
||||||
|
pandas==0.19.2
|
||||||
|
pathlib2==2.2.1
|
||||||
|
pexpect==4.2.1
|
||||||
|
pickleshare==0.7.4
|
||||||
|
prettytable==0.7.2
|
||||||
|
prompt-toolkit==1.0.13
|
||||||
|
psutil==4.4.2
|
||||||
|
Pygments==2.2.0
|
||||||
|
pyparsing==2.2.0
|
||||||
|
pyproj==1.9.5.1
|
||||||
|
Python-contrib-nbextensions===alpha
|
||||||
|
python-dateutil==2.6.0
|
||||||
|
pytz==2016.10
|
||||||
|
PyYAML==3.12
|
||||||
|
pyzmq==16.0.2
|
||||||
|
qgrid==0.3.2
|
||||||
|
-e git+git@github.com:wassname/recurrentshop.git@5a9fa01077404b9eb834c8d3224a233160355b20#egg=recurrentshop
|
||||||
|
scandir==1.5
|
||||||
|
scikit-image==0.12.3
|
||||||
|
sentinelsat==0.7.3
|
||||||
|
-e git+git@github.com:wassname/seq2seq.git@ff323a4a238e2e1553c8df2e3937b9108d24575e#egg=seq2seq
|
||||||
|
SLOTH==0.0.8
|
||||||
|
tfdebugger==0.1.1
|
||||||
|
Theano==0.8.2
|
||||||
|
toolz==0.8.0
|
||||||
|
toposort==1.4
|
||||||
|
tornado==4.4.2
|
||||||
|
tqdm==4.15.0
|
||||||
|
traitlets==4.3.2
|
||||||
|
traittypes==0.0.6
|
||||||
|
virtualenv==15.1.0
|
||||||
|
ViTables==2.1
|
||||||
|
wcwidth==0.1.7
|
||||||
|
yapf==0.13.2
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
From https://github.com/robertomest/convnet-study
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
# machine learning
|
||||||
|
#Keras==2.0.6
|
||||||
|
# use my branch untill https://github.com/fchollet/keras/pull/7613 is accepted
|
||||||
|
https://github.com/wassname/keras/archive/patch-4.zip
|
||||||
|
# keras contrib
|
||||||
|
https://github.com/farizrahman4u/keras-contrib/archive/c4d1a617461b0a4e29ec087de562032d47d03244.zip
|
||||||
|
h5py==2.7.0
|
||||||
|
tensorflow-gpu==1.2.1
|
||||||
|
scikit-image==0.13.0
|
||||||
|
scikit-learn==0.18.2
|
||||||
|
# numeric and plotting
|
||||||
|
pandas==0.20.3
|
||||||
|
numpy==1.13.1
|
||||||
|
matplotlib
|
||||||
|
seaborn==0.8
|
||||||
|
scipy==0.19.1
|
||||||
|
tqdm==4.15.0
|
||||||
|
arrow==0.10.0
|
||||||
|
# for download
|
||||||
|
boto3==1.4.5
|
||||||
|
# for process
|
||||||
|
# gdal2, needs to be installed another way
|
||||||
|
geopandas==0.2.1
|
||||||
|
rasterio==0.36.0
|
||||||
|
Fiona==1.7.8
|
||||||
|
Shapely==1.5.17
|
||||||