├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── docker ├── Dockerfile ├── Makefile ├── README.md └── theanorc ├── docs ├── README.md ├── autogen.py ├── mkdocs.yml └── templates │ ├── activations.md │ ├── applications.md │ ├── backend.md │ ├── callbacks.md │ ├── constraints.md │ ├── datasets.md │ ├── getting-started │ ├── faq.md │ ├── functional-api-guide.md │ └── sequential-model-guide.md │ ├── index.md │ ├── initializations.md │ ├── layers │ ├── about-keras-layers.md │ └── writing-your-own-keras-layers.md │ ├── metrics.md │ ├── models │ ├── about-keras-models.md │ ├── model.md │ └── sequential.md │ ├── objectives.md │ ├── optimizers.md │ ├── preprocessing │ ├── image.md │ ├── sequence.md │ └── text.md │ ├── regularizers.md │ ├── scikit-learn-api.md │ └── visualization.md ├── examples ├── README.md ├── addition_rnn.py ├── antirectifier.py ├── babi_memnn.py ├── babi_rnn.py ├── cifar10_cnn.py ├── cifar10_resnet50.py ├── conv_filter_visualization.py ├── conv_lstm.py ├── deep_dream.py ├── image_ocr.py ├── imdb_bidirectional_lstm.py ├── imdb_cnn.py ├── imdb_cnn_lstm.py ├── imdb_fasttext.py ├── imdb_lstm.py ├── lstm_benchmark.py ├── lstm_text_generation.py ├── mnist_acgan.py ├── mnist_cnn.py ├── mnist_hierarchical_rnn.py ├── mnist_irnn.py ├── mnist_mlp.py ├── mnist_net2net.py ├── mnist_siamese_graph.py ├── mnist_sklearn_wrapper.py ├── mnist_swwae.py ├── mnist_transfer_cnn.py ├── neural_doodle.py ├── neural_style_transfer.py ├── pretrained_word_embeddings.py ├── reuters_mlp.py ├── stateful_lstm.py ├── variational_autoencoder.py └── variational_autoencoder_deconv.py ├── keras ├── __init__.py ├── activations.py ├── applications │ ├── __init__.py │ ├── audio_conv_utils.py │ ├── imagenet_utils.py │ ├── inception_v3.py │ ├── music_tagger_crnn.py │ ├── resnet50.py │ ├── vgg16.py │ ├── vgg19.py │ └── xception.py ├── backend │ ├── __init__.py │ ├── common.py │ ├── mxnet_backend.py │ ├── tensorflow_backend.py │ └── theano_backend.py ├── callbacks.py ├── constraints.py ├── datasets │ ├── __init__.py │ ├── cifar.py │ ├── cifar10.py │ ├── cifar100.py │ ├── imdb.py │ ├── mnist.py │ └── reuters.py ├── engine │ ├── __init__.py │ ├── topology.py │ └── training.py ├── initializations.py ├── layers │ ├── __init__.py │ ├── advanced_activations.py │ ├── convolutional.py │ ├── convolutional_recurrent.py │ ├── core.py │ ├── embeddings.py │ ├── local.py │ ├── noise.py │ ├── normalization.py │ ├── pooling.py │ ├── recurrent.py │ └── wrappers.py ├── metrics.py ├── models.py ├── objectives.py ├── optimizers.py ├── preprocessing │ ├── __init__.py │ ├── image.py │ ├── sequence.py │ └── text.py ├── regularizers.py ├── utils │ ├── __init__.py │ ├── data_utils.py │ ├── generic_utils.py │ ├── io_utils.py │ ├── layer_utils.py │ ├── np_utils.py │ ├── test_utils.py │ └── visualize_util.py └── wrappers │ ├── __init__.py │ └── scikit_learn.py ├── pytest.ini ├── setup.cfg ├── setup.py └── tests ├── integration_tests ├── test_image_data_tasks.py ├── test_temporal_data_tasks.py └── test_vector_data_tasks.py ├── keras ├── backend │ └── test_backends.py ├── datasets │ └── test_datasets.py ├── engine │ ├── test_topology.py │ └── test_training.py ├── layers │ ├── test_advanced_activations.py │ ├── test_convolutional.py │ ├── test_convolutional_recurrent.py │ ├── test_core.py │ ├── test_embeddings.py │ ├── test_local.py │ ├── test_noise.py │ ├── test_normalization.py │ ├── test_recurrent.py │ └── test_wrappers.py ├── preprocessing │ ├── test_image.py │ ├── test_sequence.py │ └── test_text.py ├── test_activations.py ├── test_callbacks.py ├── test_constraints.py ├── test_initializations.py ├── test_metrics.py ├── test_multiprocessing.py ├── test_objectives.py ├── test_optimizers.py ├── test_regularizers.py ├── test_sequential_model.py ├── test_sparse.py ├── utils │ └── test_generic_utils.py └── wrappers │ └── test_scikit_learn.py ├── test_dynamic_trainability.py ├── test_loss_masking.py ├── test_loss_weighting.py └── test_model_saving.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/theanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docker/theanorc -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/autogen.py -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /docs/templates/activations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/activations.md -------------------------------------------------------------------------------- /docs/templates/applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/applications.md -------------------------------------------------------------------------------- /docs/templates/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/backend.md -------------------------------------------------------------------------------- /docs/templates/callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/callbacks.md -------------------------------------------------------------------------------- /docs/templates/constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/constraints.md -------------------------------------------------------------------------------- /docs/templates/datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/datasets.md -------------------------------------------------------------------------------- /docs/templates/getting-started/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/getting-started/faq.md -------------------------------------------------------------------------------- /docs/templates/getting-started/functional-api-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/getting-started/functional-api-guide.md -------------------------------------------------------------------------------- /docs/templates/getting-started/sequential-model-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/getting-started/sequential-model-guide.md -------------------------------------------------------------------------------- /docs/templates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/index.md -------------------------------------------------------------------------------- /docs/templates/initializations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/initializations.md -------------------------------------------------------------------------------- /docs/templates/layers/about-keras-layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/layers/about-keras-layers.md -------------------------------------------------------------------------------- /docs/templates/layers/writing-your-own-keras-layers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/layers/writing-your-own-keras-layers.md -------------------------------------------------------------------------------- /docs/templates/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/metrics.md -------------------------------------------------------------------------------- /docs/templates/models/about-keras-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/models/about-keras-models.md -------------------------------------------------------------------------------- /docs/templates/models/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/models/model.md -------------------------------------------------------------------------------- /docs/templates/models/sequential.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/models/sequential.md -------------------------------------------------------------------------------- /docs/templates/objectives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/objectives.md -------------------------------------------------------------------------------- /docs/templates/optimizers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/optimizers.md -------------------------------------------------------------------------------- /docs/templates/preprocessing/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/preprocessing/image.md -------------------------------------------------------------------------------- /docs/templates/preprocessing/sequence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/preprocessing/sequence.md -------------------------------------------------------------------------------- /docs/templates/preprocessing/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/preprocessing/text.md -------------------------------------------------------------------------------- /docs/templates/regularizers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/regularizers.md -------------------------------------------------------------------------------- /docs/templates/scikit-learn-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/scikit-learn-api.md -------------------------------------------------------------------------------- /docs/templates/visualization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/docs/templates/visualization.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/addition_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/addition_rnn.py -------------------------------------------------------------------------------- /examples/antirectifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/antirectifier.py -------------------------------------------------------------------------------- /examples/babi_memnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/babi_memnn.py -------------------------------------------------------------------------------- /examples/babi_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/babi_rnn.py -------------------------------------------------------------------------------- /examples/cifar10_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/cifar10_cnn.py -------------------------------------------------------------------------------- /examples/cifar10_resnet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/cifar10_resnet50.py -------------------------------------------------------------------------------- /examples/conv_filter_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/conv_filter_visualization.py -------------------------------------------------------------------------------- /examples/conv_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/conv_lstm.py -------------------------------------------------------------------------------- /examples/deep_dream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/deep_dream.py -------------------------------------------------------------------------------- /examples/image_ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/image_ocr.py -------------------------------------------------------------------------------- /examples/imdb_bidirectional_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/imdb_bidirectional_lstm.py -------------------------------------------------------------------------------- /examples/imdb_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/imdb_cnn.py -------------------------------------------------------------------------------- /examples/imdb_cnn_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/imdb_cnn_lstm.py -------------------------------------------------------------------------------- /examples/imdb_fasttext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/imdb_fasttext.py -------------------------------------------------------------------------------- /examples/imdb_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/imdb_lstm.py -------------------------------------------------------------------------------- /examples/lstm_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/lstm_benchmark.py -------------------------------------------------------------------------------- /examples/lstm_text_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/lstm_text_generation.py -------------------------------------------------------------------------------- /examples/mnist_acgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/mnist_acgan.py -------------------------------------------------------------------------------- /examples/mnist_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/mnist_cnn.py -------------------------------------------------------------------------------- /examples/mnist_hierarchical_rnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/mnist_hierarchical_rnn.py -------------------------------------------------------------------------------- /examples/mnist_irnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/mnist_irnn.py -------------------------------------------------------------------------------- /examples/mnist_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/mnist_mlp.py -------------------------------------------------------------------------------- /examples/mnist_net2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/mnist_net2net.py -------------------------------------------------------------------------------- /examples/mnist_siamese_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/mnist_siamese_graph.py -------------------------------------------------------------------------------- /examples/mnist_sklearn_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/mnist_sklearn_wrapper.py -------------------------------------------------------------------------------- /examples/mnist_swwae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/mnist_swwae.py -------------------------------------------------------------------------------- /examples/mnist_transfer_cnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/mnist_transfer_cnn.py -------------------------------------------------------------------------------- /examples/neural_doodle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/neural_doodle.py -------------------------------------------------------------------------------- /examples/neural_style_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/neural_style_transfer.py -------------------------------------------------------------------------------- /examples/pretrained_word_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/pretrained_word_embeddings.py -------------------------------------------------------------------------------- /examples/reuters_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/reuters_mlp.py -------------------------------------------------------------------------------- /examples/stateful_lstm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/stateful_lstm.py -------------------------------------------------------------------------------- /examples/variational_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/variational_autoencoder.py -------------------------------------------------------------------------------- /examples/variational_autoencoder_deconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/examples/variational_autoencoder_deconv.py -------------------------------------------------------------------------------- /keras/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/__init__.py -------------------------------------------------------------------------------- /keras/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/activations.py -------------------------------------------------------------------------------- /keras/applications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/applications/__init__.py -------------------------------------------------------------------------------- /keras/applications/audio_conv_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/applications/audio_conv_utils.py -------------------------------------------------------------------------------- /keras/applications/imagenet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/applications/imagenet_utils.py -------------------------------------------------------------------------------- /keras/applications/inception_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/applications/inception_v3.py -------------------------------------------------------------------------------- /keras/applications/music_tagger_crnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/applications/music_tagger_crnn.py -------------------------------------------------------------------------------- /keras/applications/resnet50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/applications/resnet50.py -------------------------------------------------------------------------------- /keras/applications/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/applications/vgg16.py -------------------------------------------------------------------------------- /keras/applications/vgg19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/applications/vgg19.py -------------------------------------------------------------------------------- /keras/applications/xception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/applications/xception.py -------------------------------------------------------------------------------- /keras/backend/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/backend/__init__.py -------------------------------------------------------------------------------- /keras/backend/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/backend/common.py -------------------------------------------------------------------------------- /keras/backend/mxnet_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/backend/mxnet_backend.py -------------------------------------------------------------------------------- /keras/backend/tensorflow_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/backend/tensorflow_backend.py -------------------------------------------------------------------------------- /keras/backend/theano_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/backend/theano_backend.py -------------------------------------------------------------------------------- /keras/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/callbacks.py -------------------------------------------------------------------------------- /keras/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/constraints.py -------------------------------------------------------------------------------- /keras/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras/datasets/cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/datasets/cifar.py -------------------------------------------------------------------------------- /keras/datasets/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/datasets/cifar10.py -------------------------------------------------------------------------------- /keras/datasets/cifar100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/datasets/cifar100.py -------------------------------------------------------------------------------- /keras/datasets/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/datasets/imdb.py -------------------------------------------------------------------------------- /keras/datasets/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/datasets/mnist.py -------------------------------------------------------------------------------- /keras/datasets/reuters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/datasets/reuters.py -------------------------------------------------------------------------------- /keras/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/engine/__init__.py -------------------------------------------------------------------------------- /keras/engine/topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/engine/topology.py -------------------------------------------------------------------------------- /keras/engine/training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/engine/training.py -------------------------------------------------------------------------------- /keras/initializations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/initializations.py -------------------------------------------------------------------------------- /keras/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/__init__.py -------------------------------------------------------------------------------- /keras/layers/advanced_activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/advanced_activations.py -------------------------------------------------------------------------------- /keras/layers/convolutional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/convolutional.py -------------------------------------------------------------------------------- /keras/layers/convolutional_recurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/convolutional_recurrent.py -------------------------------------------------------------------------------- /keras/layers/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/core.py -------------------------------------------------------------------------------- /keras/layers/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/embeddings.py -------------------------------------------------------------------------------- /keras/layers/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/local.py -------------------------------------------------------------------------------- /keras/layers/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/noise.py -------------------------------------------------------------------------------- /keras/layers/normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/normalization.py -------------------------------------------------------------------------------- /keras/layers/pooling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/pooling.py -------------------------------------------------------------------------------- /keras/layers/recurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/recurrent.py -------------------------------------------------------------------------------- /keras/layers/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/layers/wrappers.py -------------------------------------------------------------------------------- /keras/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/metrics.py -------------------------------------------------------------------------------- /keras/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/models.py -------------------------------------------------------------------------------- /keras/objectives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/objectives.py -------------------------------------------------------------------------------- /keras/optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/optimizers.py -------------------------------------------------------------------------------- /keras/preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras/preprocessing/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/preprocessing/image.py -------------------------------------------------------------------------------- /keras/preprocessing/sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/preprocessing/sequence.py -------------------------------------------------------------------------------- /keras/preprocessing/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/preprocessing/text.py -------------------------------------------------------------------------------- /keras/regularizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/regularizers.py -------------------------------------------------------------------------------- /keras/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/utils/data_utils.py -------------------------------------------------------------------------------- /keras/utils/generic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/utils/generic_utils.py -------------------------------------------------------------------------------- /keras/utils/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/utils/io_utils.py -------------------------------------------------------------------------------- /keras/utils/layer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/utils/layer_utils.py -------------------------------------------------------------------------------- /keras/utils/np_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/utils/np_utils.py -------------------------------------------------------------------------------- /keras/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/utils/test_utils.py -------------------------------------------------------------------------------- /keras/utils/visualize_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/utils/visualize_util.py -------------------------------------------------------------------------------- /keras/wrappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /keras/wrappers/scikit_learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/keras/wrappers/scikit_learn.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/setup.py -------------------------------------------------------------------------------- /tests/integration_tests/test_image_data_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/integration_tests/test_image_data_tasks.py -------------------------------------------------------------------------------- /tests/integration_tests/test_temporal_data_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/integration_tests/test_temporal_data_tasks.py -------------------------------------------------------------------------------- /tests/integration_tests/test_vector_data_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/integration_tests/test_vector_data_tasks.py -------------------------------------------------------------------------------- /tests/keras/backend/test_backends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/backend/test_backends.py -------------------------------------------------------------------------------- /tests/keras/datasets/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/datasets/test_datasets.py -------------------------------------------------------------------------------- /tests/keras/engine/test_topology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/engine/test_topology.py -------------------------------------------------------------------------------- /tests/keras/engine/test_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/engine/test_training.py -------------------------------------------------------------------------------- /tests/keras/layers/test_advanced_activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/layers/test_advanced_activations.py -------------------------------------------------------------------------------- /tests/keras/layers/test_convolutional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/layers/test_convolutional.py -------------------------------------------------------------------------------- /tests/keras/layers/test_convolutional_recurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/layers/test_convolutional_recurrent.py -------------------------------------------------------------------------------- /tests/keras/layers/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/layers/test_core.py -------------------------------------------------------------------------------- /tests/keras/layers/test_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/layers/test_embeddings.py -------------------------------------------------------------------------------- /tests/keras/layers/test_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/layers/test_local.py -------------------------------------------------------------------------------- /tests/keras/layers/test_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/layers/test_noise.py -------------------------------------------------------------------------------- /tests/keras/layers/test_normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/layers/test_normalization.py -------------------------------------------------------------------------------- /tests/keras/layers/test_recurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/layers/test_recurrent.py -------------------------------------------------------------------------------- /tests/keras/layers/test_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/layers/test_wrappers.py -------------------------------------------------------------------------------- /tests/keras/preprocessing/test_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/preprocessing/test_image.py -------------------------------------------------------------------------------- /tests/keras/preprocessing/test_sequence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/preprocessing/test_sequence.py -------------------------------------------------------------------------------- /tests/keras/preprocessing/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/preprocessing/test_text.py -------------------------------------------------------------------------------- /tests/keras/test_activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_activations.py -------------------------------------------------------------------------------- /tests/keras/test_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_callbacks.py -------------------------------------------------------------------------------- /tests/keras/test_constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_constraints.py -------------------------------------------------------------------------------- /tests/keras/test_initializations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_initializations.py -------------------------------------------------------------------------------- /tests/keras/test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_metrics.py -------------------------------------------------------------------------------- /tests/keras/test_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_multiprocessing.py -------------------------------------------------------------------------------- /tests/keras/test_objectives.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_objectives.py -------------------------------------------------------------------------------- /tests/keras/test_optimizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_optimizers.py -------------------------------------------------------------------------------- /tests/keras/test_regularizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_regularizers.py -------------------------------------------------------------------------------- /tests/keras/test_sequential_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_sequential_model.py -------------------------------------------------------------------------------- /tests/keras/test_sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/test_sparse.py -------------------------------------------------------------------------------- /tests/keras/utils/test_generic_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/utils/test_generic_utils.py -------------------------------------------------------------------------------- /tests/keras/wrappers/test_scikit_learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/keras/wrappers/test_scikit_learn.py -------------------------------------------------------------------------------- /tests/test_dynamic_trainability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/test_dynamic_trainability.py -------------------------------------------------------------------------------- /tests/test_loss_masking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/test_loss_masking.py -------------------------------------------------------------------------------- /tests/test_loss_weighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/test_loss_weighting.py -------------------------------------------------------------------------------- /tests/test_model_saving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dmlc/keras/HEAD/tests/test_model_saving.py --------------------------------------------------------------------------------