Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created September 28, 2019 12:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/2dadd7ea9c2502e594f350c3fb835199 to your computer and use it in GitHub Desktop.
Save ryantm/2dadd7ea9c2502e594f350c3fb835199 to your computer and use it in GitHub Desktop.
/nix/store/8rkhf70aaifmplddan0p579izdywib95-python3.7-Keras-2.3.0
├── lib
│   └── python3.7
│   └── site-packages
│   ├── docs
│   │   ├── autogen.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── autogen.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── structure.cpython-37.pyc
│   │   └── structure.py
│   ├── keras
│   │   ├── activations.py
│   │   ├── applications
│   │   │   ├── densenet.py
│   │   │   ├── imagenet_utils.py
│   │   │   ├── inception_resnet_v2.py
│   │   │   ├── inception_v3.py
│   │   │   ├── __init__.py
│   │   │   ├── mobilenet.py
│   │   │   ├── mobilenet_v2.py
│   │   │   ├── nasnet.py
│   │   │   ├── __pycache__
│   │   │   │   ├── densenet.cpython-37.pyc
│   │   │   │   ├── imagenet_utils.cpython-37.pyc
│   │   │   │   ├── inception_resnet_v2.cpython-37.pyc
│   │   │   │   ├── inception_v3.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mobilenet.cpython-37.pyc
│   │   │   │   ├── mobilenet_v2.cpython-37.pyc
│   │   │   │   ├── nasnet.cpython-37.pyc
│   │   │   │   ├── resnet50.cpython-37.pyc
│   │   │   │   ├── resnet.cpython-37.pyc
│   │   │   │   ├── resnet_v2.cpython-37.pyc
│   │   │   │   ├── vgg16.cpython-37.pyc
│   │   │   │   ├── vgg19.cpython-37.pyc
│   │   │   │   └── xception.cpython-37.pyc
│   │   │   ├── resnet50.py
│   │   │   ├── resnet.py
│   │   │   ├── resnet_v2.py
│   │   │   ├── vgg16.py
│   │   │   ├── vgg19.py
│   │   │   └── xception.py
│   │   ├── backend
│   │   │   ├── cntk_backend.py
│   │   │   ├── common.py
│   │   │   ├── __init__.py
│   │   │   ├── load_backend.py
│   │   │   ├── numpy_backend.py
│   │   │   ├── __pycache__
│   │   │   │   ├── cntk_backend.cpython-37.pyc
│   │   │   │   ├── common.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── load_backend.cpython-37.pyc
│   │   │   │   ├── numpy_backend.cpython-37.pyc
│   │   │   │   ├── tensorflow_backend.cpython-37.pyc
│   │   │   │   └── theano_backend.cpython-37.pyc
│   │   │   ├── tensorflow_backend.py
│   │   │   └── theano_backend.py
│   │   ├── callbacks
│   │   │   ├── callbacks.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── callbacks.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── tensorboard_v1.cpython-37.pyc
│   │   │   │   └── tensorboard_v2.cpython-37.pyc
│   │   │   ├── tensorboard_v1.py
│   │   │   └── tensorboard_v2.py
│   │   ├── constraints.py
│   │   ├── datasets
│   │   │   ├── boston_housing.py
│   │   │   ├── cifar100.py
│   │   │   ├── cifar10.py
│   │   │   ├── cifar.py
│   │   │   ├── fashion_mnist.py
│   │   │   ├── imdb.py
│   │   │   ├── __init__.py
│   │   │   ├── mnist.py
│   │   │   ├── __pycache__
│   │   │   │   ├── boston_housing.cpython-37.pyc
│   │   │   │   ├── cifar100.cpython-37.pyc
│   │   │   │   ├── cifar10.cpython-37.pyc
│   │   │   │   ├── cifar.cpython-37.pyc
│   │   │   │   ├── fashion_mnist.cpython-37.pyc
│   │   │   │   ├── imdb.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── mnist.cpython-37.pyc
│   │   │   │   └── reuters.cpython-37.pyc
│   │   │   └── reuters.py
│   │   ├── engine
│   │   │   ├── base_layer.py
│   │   │   ├── __init__.py
│   │   │   ├── input_layer.py
│   │   │   ├── network.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base_layer.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── input_layer.cpython-37.pyc
│   │   │   │   ├── network.cpython-37.pyc
│   │   │   │   ├── saving.cpython-37.pyc
│   │   │   │   ├── sequential.cpython-37.pyc
│   │   │   │   ├── topology.cpython-37.pyc
│   │   │   │   ├── training_arrays.cpython-37.pyc
│   │   │   │   ├── training.cpython-37.pyc
│   │   │   │   ├── training_generator.cpython-37.pyc
│   │   │   │   └── training_utils.cpython-37.pyc
│   │   │   ├── saving.py
│   │   │   ├── sequential.py
│   │   │   ├── topology.py
│   │   │   ├── training_arrays.py
│   │   │   ├── training_generator.py
│   │   │   ├── training.py
│   │   │   └── training_utils.py
│   │   ├── initializers.py
│   │   ├── __init__.py
│   │   ├── layers
│   │   │   ├── advanced_activations.py
│   │   │   ├── convolutional.py
│   │   │   ├── convolutional_recurrent.py
│   │   │   ├── core.py
│   │   │   ├── cudnn_recurrent.py
│   │   │   ├── embeddings.py
│   │   │   ├── __init__.py
│   │   │   ├── local.py
│   │   │   ├── merge.py
│   │   │   ├── noise.py
│   │   │   ├── normalization.py
│   │   │   ├── pooling.py
│   │   │   ├── __pycache__
│   │   │   │   ├── advanced_activations.cpython-37.pyc
│   │   │   │   ├── convolutional.cpython-37.pyc
│   │   │   │   ├── convolutional_recurrent.cpython-37.pyc
│   │   │   │   ├── core.cpython-37.pyc
│   │   │   │   ├── cudnn_recurrent.cpython-37.pyc
│   │   │   │   ├── embeddings.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── local.cpython-37.pyc
│   │   │   │   ├── merge.cpython-37.pyc
│   │   │   │   ├── noise.cpython-37.pyc
│   │   │   │   ├── normalization.cpython-37.pyc
│   │   │   │   ├── pooling.cpython-37.pyc
│   │   │   │   ├── recurrent.cpython-37.pyc
│   │   │   │   └── wrappers.cpython-37.pyc
│   │   │   ├── recurrent.py
│   │   │   └── wrappers.py
│   │   ├── legacy
│   │   │   ├── __init__.py
│   │   │   ├── interfaces.py
│   │   │   ├── layers.py
│   │   │   └── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── interfaces.cpython-37.pyc
│   │   │   └── layers.cpython-37.pyc
│   │   ├── losses.py
│   │   ├── metrics.py
│   │   ├── models.py
│   │   ├── objectives.py
│   │   ├── optimizers.py
│   │   ├── preprocessing
│   │   │   ├── image.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── image.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── sequence.cpython-37.pyc
│   │   │   │   └── text.cpython-37.pyc
│   │   │   ├── sequence.py
│   │   │   └── text.py
│   │   ├── __pycache__
│   │   │   ├── activations.cpython-37.pyc
│   │   │   ├── constraints.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── initializers.cpython-37.pyc
│   │   │   ├── losses.cpython-37.pyc
│   │   │   ├── metrics.cpython-37.pyc
│   │   │   ├── models.cpython-37.pyc
│   │   │   ├── objectives.cpython-37.pyc
│   │   │   ├── optimizers.cpython-37.pyc
│   │   │   └── regularizers.cpython-37.pyc
│   │   ├── regularizers.py
│   │   ├── utils
│   │   │   ├── conv_utils.py
│   │   │   ├── data_utils.py
│   │   │   ├── generic_utils.py
│   │   │   ├── __init__.py
│   │   │   ├── io_utils.py
│   │   │   ├── layer_utils.py
│   │   │   ├── losses_utils.py
│   │   │   ├── metrics_utils.py
│   │   │   ├── multi_gpu_utils.py
│   │   │   ├── np_utils.py
│   │   │   ├── __pycache__
│   │   │   │   ├── conv_utils.cpython-37.pyc
│   │   │   │   ├── data_utils.cpython-37.pyc
│   │   │   │   ├── generic_utils.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── io_utils.cpython-37.pyc
│   │   │   │   ├── layer_utils.cpython-37.pyc
│   │   │   │   ├── losses_utils.cpython-37.pyc
│   │   │   │   ├── metrics_utils.cpython-37.pyc
│   │   │   │   ├── multi_gpu_utils.cpython-37.pyc
│   │   │   │   ├── np_utils.cpython-37.pyc
│   │   │   │   ├── test_utils.cpython-37.pyc
│   │   │   │   └── vis_utils.cpython-37.pyc
│   │   │   ├── test_utils.py
│   │   │   └── vis_utils.py
│   │   └── wrappers
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── scikit_learn.cpython-37.pyc
│   │   └── scikit_learn.py
│   └── Keras-2.3.0.dist-info
│   ├── INSTALLER
│   ├── LICENSE
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
29 directories, 193 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment