-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathenvironment.yml
47 lines (43 loc) · 894 Bytes
/
environment.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# Create environment:
# $ conda env create --force
name: dl
channels:
- conda-forge
- damianavila82
dependencies:
- python = 3.6
- tensorflow >= 1.0
- keras >= 2.0
- pillow >= 4.0
- ipython
- jupyter
- anaconda
- matplotlib
- seaborn
- plotly
- numpy
- pandas
- scikit-learn
- scikit-image
- h5py
- requests
- setuptools
- pip
- pip:
- rise
- pygame
- hyperas
- pydot
- pydot-ng
- nbbrowserpdf
- ipy-table
# Start environment
# $ source activate dl
# Add cli to support Keras visualizations
# $ brew install graphviz
# Update environment (might break stuff. move fast!?)
# $ conda update --all --yes
# $ pip install --upgrade -r <( pip freeze )
# Setup RISE (https://github.com/damianavila/RISE) slideshows:
# $ jupyter nbextension install rise --py --sys-prefix
# $ jupyter nbextension enable rise --py --sys-prefix