.. |
__init__.py
|
Remove layer from keras.__init__.py
|
2019-10-28 15:25:48 -07:00 |
base_layer_test.py
|
Support TF Modules inside Keras Layers and Models.
|
2020-10-30 12:27:12 -07:00 |
base_layer_utils_test.py
|
Make the sparse ops with Keras functional models error more verbose to aid debugging.
|
2020-07-17 12:22:12 -07:00 |
base_layer_utils.py
|
Adds an unsafe internal fastpath for oplayer construction in TF1 graphs due to specific requests.
|
2020-11-17 11:35:14 -08:00 |
base_layer_v1.py
|
Fixes GitHub #44608
|
2020-11-05 18:38:57 -08:00 |
base_layer.py
|
call will call build
|
2020-12-13 19:32:47 +08:00 |
base_preprocessing_layer_test.py
|
Give a clearer error message if the user passes a nested Dataset
|
2020-11-06 10:47:29 -08:00 |
base_preprocessing_layer_v1.py
|
Update TextVectorization to use internal layer adapt calls instead of its own combiner.
|
2020-05-19 09:26:19 -07:00 |
base_preprocessing_layer.py
|
Remove usage of internal sparse_tensor.is_sparse from keras
|
2020-11-09 20:20:08 -08:00 |
BUILD
|
Merge pull request #45166 from ROCmSoftwarePlatform:google_upstream_rocm_add_remove_no_rocm_tag
|
2020-12-21 00:32:48 -08:00 |
compile_utils_test.py
|
Add MetricsContainer.weighted_metrics and MetricsContainer.unweighted_metrics
|
2020-10-30 10:29:23 -07:00 |
compile_utils.py
|
Add MetricsContainer.weighted_metrics and MetricsContainer.unweighted_metrics
|
2020-10-30 10:29:23 -07:00 |
control_flow_test.py
|
Reenable autograph in Layer.__call__ and add safeguards to prevent users from writing invalid static control flow.
|
2019-04-24 18:54:46 -07:00 |
correctness_test.py
|
Remove passing experimental_run_tf_function in most tests.
|
2020-02-27 13:34:09 -08:00 |
data_adapter_test.py
|
Check if list/tuple is empty in ListsOfScalarsDataAdapter.
|
2020-12-07 02:26:22 -08:00 |
data_adapter.py
|
Check if list/tuple is empty in ListsOfScalarsDataAdapter.
|
2020-12-07 02:26:22 -08:00 |
deferred_sequential_test.py
|
Support TF Modules inside Keras Layers and Models.
|
2020-10-30 12:27:12 -07:00 |
feature_columns_integration_test.py
|
Update keras feature column test to explicitly use keras symbols.
|
2020-09-30 13:20:16 -07:00 |
functional_test.py
|
Fix functional subclass model used with multiple inheritance.
|
2020-11-19 16:21:10 -08:00 |
functional.py
|
Support tf.Modules in keras.Sequential.
|
2020-11-13 14:47:31 -08:00 |
input_layer_test.py
|
When a non-KerasTensor Tensor is passed to the tensor argument of keras.Input or InputLayer, make a KerasTensor directly from that tensor rather than erroring out.
|
2020-08-03 14:59:15 -07:00 |
input_layer.py
|
Switch all CompositeTensor instance checks in Keras to use a centralized tf_utils.is_extension_type util. This util will use the public ExtensionType api once it is in place.
|
2020-09-21 17:30:33 -07:00 |
input_spec_test.py
|
Move away from deprecated asserts
|
2020-06-30 16:10:22 -07:00 |
input_spec.py
|
Enable input spec checking for Functional models.
|
2020-08-03 10:12:01 -07:00 |
keras_tensor_test.py
|
Simplify string representation of KerasTensor.
|
2020-08-05 15:34:12 -07:00 |
keras_tensor.py
|
Fork the object_identity related class to Keras.
|
2020-10-30 15:17:53 -07:00 |
node_test.py
|
Stops special-casing first argument in Keras's internal Node representation. This makes the special-casing-behavior in __call__ more explicit, and make it easier to reduce how much special casing of the first argument Keras does moving forward.
|
2020-04-25 13:47:50 -07:00 |
node.py
|
Fixed a bug with Functional model serialization when a layer that produces kwarg args of another layer had already been used to define a different functional model.
|
2020-08-04 18:38:55 -07:00 |
partial_batch_padding_handler.py
|
Add support for final partial batch in predict() for TPUStrategy
|
2019-01-28 21:23:37 -08:00 |
ragged_keras_tensor_test.py
|
Add support for RaggedTensor properties, instance methods, and class methods in the Keras functional API.
|
2020-10-16 12:11:06 -07:00 |
saving.py
|
|
|
sequential_test.py
|
Support tf.Modules in keras.Sequential.
|
2020-11-13 14:47:31 -08:00 |
sequential.py
|
Add a warning message for usage of feeding keras.Input() to sequential model.
|
2020-12-10 15:29:33 -08:00 |
training_arrays_test.py
|
Remove passing experimental_run_tf_function in most tests.
|
2020-02-27 13:34:09 -08:00 |
training_arrays_v1.py
|
Update keras to use collections.abc instead of collections, which will be deprecated in py3.9
|
2020-10-28 20:17:49 -07:00 |
training_dataset_test.py
|
Merge pull request #44498 from jpodivin:logredef
|
2020-11-12 20:14:40 -08:00 |
training_distributed_v1.py
|
Remove the hard dependency of distribute_coordinator.CoordinatorMode in keras.
|
2020-10-27 13:08:02 -07:00 |
training_eager_test.py
|
Stops special-casing first argument in Keras's internal Node representation. This makes the special-casing-behavior in __call__ more explicit, and make it easier to reduce how much special casing of the first argument Keras does moving forward.
|
2020-04-25 13:47:50 -07:00 |
training_eager_v1.py
|
Move mixed precision files out of experimental/ directory.
|
2020-10-21 15:19:21 -07:00 |
training_generator_test.py
|
Add v1 to the names of Keras files that are legacy-training-loop-specific.
|
2020-09-15 14:17:55 -07:00 |
training_generator_v1.py
|
Update keras code to use public API of tf.data.Iterator.
|
2020-10-23 13:31:24 -07:00 |
training_gpu_test.py
|
Keras TF API usage cleanup: Copy test_util.use_gpu into Keras and replace the usage within Keras.
|
2020-07-21 14:30:11 -07:00 |
training_integration_test.py
|
Remove passing experimental_run_tf_function in most tests.
|
2020-02-27 13:34:09 -08:00 |
training_test.py
|
Support TF Modules inside Keras Layers and Models.
|
2020-10-30 12:27:12 -07:00 |
training_utils_v1_test.py
|
Keras was the only user of the fully-internal composite_tensor_utils, but it forked all of the symbols. So, this CL removes it from TF core. Also moves the test into the Keras training_v1_utils test now that all of the methods from composite_tensor_utils have been moved into training_v1_utils.
|
2020-11-17 11:42:30 -08:00 |
training_utils_v1.py
|
Fork composite_tensor_utils.append_composite_tensor into Keras so that Keras does not need to depend on the internal TF method. Facilitates splitting Keras into its own repository.
|
2020-11-13 14:28:25 -08:00 |
training_utils.py
|
Internal change: Remove tensor_shape.as_dimension from Keras.
|
2020-11-11 14:04:27 -08:00 |
training_v1.py
|
Allow weights to be loaded from saved model.
|
2020-12-16 09:40:49 -08:00 |
training.py
|
Allow weights to be loaded from saved model.
|
2020-12-16 09:40:49 -08:00 |