├── .gitignore ├── LICENSE ├── README.md ├── datasets ├── __init__.py ├── convert_images_tfrecords.py ├── convert_to_dataset.py ├── dataset_utils.py ├── download_images.py └── tumblr_extraction.py ├── image_model ├── __init__.py ├── im_model.py └── inception_v1.py ├── image_text_model ├── __init__.py └── im_text_rnn_model.py ├── parallel_computing ├── job_array_correlation.sh ├── job_array_download.sh ├── job_array_evaluate.sh ├── job_array_oasis.sh ├── job_array_outliers.sh ├── job_array_tfrecords.sh ├── job_array_top_words.sh ├── job_array_train.sh ├── job_array_week.sh ├── job_correlation.py ├── job_download.py ├── job_evaluate.py ├── job_oasis.py ├── job_outliers.py ├── job_tfrecords.py ├── job_top_words.py ├── job_train.py └── job_week.py ├── slim ├── BUILD ├── README.md ├── WORKSPACE ├── __init__.py ├── datasets │ ├── __init__.py │ ├── cifar10.py │ ├── dataset_factory.py │ ├── dataset_utils.py │ ├── download_and_convert_cifar10.py │ ├── download_and_convert_flowers.py │ ├── download_and_convert_mnist.py │ ├── flowers.py │ ├── imagenet.py │ └── mnist.py ├── deployment │ ├── __init__.py │ ├── model_deploy.py │ └── model_deploy_test.py ├── download_and_convert_data.py ├── eval_image_classifier.py ├── export_inference_graph.py ├── export_inference_graph_test.py ├── nets │ ├── __init__.py │ ├── alexnet.py │ ├── alexnet_test.py │ ├── cifarnet.py │ ├── inception.py │ ├── inception_resnet_v2.py │ ├── inception_resnet_v2_test.py │ ├── inception_utils.py │ ├── inception_v1.py │ ├── inception_v1_test.py │ ├── inception_v2.py │ ├── inception_v2_test.py │ ├── inception_v3.py │ ├── inception_v3_test.py │ ├── inception_v4.py │ ├── inception_v4_test.py │ ├── lenet.py │ ├── mobilenet_v1.md │ ├── mobilenet_v1.png │ ├── mobilenet_v1.py │ ├── mobilenet_v1_test.py │ ├── nets_factory.py │ ├── nets_factory_test.py │ ├── overfeat.py │ ├── overfeat_test.py │ ├── resnet_utils.py │ ├── resnet_v1.py │ ├── resnet_v1_test.py │ ├── resnet_v2.py │ ├── resnet_v2_test.py │ ├── vgg.py │ └── vgg_test.py ├── preprocessing │ ├── __init__.py │ ├── cifarnet_preprocessing.py │ ├── inception_preprocessing.py │ ├── lenet_preprocessing.py │ ├── preprocessing_factory.py │ └── vgg_preprocessing.py ├── scripts │ ├── finetune_inception_v1_on_flowers.sh │ ├── finetune_inception_v3_on_flowers.sh │ ├── finetune_resnet_v1_50_on_flowers.sh │ ├── train_cifarnet_on_cifar10.sh │ └── train_lenet_on_mnist.sh ├── setup.py ├── slim_walkthrough.ipynb └── train_image_classifier.py └── text_model ├── __init__.py ├── text_embedding.py └── text_preprocessing.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/README.md -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/convert_images_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/datasets/convert_images_tfrecords.py -------------------------------------------------------------------------------- /datasets/convert_to_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/datasets/convert_to_dataset.py -------------------------------------------------------------------------------- /datasets/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/datasets/dataset_utils.py -------------------------------------------------------------------------------- /datasets/download_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/datasets/download_images.py -------------------------------------------------------------------------------- /datasets/tumblr_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/datasets/tumblr_extraction.py -------------------------------------------------------------------------------- /image_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_model/im_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/image_model/im_model.py -------------------------------------------------------------------------------- /image_model/inception_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/image_model/inception_v1.py -------------------------------------------------------------------------------- /image_text_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image_text_model/im_text_rnn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/image_text_model/im_text_rnn_model.py -------------------------------------------------------------------------------- /parallel_computing/job_array_correlation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_array_correlation.sh -------------------------------------------------------------------------------- /parallel_computing/job_array_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_array_download.sh -------------------------------------------------------------------------------- /parallel_computing/job_array_evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_array_evaluate.sh -------------------------------------------------------------------------------- /parallel_computing/job_array_oasis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_array_oasis.sh -------------------------------------------------------------------------------- /parallel_computing/job_array_outliers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_array_outliers.sh -------------------------------------------------------------------------------- /parallel_computing/job_array_tfrecords.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_array_tfrecords.sh -------------------------------------------------------------------------------- /parallel_computing/job_array_top_words.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_array_top_words.sh -------------------------------------------------------------------------------- /parallel_computing/job_array_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_array_train.sh -------------------------------------------------------------------------------- /parallel_computing/job_array_week.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_array_week.sh -------------------------------------------------------------------------------- /parallel_computing/job_correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_correlation.py -------------------------------------------------------------------------------- /parallel_computing/job_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_download.py -------------------------------------------------------------------------------- /parallel_computing/job_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_evaluate.py -------------------------------------------------------------------------------- /parallel_computing/job_oasis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_oasis.py -------------------------------------------------------------------------------- /parallel_computing/job_outliers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_outliers.py -------------------------------------------------------------------------------- /parallel_computing/job_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_tfrecords.py -------------------------------------------------------------------------------- /parallel_computing/job_top_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_top_words.py -------------------------------------------------------------------------------- /parallel_computing/job_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_train.py -------------------------------------------------------------------------------- /parallel_computing/job_week.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/parallel_computing/job_week.py -------------------------------------------------------------------------------- /slim/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/BUILD -------------------------------------------------------------------------------- /slim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/README.md -------------------------------------------------------------------------------- /slim/WORKSPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /slim/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /slim/datasets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /slim/datasets/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/datasets/cifar10.py -------------------------------------------------------------------------------- /slim/datasets/dataset_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/datasets/dataset_factory.py -------------------------------------------------------------------------------- /slim/datasets/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/datasets/dataset_utils.py -------------------------------------------------------------------------------- /slim/datasets/download_and_convert_cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/datasets/download_and_convert_cifar10.py -------------------------------------------------------------------------------- /slim/datasets/download_and_convert_flowers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/datasets/download_and_convert_flowers.py -------------------------------------------------------------------------------- /slim/datasets/download_and_convert_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/datasets/download_and_convert_mnist.py -------------------------------------------------------------------------------- /slim/datasets/flowers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/datasets/flowers.py -------------------------------------------------------------------------------- /slim/datasets/imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/datasets/imagenet.py -------------------------------------------------------------------------------- /slim/datasets/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/datasets/mnist.py -------------------------------------------------------------------------------- /slim/deployment/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /slim/deployment/model_deploy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/deployment/model_deploy.py -------------------------------------------------------------------------------- /slim/deployment/model_deploy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/deployment/model_deploy_test.py -------------------------------------------------------------------------------- /slim/download_and_convert_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/download_and_convert_data.py -------------------------------------------------------------------------------- /slim/eval_image_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/eval_image_classifier.py -------------------------------------------------------------------------------- /slim/export_inference_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/export_inference_graph.py -------------------------------------------------------------------------------- /slim/export_inference_graph_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/export_inference_graph_test.py -------------------------------------------------------------------------------- /slim/nets/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /slim/nets/alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/alexnet.py -------------------------------------------------------------------------------- /slim/nets/alexnet_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/alexnet_test.py -------------------------------------------------------------------------------- /slim/nets/cifarnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/cifarnet.py -------------------------------------------------------------------------------- /slim/nets/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception.py -------------------------------------------------------------------------------- /slim/nets/inception_resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_resnet_v2.py -------------------------------------------------------------------------------- /slim/nets/inception_resnet_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_resnet_v2_test.py -------------------------------------------------------------------------------- /slim/nets/inception_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_utils.py -------------------------------------------------------------------------------- /slim/nets/inception_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_v1.py -------------------------------------------------------------------------------- /slim/nets/inception_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_v1_test.py -------------------------------------------------------------------------------- /slim/nets/inception_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_v2.py -------------------------------------------------------------------------------- /slim/nets/inception_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_v2_test.py -------------------------------------------------------------------------------- /slim/nets/inception_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_v3.py -------------------------------------------------------------------------------- /slim/nets/inception_v3_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_v3_test.py -------------------------------------------------------------------------------- /slim/nets/inception_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_v4.py -------------------------------------------------------------------------------- /slim/nets/inception_v4_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/inception_v4_test.py -------------------------------------------------------------------------------- /slim/nets/lenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/lenet.py -------------------------------------------------------------------------------- /slim/nets/mobilenet_v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/mobilenet_v1.md -------------------------------------------------------------------------------- /slim/nets/mobilenet_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/mobilenet_v1.png -------------------------------------------------------------------------------- /slim/nets/mobilenet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/mobilenet_v1.py -------------------------------------------------------------------------------- /slim/nets/mobilenet_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/mobilenet_v1_test.py -------------------------------------------------------------------------------- /slim/nets/nets_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/nets_factory.py -------------------------------------------------------------------------------- /slim/nets/nets_factory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/nets_factory_test.py -------------------------------------------------------------------------------- /slim/nets/overfeat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/overfeat.py -------------------------------------------------------------------------------- /slim/nets/overfeat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/overfeat_test.py -------------------------------------------------------------------------------- /slim/nets/resnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/resnet_utils.py -------------------------------------------------------------------------------- /slim/nets/resnet_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/resnet_v1.py -------------------------------------------------------------------------------- /slim/nets/resnet_v1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/resnet_v1_test.py -------------------------------------------------------------------------------- /slim/nets/resnet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/resnet_v2.py -------------------------------------------------------------------------------- /slim/nets/resnet_v2_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/resnet_v2_test.py -------------------------------------------------------------------------------- /slim/nets/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/vgg.py -------------------------------------------------------------------------------- /slim/nets/vgg_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/nets/vgg_test.py -------------------------------------------------------------------------------- /slim/preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /slim/preprocessing/cifarnet_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/preprocessing/cifarnet_preprocessing.py -------------------------------------------------------------------------------- /slim/preprocessing/inception_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/preprocessing/inception_preprocessing.py -------------------------------------------------------------------------------- /slim/preprocessing/lenet_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/preprocessing/lenet_preprocessing.py -------------------------------------------------------------------------------- /slim/preprocessing/preprocessing_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/preprocessing/preprocessing_factory.py -------------------------------------------------------------------------------- /slim/preprocessing/vgg_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/preprocessing/vgg_preprocessing.py -------------------------------------------------------------------------------- /slim/scripts/finetune_inception_v1_on_flowers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/scripts/finetune_inception_v1_on_flowers.sh -------------------------------------------------------------------------------- /slim/scripts/finetune_inception_v3_on_flowers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/scripts/finetune_inception_v3_on_flowers.sh -------------------------------------------------------------------------------- /slim/scripts/finetune_resnet_v1_50_on_flowers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/scripts/finetune_resnet_v1_50_on_flowers.sh -------------------------------------------------------------------------------- /slim/scripts/train_cifarnet_on_cifar10.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/scripts/train_cifarnet_on_cifar10.sh -------------------------------------------------------------------------------- /slim/scripts/train_lenet_on_mnist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/scripts/train_lenet_on_mnist.sh -------------------------------------------------------------------------------- /slim/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/setup.py -------------------------------------------------------------------------------- /slim/slim_walkthrough.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/slim_walkthrough.ipynb -------------------------------------------------------------------------------- /slim/train_image_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/slim/train_image_classifier.py -------------------------------------------------------------------------------- /text_model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /text_model/text_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/text_model/text_embedding.py -------------------------------------------------------------------------------- /text_model/text_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anthonyhu/tumblr-emotions/HEAD/text_model/text_preprocessing.py --------------------------------------------------------------------------------