├── .circleci └── config.yml ├── .gitignore ├── .mailmap ├── LICENSE ├── MANIFEST.in ├── NOTICE ├── README.md ├── bin ├── run-examples ├── run-isolated-tests └── verify-license-headers ├── catalog-info.yaml ├── examples ├── __init__.py ├── example_tf_data_validation │ └── main.py ├── example_tf_training_dataframes │ └── main.py ├── example_tf_training_tfexample │ └── main.py ├── example_tf_training_xgb │ └── main.py ├── example_tf_transform │ ├── main.py │ └── taxi.py └── examples_utils.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── spotify_tensorflow ├── __init__.py ├── dataset.py ├── example_decoders.py ├── featran.py ├── luigi │ ├── __init__.py │ ├── python_dataflow_task.py │ ├── tensorflow_task.py │ ├── tfx_task.py │ └── utils.py ├── scripts │ ├── __init__.py │ └── tfr_read.py ├── tf_schema_utils.py └── tfx │ ├── __init__.py │ ├── tfdv.py │ ├── tft.py │ └── utils.py ├── tests ├── README.md ├── __init__.py ├── dataset_test.py ├── example_decoders_test.py ├── featran_test.py ├── luigi_utils_test.py ├── python_dataflow_task_test.py ├── resources │ └── tf-test-resource │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sbt │ │ ├── project │ │ ├── build.properties │ │ └── plugins.sbt │ │ ├── scalastyle-config.xml │ │ ├── src │ │ └── main │ │ │ ├── resources │ │ │ ├── iris.data │ │ │ └── log4j.properties │ │ │ └── scala │ │ │ └── com │ │ │ └── spotify │ │ │ ├── GenerateIrisTFRecords.scala │ │ │ └── GenerateTFRecords.scala │ │ ├── tf-records-iris │ │ ├── eval │ │ │ ├── _inferred_schema.pb │ │ │ ├── _stats.pb │ │ │ ├── part-00000-of-00003.tfrecords │ │ │ ├── part-00001-of-00003.tfrecords │ │ │ └── part-00002-of-00003.tfrecords │ │ ├── settings │ │ │ └── part-00000-of-00001.txt │ │ └── train │ │ │ ├── _inferred_schema.pb │ │ │ ├── _stats.pb │ │ │ ├── part-00000-of-00003.tfrecords │ │ │ ├── part-00001-of-00003.tfrecords │ │ │ └── part-00002-of-00003.tfrecords │ │ ├── tf-records-taxi │ │ ├── _MANIFEST.json │ │ ├── chicago_taxi_schema.pbtxt │ │ └── part-00000-of-00004.tfrecords.gz │ │ └── tf-records │ │ ├── eval │ │ ├── _inferred_schema.pb │ │ ├── part-00000-of-00004.tfrecords │ │ ├── part-00001-of-00004.tfrecords │ │ ├── part-00002-of-00004.tfrecords │ │ ├── part-00003-of-00004.tfrecords │ │ └── stats.pb │ │ ├── settings │ │ └── part-00000-of-00001.txt │ │ └── train │ │ ├── _inferred_schema.pb │ │ ├── part-00000-of-00005.tfrecords │ │ ├── part-00001-of-00005.tfrecords │ │ ├── part-00002-of-00005.tfrecords │ │ ├── part-00003-of-00005.tfrecords │ │ ├── part-00004-of-00005.tfrecords │ │ └── stats.pb ├── scripts_tfr_read.py ├── tensorflow_task_test.py ├── test_utils.py ├── tf_schema_utils_test.py ├── tfdv_test.py ├── tft_test.py ├── tfx_task_test.py └── tfx_utils_test.py └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/.mailmap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /bin/run-examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/bin/run-examples -------------------------------------------------------------------------------- /bin/run-isolated-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/bin/run-isolated-tests -------------------------------------------------------------------------------- /bin/verify-license-headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/bin/verify-license-headers -------------------------------------------------------------------------------- /catalog-info.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/catalog-info.yaml -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/examples/__init__.py -------------------------------------------------------------------------------- /examples/example_tf_data_validation/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/examples/example_tf_data_validation/main.py -------------------------------------------------------------------------------- /examples/example_tf_training_dataframes/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/examples/example_tf_training_dataframes/main.py -------------------------------------------------------------------------------- /examples/example_tf_training_tfexample/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/examples/example_tf_training_tfexample/main.py -------------------------------------------------------------------------------- /examples/example_tf_training_xgb/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/examples/example_tf_training_xgb/main.py -------------------------------------------------------------------------------- /examples/example_tf_transform/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/examples/example_tf_transform/main.py -------------------------------------------------------------------------------- /examples/example_tf_transform/taxi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/examples/example_tf_transform/taxi.py -------------------------------------------------------------------------------- /examples/examples_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/examples/examples_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/setup.py -------------------------------------------------------------------------------- /spotify_tensorflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/__init__.py -------------------------------------------------------------------------------- /spotify_tensorflow/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/dataset.py -------------------------------------------------------------------------------- /spotify_tensorflow/example_decoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/example_decoders.py -------------------------------------------------------------------------------- /spotify_tensorflow/featran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/featran.py -------------------------------------------------------------------------------- /spotify_tensorflow/luigi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/luigi/__init__.py -------------------------------------------------------------------------------- /spotify_tensorflow/luigi/python_dataflow_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/luigi/python_dataflow_task.py -------------------------------------------------------------------------------- /spotify_tensorflow/luigi/tensorflow_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/luigi/tensorflow_task.py -------------------------------------------------------------------------------- /spotify_tensorflow/luigi/tfx_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/luigi/tfx_task.py -------------------------------------------------------------------------------- /spotify_tensorflow/luigi/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/luigi/utils.py -------------------------------------------------------------------------------- /spotify_tensorflow/scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/scripts/__init__.py -------------------------------------------------------------------------------- /spotify_tensorflow/scripts/tfr_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/scripts/tfr_read.py -------------------------------------------------------------------------------- /spotify_tensorflow/tf_schema_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/tf_schema_utils.py -------------------------------------------------------------------------------- /spotify_tensorflow/tfx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/tfx/__init__.py -------------------------------------------------------------------------------- /spotify_tensorflow/tfx/tfdv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/tfx/tfdv.py -------------------------------------------------------------------------------- /spotify_tensorflow/tfx/tft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/tfx/tft.py -------------------------------------------------------------------------------- /spotify_tensorflow/tfx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/spotify_tensorflow/tfx/utils.py -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/dataset_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/dataset_test.py -------------------------------------------------------------------------------- /tests/example_decoders_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/example_decoders_test.py -------------------------------------------------------------------------------- /tests/featran_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/featran_test.py -------------------------------------------------------------------------------- /tests/luigi_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/luigi_utils_test.py -------------------------------------------------------------------------------- /tests/python_dataflow_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/python_dataflow_task_test.py -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .bigquery 3 | .repl 4 | target 5 | -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/README.md -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/build.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/build.sbt -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/project/build.properties: -------------------------------------------------------------------------------- 1 | sbt.version=1.1.0 2 | -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/project/plugins.sbt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/project/plugins.sbt -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/scalastyle-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/scalastyle-config.xml -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/src/main/resources/iris.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/src/main/resources/iris.data -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/src/main/resources/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/src/main/resources/log4j.properties -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/src/main/scala/com/spotify/GenerateIrisTFRecords.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/src/main/scala/com/spotify/GenerateIrisTFRecords.scala -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/src/main/scala/com/spotify/GenerateTFRecords.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/src/main/scala/com/spotify/GenerateTFRecords.scala -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/eval/_inferred_schema.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/eval/_inferred_schema.pb -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/eval/_stats.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/eval/_stats.pb -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/eval/part-00000-of-00003.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/eval/part-00000-of-00003.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/eval/part-00001-of-00003.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/eval/part-00001-of-00003.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/eval/part-00002-of-00003.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/eval/part-00002-of-00003.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/settings/part-00000-of-00001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/settings/part-00000-of-00001.txt -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/train/_inferred_schema.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/train/_inferred_schema.pb -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/train/_stats.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/train/_stats.pb -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/train/part-00000-of-00003.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/train/part-00000-of-00003.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/train/part-00001-of-00003.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/train/part-00001-of-00003.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-iris/train/part-00002-of-00003.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-iris/train/part-00002-of-00003.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-taxi/_MANIFEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-taxi/_MANIFEST.json -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-taxi/chicago_taxi_schema.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-taxi/chicago_taxi_schema.pbtxt -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records-taxi/part-00000-of-00004.tfrecords.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records-taxi/part-00000-of-00004.tfrecords.gz -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/eval/_inferred_schema.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/eval/_inferred_schema.pb -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/eval/part-00000-of-00004.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/eval/part-00000-of-00004.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/eval/part-00001-of-00004.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/eval/part-00001-of-00004.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/eval/part-00002-of-00004.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/eval/part-00002-of-00004.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/eval/part-00003-of-00004.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/eval/part-00003-of-00004.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/eval/stats.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/eval/stats.pb -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/settings/part-00000-of-00001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/settings/part-00000-of-00001.txt -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/train/_inferred_schema.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/train/_inferred_schema.pb -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/train/part-00000-of-00005.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/train/part-00000-of-00005.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/train/part-00001-of-00005.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/train/part-00001-of-00005.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/train/part-00002-of-00005.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/train/part-00002-of-00005.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/train/part-00003-of-00005.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/train/part-00003-of-00005.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/train/part-00004-of-00005.tfrecords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/train/part-00004-of-00005.tfrecords -------------------------------------------------------------------------------- /tests/resources/tf-test-resource/tf-records/train/stats.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/resources/tf-test-resource/tf-records/train/stats.pb -------------------------------------------------------------------------------- /tests/scripts_tfr_read.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/scripts_tfr_read.py -------------------------------------------------------------------------------- /tests/tensorflow_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/tensorflow_task_test.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/tf_schema_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/tf_schema_utils_test.py -------------------------------------------------------------------------------- /tests/tfdv_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/tfdv_test.py -------------------------------------------------------------------------------- /tests/tft_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/tft_test.py -------------------------------------------------------------------------------- /tests/tfx_task_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/tfx_task_test.py -------------------------------------------------------------------------------- /tests/tfx_utils_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tests/tfx_utils_test.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spotify/spotify-tensorflow/HEAD/tox.ini --------------------------------------------------------------------------------