CONTRIBUTING.md LICENSE MANIFEST.in README.md setup.cfg setup.py Keras.egg-info/PKG-INFO Keras.egg-info/SOURCES.txt Keras.egg-info/dependency_links.txt Keras.egg-info/requires.txt Keras.egg-info/top_level.txt docs/README.md docs/__init__.py docs/autogen.py docs/mkdocs.yml docs/structure.py docs/templates/activations.md docs/templates/applications.md docs/templates/backend.md docs/templates/callbacks.md docs/templates/constraints.md docs/templates/datasets.md docs/templates/index.md docs/templates/initializers.md docs/templates/losses.md docs/templates/metrics.md docs/templates/optimizers.md docs/templates/regularizers.md docs/templates/scikit-learn-api.md docs/templates/visualization.md docs/templates/why-use-keras.md docs/templates/getting-started/faq.md docs/templates/getting-started/functional-api-guide.md docs/templates/getting-started/sequential-model-guide.md docs/templates/layers/about-keras-layers.md docs/templates/layers/writing-your-own-keras-layers.md docs/templates/models/about-keras-models.md docs/templates/models/model.md docs/templates/models/sequential.md docs/templates/preprocessing/image.md docs/templates/preprocessing/text.md docs/theme/404.html docs/theme/base.html docs/theme/breadcrumbs.html docs/theme/footer.html docs/theme/main.html docs/theme/nav.html docs/theme/search.html docs/theme/searchbox.html docs/theme/toc.html docs/theme/versions.html docs/theme/css/theme.css docs/theme/css/theme_extra.css docs/theme/js/jquery-2.1.1.min.js docs/theme/js/modernizr-2.8.3.min.js docs/theme/js/theme.js examples/README.md examples/addition_rnn.py examples/antirectifier.py examples/babi_memnn.py examples/babi_rnn.py examples/cifar10_cnn.py examples/cifar10_resnet.py examples/class_activation_maps.py examples/cnn_seq2seq.py examples/conv_filter_visualization.py examples/conv_lstm.py examples/deep_dream.py examples/image_ocr.py examples/imdb_bidirectional_lstm.py examples/imdb_cnn.py examples/imdb_cnn_lstm.py examples/imdb_fasttext.py examples/imdb_lstm.py examples/lstm_seq2seq.py examples/lstm_seq2seq_restore.py examples/lstm_stateful.py examples/lstm_text_generation.py examples/mnist_acgan.py examples/mnist_cnn.py examples/mnist_denoising_autoencoder.py examples/mnist_hierarchical_rnn.py examples/mnist_irnn.py examples/mnist_mlp.py examples/mnist_net2net.py examples/mnist_siamese.py examples/mnist_sklearn_wrapper.py examples/mnist_swwae.py examples/mnist_transfer_cnn.py examples/neural_doodle.py examples/neural_style_transfer.py examples/pretrained_word_embeddings.py examples/reuters_mlp.py examples/reuters_mlp_relu_vs_selu.py examples/variational_autoencoder.py examples/variational_autoencoder_deconv.py keras/__init__.py keras/activations.py keras/backend.py keras/callbacks.py keras/constraints.py keras/initializers.py keras/losses.py keras/metrics.py keras/models.py keras/objectives.py keras/regularizers.py keras/applications/__init__.py keras/applications/densenet.py keras/applications/imagenet_utils.py keras/applications/inception_resnet_v2.py keras/applications/inception_v3.py keras/applications/mobilenet.py keras/applications/mobilenet_v2.py keras/applications/nasnet.py keras/applications/resnet.py keras/applications/resnet50.py keras/applications/resnet_v2.py keras/applications/vgg16.py keras/applications/vgg19.py keras/applications/xception.py keras/datasets/__init__.py keras/datasets/boston_housing.py keras/datasets/cifar10.py keras/datasets/cifar100.py keras/datasets/fashion_mnist.py keras/datasets/imdb.py keras/datasets/mnist.py keras/datasets/reuters.py keras/engine/__init__.py keras/engine/base_layer.py keras/engine/input_layer.py keras/engine/network.py keras/engine/saving.py keras/engine/sequential.py keras/engine/topology.py keras/engine/training.py keras/layers/__init__.py keras/layers/advanced_activations.py keras/layers/convolutional.py keras/layers/convolutional_recurrent.py keras/layers/core.py keras/layers/cudnn_recurrent.py keras/layers/embeddings.py keras/layers/local.py keras/layers/merge.py keras/layers/noise.py keras/layers/normalization.py keras/layers/pooling.py keras/layers/recurrent.py keras/layers/wrappers.py keras/layers/experimental/__init__.py keras/layers/experimental/preprocessing/__init__.py keras/optimizers/__init__.py keras/optimizers/schedules/__init__.py keras/preprocessing/__init__.py keras/preprocessing/image.py keras/preprocessing/sequence.py keras/preprocessing/text.py keras/utils/__init__.py keras/utils/conv_utils.py keras/utils/data_utils.py keras/utils/generic_utils.py keras/utils/io_utils.py keras/utils/layer_utils.py keras/utils/multi_gpu_utils.py keras/utils/np_utils.py keras/utils/test_utils.py keras/utils/vis_utils.py keras/wrappers/__init__.py keras/wrappers/scikit_learn.py tests/conftest.py tests/test_api.py tests/test_dynamic_trainability.py tests/test_loss_masking.py tests/test_loss_weighting.py tests/test_model_saving.py tests/test_multiprocessing.py tests/integration_tests/applications_test.py tests/integration_tests/imagenet_utils_test.py tests/integration_tests/test_datasets.py tests/integration_tests/test_image_data_tasks.py tests/integration_tests/test_temporal_data_tasks.py tests/integration_tests/test_tensorflow_integration.py tests/integration_tests/test_vector_data_tasks.py tests/integration_tests/preprocessing/image_test.py tests/integration_tests/preprocessing/sequence_test.py tests/integration_tests/preprocessing/text_test.py tests/keras/activations_test.py tests/keras/constraints_test.py tests/keras/losses_test.py tests/keras/metrics_confusion_matrix_test.py tests/keras/metrics_correctness_test.py tests/keras/metrics_functional_test.py tests/keras/metrics_test.py tests/keras/metrics_training_test.py tests/keras/optimizers_test.py tests/keras/regularizers_test.py tests/keras/test_sequential_model.py tests/keras/callbacks/callbacks_test.py tests/keras/callbacks/tensorboard_test.py tests/keras/datasets/datasets_test.py tests/keras/engine/layer_subclassing_tests.py tests/keras/engine/test_topology.py tests/keras/engine/test_training.py tests/keras/layers/advanced_activations_test.py tests/keras/layers/convolutional_recurrent_test.py tests/keras/layers/convolutional_test.py tests/keras/layers/core_test.py tests/keras/layers/embeddings_test.py tests/keras/layers/local_test.py tests/keras/layers/merge_test.py tests/keras/layers/noise_test.py tests/keras/layers/normalization_test.py tests/keras/layers/pooling_test.py tests/keras/layers/recurrent_test.py tests/keras/layers/wrappers_test.py tests/keras/utils/conv_utils_test.py tests/keras/utils/data_utils_test.py tests/keras/utils/generic_utils_test.py tests/keras/utils/layer_utils_test.py tests/keras/utils/np_utils_test.py tests/keras/utils/vis_utils_test.py tests/keras/wrappers/scikit_learn_test.py