gitextract_2g5lvqpj/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_report.md │ │ ├── Feature_request.md │ │ └── custom.md │ └── workflows/ │ └── label.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEEP LEARNING/ │ ├── Autoencoders GANS/ │ │ ├── GAN-for-tabular-data/ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ctgan/ │ │ │ │ ├── README.MD │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── conditional.py │ │ │ │ ├── data.py │ │ │ │ ├── demo.py │ │ │ │ ├── models.py │ │ │ │ ├── sampler.py │ │ │ │ ├── synthesizer.py │ │ │ │ └── transformer.py │ │ │ ├── encoders.py │ │ │ ├── model.py │ │ │ ├── results/ │ │ │ │ └── fit_predict_scores.txt │ │ │ ├── run_experiment.py │ │ │ └── utils.py │ │ └── pytorch/ │ │ ├── CGAN/ │ │ │ └── ConditionalGAN.py │ │ ├── DCGAN/ │ │ │ └── dcgan.py │ │ ├── ProgressiveGAN/ │ │ │ ├── README.md │ │ │ ├── progan_modules.py │ │ │ └── train.py │ │ ├── Semi-supervised GAN/ │ │ │ ├── Datasets.py │ │ │ ├── ImprovedGAN.py │ │ │ ├── Nets.py │ │ │ ├── README.md │ │ │ └── functional.py │ │ └── VAE/ │ │ └── VAR mnist.py │ ├── Google Landmark Retrieval Challenge.py │ ├── Kaggle Avito Demand Prediction Challenge/ │ │ ├── README.MD │ │ ├── image feat. extraction/ │ │ │ ├── avito_deepIQA/ │ │ │ │ └── deepIQA/ │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── evaluate.py │ │ │ │ ├── evaluate_back.py │ │ │ │ ├── fr_model.py │ │ │ │ └── nr_model.py │ │ │ ├── neural-image-assessment/ │ │ │ │ ├── README.md │ │ │ │ ├── evaluate_inception_resnet.py │ │ │ │ ├── evaluate_mobilenet.py │ │ │ │ ├── evaluate_nasnet.py │ │ │ │ └── utils/ │ │ │ │ ├── check_dataset.py │ │ │ │ ├── data_loader.py │ │ │ │ ├── nasnet.py │ │ │ │ └── score_utils.py │ │ │ └── nn_image_features.py │ │ ├── stem to SVD.py │ │ └── text embeddings.py │ ├── NLP/ │ │ ├── Kaggle Quora Insincere Questions Classification/ │ │ │ ├── 3rd-place.py │ │ │ ├── README.MD │ │ │ └── fix misspellings.py │ │ ├── LSTM RNN/ │ │ │ ├── Next Chars pytorch/ │ │ │ │ ├── Char level RNN/ │ │ │ │ │ └── data/ │ │ │ │ │ └── anna.txt │ │ │ │ └── project-tv-script-generation/ │ │ │ │ ├── data/ │ │ │ │ │ └── Seinfeld_Scripts.txt │ │ │ │ ├── helper.py │ │ │ │ └── problem_unittests.py │ │ │ └── Sentiment pytorch/ │ │ │ ├── labels.txt │ │ │ └── reviews.txt │ │ ├── WSDM - Fake News Classification/ │ │ │ └── Berd generate embeddings/ │ │ │ ├── 0_bert_encode_en_train.py │ │ │ ├── 1_bert_encode_en_test.py │ │ │ ├── 2_bert_encode_ch_train.py │ │ │ ├── 3_bert_encode_ch_test.py │ │ │ └── 4_gen_encoded_dfs.py │ │ ├── elmo EMBEDDINGS/ │ │ │ └── Sentence encode.html │ │ └── text analyses/ │ │ └── Logistic regression with words and char n-grams.py │ ├── Object detection/ │ │ ├── YOLO Object Localization Keras/ │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── font/ │ │ │ │ ├── FiraMono-Medium.otf │ │ │ │ └── SIL Open Font License.txt │ │ │ ├── model_data/ │ │ │ │ ├── coco_classes.txt │ │ │ │ ├── object_classes.txt │ │ │ │ └── yolo_anchors.txt │ │ │ ├── requirements.txt │ │ │ ├── yad2k/ │ │ │ │ └── utils/ │ │ │ │ ├── __init__.py │ │ │ │ └── utils.py │ │ │ ├── yolo_run.py │ │ │ └── yolo_utils.py │ │ └── keras retinanet/ │ │ └── train.py │ ├── Pytorch from scratch/ │ │ ├── CNN/ │ │ │ └── project-dog-classification/ │ │ │ ├── README.md │ │ │ └── haarcascades/ │ │ │ └── haarcascade_frontalface_alt.xml │ │ ├── MLP/ │ │ │ ├── fc_model.py │ │ │ └── helper.py │ │ ├── TODO/ │ │ │ └── GAN/ │ │ │ ├── cycle-gan/ │ │ │ │ ├── helpers.py │ │ │ │ └── samples_cyclegan/ │ │ │ │ └── samples_dir.txt │ │ │ └── project-face-generation/ │ │ │ └── problem_unittests.py │ │ └── word2vec-embeddings/ │ │ ├── data/ │ │ │ └── download_data.txt │ │ └── utils.py │ └── segmentation/ │ ├── Kaggle TGS Salt Identification Challenge/ │ │ ├── README.MD │ │ ├── v1/ │ │ │ ├── data_loader.py │ │ │ ├── data_process/ │ │ │ │ ├── 10fold/ │ │ │ │ │ └── test.txt │ │ │ │ └── transform.py │ │ │ ├── evaluate.py │ │ │ ├── loss/ │ │ │ │ ├── __init__.py │ │ │ │ ├── bce_losses.py │ │ │ │ ├── cyclic_lr.py │ │ │ │ └── lovasz_losses.py │ │ │ ├── main.py │ │ │ ├── model/ │ │ │ │ ├── __init__.py │ │ │ │ ├── ibnnet.py │ │ │ │ ├── model.py │ │ │ │ └── senet.py │ │ │ └── utils.py │ │ ├── v2/ │ │ │ ├── common_blocks/ │ │ │ │ ├── augmentation.py │ │ │ │ ├── callbacks.py │ │ │ │ ├── loaders.py │ │ │ │ ├── metrics.py │ │ │ │ ├── models.py │ │ │ │ ├── pipelines.py │ │ │ │ ├── pnasnet.py │ │ │ │ ├── postprocessing.py │ │ │ │ ├── preprocessing.py │ │ │ │ ├── resnext.py │ │ │ │ ├── unet_models.py │ │ │ │ └── utils.py │ │ │ ├── configs/ │ │ │ │ └── neptune.yaml │ │ │ ├── modules/ │ │ │ │ ├── __init__.py │ │ │ │ ├── bn.py │ │ │ │ ├── build.py │ │ │ │ ├── build.sh │ │ │ │ ├── functions.py │ │ │ │ ├── misc.py │ │ │ │ ├── residual.py │ │ │ │ ├── src/ │ │ │ │ │ ├── common.h │ │ │ │ │ ├── inplace_abn.cpp │ │ │ │ │ ├── inplace_abn.h │ │ │ │ │ ├── inplace_abn_cpu.cpp │ │ │ │ │ └── inplace_abn_cuda.cu │ │ │ │ └── wider_resnet.py │ │ │ └── results.ods │ │ └── vanilla unet/ │ │ └── utils/ │ │ ├── cyclelr_callback.py │ │ ├── lovasz_losses_tf.py │ │ └── zf_unet_224_model.py │ ├── Segmentation pipeline/ │ │ ├── README.MD │ │ ├── get dataset.py │ │ ├── segmentation pipeline.html │ │ ├── segmentation pipeline.py │ │ └── weights/ │ │ └── .gitkeep │ ├── Severstal-Steel-Defect-Detection-master/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── classification_pytorch_dummy.py │ │ ├── common_blocks/ │ │ │ ├── __init__.py │ │ │ ├── bam.py │ │ │ ├── cbam.py │ │ │ ├── dataloader.py │ │ │ ├── generate_folds.py │ │ │ ├── logger.py │ │ │ ├── losses.py │ │ │ ├── lovasz_losses.py │ │ │ ├── metric.py │ │ │ ├── new_metrics.py │ │ │ ├── optimizers.py │ │ │ ├── training_helper.py │ │ │ └── utils.py │ │ ├── configs/ │ │ │ ├── __init__.py │ │ │ └── train_params.py │ │ ├── inference.py │ │ ├── model_resnet.py │ │ └── train.py │ └── Understanding-Clouds-from-Satellite-Images-master/ │ ├── .gitattributes │ ├── .gitignore │ ├── README.md │ ├── augs.py │ ├── callbacks.py │ ├── config.py │ ├── dataset.py │ ├── inference_blend.py │ ├── losses/ │ │ ├── losses.py │ │ └── lovasz_losses.py │ ├── optimizers.py │ ├── predict.py │ ├── schedulers.py │ ├── train.py │ ├── train.sh │ └── utils.py ├── LICENSE ├── README.md ├── _config.yml ├── classification/ │ ├── Kaggle Home Credit Default Risk/ │ │ └── README.MD │ ├── Kaggle Malware Prediction/ │ │ ├── README.MD │ │ ├── kaggle.py │ │ ├── models.py │ │ ├── models_zoo.py │ │ ├── oof_preds_level_1/ │ │ │ └── readme.md │ │ ├── target_encoding.py │ │ ├── test_preds_level_1/ │ │ │ └── readme.md │ │ └── test_preds_level_2/ │ │ └── readme.md │ ├── Kaggle Petfinder/ │ │ ├── 8th-place-solution-code.py │ │ └── README.MD │ └── Kaggle red hat user/ │ └── README.MD ├── deployment/ │ ├── docker flask fit predict/ │ │ ├── Dockerfile │ │ ├── README.MD │ │ ├── docker-compose.yml │ │ ├── hello.py │ │ ├── templates/ │ │ │ └── submit.html │ │ └── train_model.py │ └── ds docker db template/ │ ├── README.md │ ├── docker/ │ │ ├── jupyter/ │ │ │ ├── Dockerfile │ │ │ └── requirements.txt │ │ └── postgres/ │ │ ├── Dockerfile │ │ └── initdb.sql │ └── docker-compose.yml ├── general studies/ │ ├── finetune gbm.md │ ├── finetune xgb.md │ └── get feature importance.py ├── images/ │ └── road-detection ├── recommendations/ │ └── ods_course/ │ ├── README.md │ ├── competition/ │ │ ├── requirements.txt │ │ └── tools.py │ ├── lecture_2/ │ │ └── requirements.txt │ ├── lecture_4/ │ │ ├── Dockerfile │ │ ├── Readme.md │ │ ├── ann/ │ │ │ ├── __init__.py │ │ │ └── recommender.py │ │ ├── config/ │ │ │ ├── __init__.py │ │ │ ├── config.py │ │ │ └── config.yaml │ │ ├── main.py │ │ └── pyproject.toml │ └── lecture_5/ │ ├── README.md │ ├── requirements.txt │ └── tools.py ├── regression/ │ └── kaggle santander value prediction/ │ └── README.md └── time series regression/ ├── ARIMA/ │ ├── AR.py │ ├── ARIMA.py │ ├── ARMA.py │ ├── ARMA_IBMstock.py │ └── MA.py ├── Data Files/ │ ├── DJIA_Jan2016_Dec2016.xlsx │ ├── Data Files │ ├── Monthly_CO2_Concentrations.xlsx │ ├── World Bank Mobile Phone Statistics.xlsx │ ├── inflation-consumer-prices-annual.xlsx │ └── mean-daily-temperature-fisher-river.xlsx ├── anomaly detection/ │ ├── README.md │ ├── anomaly-detection-using-facebook-s-prophet.py │ └── sunspots.txt └── autocorelation, mov avg etc/ ├── decomposition.py ├── doubleExponentialSmoothing.py ├── simpleExponentialSmoothing.py └── tripleExponentialSmoothing.py