LICENSE
MANIFEST.in
README.md
setup.py
downloader/__init__.py
downloader/datasets.py
downloader/models.py
downloader/types.py
downloader/utils.py
downloader/tests/__init__.py
downloader/tests/test_dataset_download.py
downloader/tests/test_model_download.py
intel_transfer_learning_tool.egg-info/PKG-INFO
intel_transfer_learning_tool.egg-info/SOURCES.txt
intel_transfer_learning_tool.egg-info/dependency_links.txt
intel_transfer_learning_tool.egg-info/entry_points.txt
intel_transfer_learning_tool.egg-info/requires.txt
intel_transfer_learning_tool.egg-info/top_level.txt
tests/__init__.py
tests/conftest.py
tests/pytorch_tests/__init__.py
tests/pytorch_tests/test_image_anomaly_detection.py
tests/pytorch_tests/test_image_classification.py
tests/pytorch_tests/test_text_classification.py
tests/pytorch_tests/test_text_generation.py
tests/pytorch_tests/unit/__init__.py
tests/pytorch_tests/unit/test_datasets.py
tests/pytorch_tests/unit/test_inc.py
tests/pytorch_tests/unit/test_models.py
tests/tensorflow_tests/__init__.py
tests/tensorflow_tests/test_image_classification.py
tests/tensorflow_tests/test_text_classification.py
tests/tensorflow_tests/unit/__init__.py
tests/tensorflow_tests/unit/test_datasets.py
tests/tensorflow_tests/unit/test_inc.py
tests/tensorflow_tests/unit/test_models.py
tests/test_utils/__init__.py
tests/test_utils/platform_config.py
tests/tools/__init__.py
tests/tools/cli/__init__.py
tests/tools/cli/test_benchmark_cli.py
tests/tools/cli/test_eval_cli.py
tests/tools/cli/test_generate_cli.py
tests/tools/cli/test_optimize_cli.py
tests/tools/cli/test_quantize_cli.py
tests/tools/cli/test_train_cli.py
tests/utils/__init__.py
tests/utils/test_file_utils.py
tests/utils/test_inc_utils.py
tests/utils/test_platform_util.py
tlt/__init__.py
tlt/datasets/__init__.py
tlt/datasets/dataset.py
tlt/datasets/dataset_factory.py
tlt/datasets/hf_dataset.py
tlt/datasets/pytorch_dataset.py
tlt/datasets/tf_dataset.py
tlt/datasets/configs/hf_text_classification_datasets.json
tlt/datasets/configs/tf_text_classification_datasets.json
tlt/datasets/image_anomaly_detection/__init__.py
tlt/datasets/image_anomaly_detection/pytorch_custom_image_anomaly_detection_dataset.py
tlt/datasets/image_classification/__init__.py
tlt/datasets/image_classification/image_classification_dataset.py
tlt/datasets/image_classification/pytorch_custom_image_classification_dataset.py
tlt/datasets/image_classification/tf_custom_image_classification_dataset.py
tlt/datasets/image_classification/tfds_image_classification_dataset.py
tlt/datasets/image_classification/torchvision_image_classification_dataset.py
tlt/datasets/text_classification/hf_custom_text_classification_dataset.py
tlt/datasets/text_classification/hf_text_classification_dataset.py
tlt/datasets/text_classification/text_classification_dataset.py
tlt/datasets/text_classification/tf_custom_text_classification_dataset.py
tlt/datasets/text_classification/tfds_text_classification_dataset.py
tlt/datasets/text_generation/hf_custom_text_generation_dataset.py
tlt/datasets/text_generation/text_generation_dataset.py
tlt/distributed/README.md
tlt/distributed/__init__.py
tlt/distributed/pytorch/README.md
tlt/distributed/pytorch/__init__.py
tlt/distributed/pytorch/pyt_hvd_setup.sh
tlt/distributed/pytorch/requirements.txt
tlt/distributed/pytorch/run_install.sh
tlt/distributed/pytorch/run_train_pyt.py
tlt/distributed/pytorch/deploy/install_torch_ccl.sh
tlt/distributed/pytorch/utils/__init__.py
tlt/distributed/pytorch/utils/pyt_distributed_utils.py
tlt/distributed/tensorflow/README.md
tlt/distributed/tensorflow/__init__.py
tlt/distributed/tensorflow/requirements.txt
tlt/distributed/tensorflow/run_train_tf.py
tlt/distributed/tensorflow/tf_hvd_setup.sh
tlt/distributed/tensorflow/utils/__init__.py
tlt/distributed/tensorflow/utils/tf_distributed_util.py
tlt/models/__init__.py
tlt/models/hf_model.py
tlt/models/model.py
tlt/models/model_factory.py
tlt/models/pytorch_model.py
tlt/models/tf_model.py
tlt/models/configs/pytorch_hf_text_classification_models.json
tlt/models/configs/pytorch_hf_text_generation_models.json
tlt/models/configs/pytorch_hub_image_classification_models.json
tlt/models/configs/tf_hf_text_classification_models.json
tlt/models/configs/tf_keras_image_classification_models.json
tlt/models/configs/tfhub_image_classification_models.json
tlt/models/configs/torchvision_image_anomaly_detection_models.json
tlt/models/configs/torchvision_image_classification_models.json
tlt/models/image_anomaly_detection/__init__.py
tlt/models/image_anomaly_detection/pytorch_image_anomaly_detection_model.py
tlt/models/image_anomaly_detection/torchvision_image_anomaly_detection_model.py
tlt/models/image_anomaly_detection/utils.py
tlt/models/image_anomaly_detection/cutpaste/cutpaste.py
tlt/models/image_anomaly_detection/cutpaste/model.py
tlt/models/image_anomaly_detection/simsiam/builder.py
tlt/models/image_anomaly_detection/simsiam/loader.py
tlt/models/image_classification/__init__.py
tlt/models/image_classification/image_classification_model.py
tlt/models/image_classification/keras_image_classification_model.py
tlt/models/image_classification/pytorch_hub_image_classification_model.py
tlt/models/image_classification/pytorch_image_classification_model.py
tlt/models/image_classification/tf_image_classification_model.py
tlt/models/image_classification/tfhub_image_classification_model.py
tlt/models/image_classification/torchvision_image_classification_model.py
tlt/models/text_classification/__init__.py
tlt/models/text_classification/pytorch_hf_text_classification_model.py
tlt/models/text_classification/text_classification_model.py
tlt/models/text_classification/tf_hf_text_classification_model.py
tlt/models/text_classification/tf_text_classification_model.py
tlt/models/text_classification/tfhub_text_classification_model.py
tlt/models/text_generation/pytorch_hf_text_generation_model.py
tlt/models/text_generation/text_generation_model.py
tlt/tools/cli/__init__.py
tlt/tools/cli/main.py
tlt/tools/cli/commands/__init__.py
tlt/tools/cli/commands/benchmark.py
tlt/tools/cli/commands/eval.py
tlt/tools/cli/commands/generate.py
tlt/tools/cli/commands/list.py
tlt/tools/cli/commands/optimize.py
tlt/tools/cli/commands/quantize.py
tlt/tools/cli/commands/train.py
tlt/utils/__init__.py
tlt/utils/dataset_utils.py
tlt/utils/file_utils.py
tlt/utils/inc_utils.py
tlt/utils/platform_util.py
tlt/utils/types.py