├── .gitignore ├── LICENSE ├── README.md ├── images └── fastai_mobile │ ├── Android_NDK_external_build_cmake_c_plus_plus.png │ ├── Android_Studio_ClassifyCamera_Java_predict_protobuf.png │ ├── Android_Studio_SDK_Manager_Install_CMake.png │ ├── Android_Studio_cmake_libCaffe2.png │ └── onnx_installation_error_1.png ├── notebooks ├── deep_learning │ ├── ULMFiT │ │ ├── README.md │ │ ├── malay_language_model.ipynb │ │ ├── malay_text_classification.ipynb │ │ └── prep_wiki_data.sh │ ├── deep_painterly_harmonization │ │ └── harmonization.ipynb │ ├── fastai_mobile │ │ ├── README.md │ │ ├── onnx_from_pytorch_to_caffe2.ipynb │ │ ├── shipping_resnet18_from_pytorch_to_android.ipynb │ │ └── shipping_squeezenet_from_pytorch_to_android.ipynb │ └── language_models │ │ └── transformer │ │ └── Flan-UL2-inference-demo.ipynb ├── index.ipynb ├── kaggle │ └── .gitkeep ├── keras │ └── .gitkeep ├── machine_learning │ ├── coursera │ │ └── .gitkeep │ └── fastai │ │ └── .gitkeep ├── matplotlib │ └── .gitkeep ├── numpy │ └── .gitkeep ├── pandas │ └── .gitkeep ├── pytorch │ └── .gitkeep └── tensorflow │ └── google_cloud_tpu │ └── guide_to_tensorflow_keras_on_tpu_mnist.ipynb └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /images/fastai_mobile/Android_NDK_external_build_cmake_c_plus_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/images/fastai_mobile/Android_NDK_external_build_cmake_c_plus_plus.png -------------------------------------------------------------------------------- /images/fastai_mobile/Android_Studio_ClassifyCamera_Java_predict_protobuf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/images/fastai_mobile/Android_Studio_ClassifyCamera_Java_predict_protobuf.png -------------------------------------------------------------------------------- /images/fastai_mobile/Android_Studio_SDK_Manager_Install_CMake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/images/fastai_mobile/Android_Studio_SDK_Manager_Install_CMake.png -------------------------------------------------------------------------------- /images/fastai_mobile/Android_Studio_cmake_libCaffe2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/images/fastai_mobile/Android_Studio_cmake_libCaffe2.png -------------------------------------------------------------------------------- /images/fastai_mobile/onnx_installation_error_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/images/fastai_mobile/onnx_installation_error_1.png -------------------------------------------------------------------------------- /notebooks/deep_learning/ULMFiT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/deep_learning/ULMFiT/README.md -------------------------------------------------------------------------------- /notebooks/deep_learning/ULMFiT/malay_language_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/deep_learning/ULMFiT/malay_language_model.ipynb -------------------------------------------------------------------------------- /notebooks/deep_learning/ULMFiT/malay_text_classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/deep_learning/ULMFiT/malay_text_classification.ipynb -------------------------------------------------------------------------------- /notebooks/deep_learning/ULMFiT/prep_wiki_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/deep_learning/ULMFiT/prep_wiki_data.sh -------------------------------------------------------------------------------- /notebooks/deep_learning/deep_painterly_harmonization/harmonization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/deep_learning/deep_painterly_harmonization/harmonization.ipynb -------------------------------------------------------------------------------- /notebooks/deep_learning/fastai_mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/deep_learning/fastai_mobile/README.md -------------------------------------------------------------------------------- /notebooks/deep_learning/fastai_mobile/onnx_from_pytorch_to_caffe2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/deep_learning/fastai_mobile/onnx_from_pytorch_to_caffe2.ipynb -------------------------------------------------------------------------------- /notebooks/deep_learning/fastai_mobile/shipping_resnet18_from_pytorch_to_android.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/deep_learning/fastai_mobile/shipping_resnet18_from_pytorch_to_android.ipynb -------------------------------------------------------------------------------- /notebooks/deep_learning/fastai_mobile/shipping_squeezenet_from_pytorch_to_android.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/deep_learning/fastai_mobile/shipping_squeezenet_from_pytorch_to_android.ipynb -------------------------------------------------------------------------------- /notebooks/deep_learning/language_models/transformer/Flan-UL2-inference-demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/deep_learning/language_models/transformer/Flan-UL2-inference-demo.ipynb -------------------------------------------------------------------------------- /notebooks/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/index.ipynb -------------------------------------------------------------------------------- /notebooks/kaggle/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/keras/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/machine_learning/coursera/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/machine_learning/fastai/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/matplotlib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/numpy/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/pandas/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/pytorch/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notebooks/tensorflow/google_cloud_tpu/guide_to_tensorflow_keras_on_tpu_mnist.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cedrickchee/data-science-notebooks/HEAD/notebooks/tensorflow/google_cloud_tpu/guide_to_tensorflow_keras_on_tpu_mnist.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------