├── Airflow ETL Pipeline ├── etl_get_mongo_data.py ├── etl_mongo.py ├── holiday_ETL_DAG.py └── readme.py ├── Augmented_Relaity_shopping_App ├── Assembly-CSharp-Editor.csproj ├── Assembly-CSharp.csproj ├── Read_me ├── hack_1.sln ├── hack_1.userprefs └── hack_practice.apk ├── Cloud_Based_Car_Parking_System └── demo.py ├── Disease_Detection_Coconut_PLantation_Transfer_Learning ├── Convolution_Neural_Networks.py ├── ImageML.html ├── Image_Resolution_code.py ├── InceptionV3_Imagenet.py ├── K_Means_Segmentation.py ├── Mobilenet_imagenet1.py ├── NasNetMobile_imagenet.py ├── Thresholding_Segmentation.py ├── Watershed_Segmentation.py ├── Xception_Imagenet.py ├── first_try_Kmeans.h5 ├── readme.py ├── style.css ├── test_my_model_coco.py └── vgg19_imagenet.py ├── Emotion_Detection_CNN ├── ReadMe.txt ├── dummy.txt ├── emo_cnn_1.py ├── gpu_test.py ├── predict_trial_1.py └── sad_1.JPG ├── Face_mask_MTCNN ├── main_code.py ├── mtcnn_open_cv_date_time.py └── readme.py ├── GANs_for_image_generation ├── GANs_main_Code.py ├── Project_Report_GANS_for_image_generation.pdf ├── fake_samples_epoch_000.png ├── fake_samples_epoch_001.png ├── fake_samples_epoch_002.png ├── fake_samples_epoch_003.png ├── fake_samples_epoch_004.png ├── fake_samples_epoch_005.png ├── fake_samples_epoch_006.png ├── fake_samples_epoch_007.png ├── fake_samples_epoch_008.png ├── fake_samples_epoch_009.png ├── fake_samples_epoch_010.png ├── plain.py └── real_samples.png ├── IPL_Score_Predictor_ML ├── First Innings Score Prediction - IPL.py ├── Procfile ├── app.py ├── first-innings-score-lr-model.pkl ├── first_innings_score_pred_LR.pkl ├── ipl.csv ├── readme.py ├── readme_resources │ ├── application-error-heroku.png │ └── ipl-first-innings-score-web-app.gif ├── requirements.txt ├── static │ ├── csk1.png │ ├── dc1.png │ ├── ground.jpg │ ├── ground1.jfif │ ├── ground2.jpeg │ ├── ground3.jpg │ ├── ground4.jpg │ ├── ground5.jpg │ ├── ipl-favicon.ico │ ├── iplbanner1.png │ ├── iplbanner2.png │ ├── iplbanner3.png │ ├── iplimg1.jpg │ ├── iplimg2.jpg │ ├── kkr1.png │ ├── kxip1.png │ ├── mi1.png │ ├── rcb1.png │ ├── rr1.png │ ├── srh1.png │ └── styles.css └── templates │ ├── index2.html │ └── result2.html ├── Pitt_Nivesh_Stock_Investment_Portal ├── README.md ├── add_stock_info_to_db.py ├── db_test_1.py ├── readme.md ├── static │ ├── css │ │ ├── landing-page.css │ │ └── landing-page.min.css │ ├── img │ │ ├── bg-masthead.jpg │ │ ├── bg-showcase-1.jpg │ │ ├── bg-showcase-2.jpg │ │ ├── bg-showcase-3.jpg │ │ ├── testimonials-1.jpg │ │ ├── testimonials-2.jpg │ │ └── testimonials-3.jpg │ ├── pitt_nivesh.jpg │ ├── pitt_nivesh_1.jpg │ ├── readme.py │ ├── scss │ │ ├── _call-to-action.scss │ │ ├── _footer.scss │ │ ├── _global.scss │ │ ├── _icons.scss │ │ ├── _masthead.scss │ │ ├── _mixins.scss │ │ ├── _showcase.scss │ │ ├── _testimonials.scss │ │ ├── _variables.scss │ │ └── landing-page.scss │ └── vendor │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.map │ │ ├── fontawesome-free │ │ ├── css │ │ │ ├── all.css │ │ │ ├── all.min.css │ │ │ ├── brands.css │ │ │ ├── brands.min.css │ │ │ ├── fontawesome.css │ │ │ ├── fontawesome.min.css │ │ │ ├── regular.css │ │ │ ├── regular.min.css │ │ │ ├── solid.css │ │ │ ├── solid.min.css │ │ │ ├── svg-with-js.css │ │ │ ├── svg-with-js.min.css │ │ │ ├── v4-shims.css │ │ │ └── v4-shims.min.css │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ │ ├── jquery │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── jquery.slim.js │ │ ├── jquery.slim.min.js │ │ └── jquery.slim.min.map │ │ └── simple-line-icons │ │ ├── css │ │ └── simple-line-icons.css │ │ └── fonts │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ └── Simple-Line-Icons.woff2 ├── templates │ ├── buy_stock.html │ ├── buy_stocks_collab.html │ ├── collab.html │ ├── friend.html │ ├── index.html │ ├── index2.html │ ├── investedstock.html │ ├── login_auth.html │ ├── pitt_nivesh.jpg │ ├── pitt_nivesh_1.jpg │ ├── pitt_nivesh_home.html │ ├── readme.py │ ├── stocks.html │ ├── thank_you.html │ ├── transaction.html │ ├── user_profile_page.html │ └── user_registration.html └── test_app.py ├── Rice_Disease_CNN ├── Main_Code.py └── Read_me └── Voice_Recognition_System_MATLAB ├── README.md ├── data ├── s1.wav ├── s2.wav ├── s3.wav ├── s4.wav ├── s5.wav ├── s6.wav ├── s7.wav ├── test │ ├── readm.txt │ ├── s1.wav │ ├── s2.wav │ ├── s3.wav │ ├── s4.wav │ ├── s5.wav │ ├── s6.wav │ └── s7.wav └── train ├── distance.m ├── file1 ├── melFilterBank.m ├── mfcc.m ├── test.m ├── train.m └── vqCodeBook.m /Airflow ETL Pipeline/etl_get_mongo_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Airflow ETL Pipeline/etl_get_mongo_data.py -------------------------------------------------------------------------------- /Airflow ETL Pipeline/etl_mongo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Airflow ETL Pipeline/etl_mongo.py -------------------------------------------------------------------------------- /Airflow ETL Pipeline/holiday_ETL_DAG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Airflow ETL Pipeline/holiday_ETL_DAG.py -------------------------------------------------------------------------------- /Airflow ETL Pipeline/readme.py: -------------------------------------------------------------------------------- 1 | #ETL 2 | -------------------------------------------------------------------------------- /Augmented_Relaity_shopping_App/Assembly-CSharp-Editor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Augmented_Relaity_shopping_App/Assembly-CSharp-Editor.csproj -------------------------------------------------------------------------------- /Augmented_Relaity_shopping_App/Assembly-CSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Augmented_Relaity_shopping_App/Assembly-CSharp.csproj -------------------------------------------------------------------------------- /Augmented_Relaity_shopping_App/Read_me: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Augmented_Relaity_shopping_App/hack_1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Augmented_Relaity_shopping_App/hack_1.sln -------------------------------------------------------------------------------- /Augmented_Relaity_shopping_App/hack_1.userprefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Augmented_Relaity_shopping_App/hack_1.userprefs -------------------------------------------------------------------------------- /Augmented_Relaity_shopping_App/hack_practice.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Augmented_Relaity_shopping_App/hack_practice.apk -------------------------------------------------------------------------------- /Cloud_Based_Car_Parking_System/demo.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/Convolution_Neural_Networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/Convolution_Neural_Networks.py -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/ImageML.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/ImageML.html -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/Image_Resolution_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/Image_Resolution_code.py -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/InceptionV3_Imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/InceptionV3_Imagenet.py -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/K_Means_Segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/K_Means_Segmentation.py -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/Mobilenet_imagenet1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/Mobilenet_imagenet1.py -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/NasNetMobile_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/NasNetMobile_imagenet.py -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/Thresholding_Segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/Thresholding_Segmentation.py -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/Watershed_Segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/Watershed_Segmentation.py -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/Xception_Imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/Xception_Imagenet.py -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/first_try_Kmeans.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/first_try_Kmeans.h5 -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/readme.py: -------------------------------------------------------------------------------- 1 | CAPSTONE PROJECT DETAILS 2 | -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/style.css -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/test_my_model_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/test_my_model_coco.py -------------------------------------------------------------------------------- /Disease_Detection_Coconut_PLantation_Transfer_Learning/vgg19_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Disease_Detection_Coconut_PLantation_Transfer_Learning/vgg19_imagenet.py -------------------------------------------------------------------------------- /Emotion_Detection_CNN/ReadMe.txt: -------------------------------------------------------------------------------- 1 | The Dataset can be found at 2 | 3 | https://www.emotionlab.se/kdef/ 4 | -------------------------------------------------------------------------------- /Emotion_Detection_CNN/dummy.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Emotion_Detection_CNN/emo_cnn_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Emotion_Detection_CNN/emo_cnn_1.py -------------------------------------------------------------------------------- /Emotion_Detection_CNN/gpu_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Emotion_Detection_CNN/gpu_test.py -------------------------------------------------------------------------------- /Emotion_Detection_CNN/predict_trial_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Emotion_Detection_CNN/predict_trial_1.py -------------------------------------------------------------------------------- /Emotion_Detection_CNN/sad_1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Emotion_Detection_CNN/sad_1.JPG -------------------------------------------------------------------------------- /Face_mask_MTCNN/main_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Face_mask_MTCNN/main_code.py -------------------------------------------------------------------------------- /Face_mask_MTCNN/mtcnn_open_cv_date_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Face_mask_MTCNN/mtcnn_open_cv_date_time.py -------------------------------------------------------------------------------- /Face_mask_MTCNN/readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Face_mask_MTCNN/readme.py -------------------------------------------------------------------------------- /GANs_for_image_generation/GANs_main_Code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/GANs_main_Code.py -------------------------------------------------------------------------------- /GANs_for_image_generation/Project_Report_GANS_for_image_generation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/Project_Report_GANS_for_image_generation.pdf -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_000.png -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_001.png -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_002.png -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_003.png -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_004.png -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_005.png -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_006.png -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_007.png -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_008.png -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_009.png -------------------------------------------------------------------------------- /GANs_for_image_generation/fake_samples_epoch_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/fake_samples_epoch_010.png -------------------------------------------------------------------------------- /GANs_for_image_generation/plain.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GANs_for_image_generation/real_samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/GANs_for_image_generation/real_samples.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/First Innings Score Prediction - IPL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/First Innings Score Prediction - IPL.py -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app 2 | -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/app.py -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/first-innings-score-lr-model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/first-innings-score-lr-model.pkl -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/first_innings_score_pred_LR.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/first_innings_score_pred_LR.pkl -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/ipl.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/ipl.csv -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/readme.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/readme_resources/application-error-heroku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/readme_resources/application-error-heroku.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/readme_resources/ipl-first-innings-score-web-app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/readme_resources/ipl-first-innings-score-web-app.gif -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/requirements.txt -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/csk1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/csk1.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/dc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/dc1.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/ground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/ground.jpg -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/ground1.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/ground1.jfif -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/ground2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/ground2.jpeg -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/ground3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/ground3.jpg -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/ground4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/ground4.jpg -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/ground5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/ground5.jpg -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/ipl-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/ipl-favicon.ico -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/iplbanner1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/iplbanner1.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/iplbanner2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/iplbanner2.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/iplbanner3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/iplbanner3.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/iplimg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/iplimg1.jpg -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/iplimg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/iplimg2.jpg -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/kkr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/kkr1.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/kxip1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/kxip1.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/mi1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/mi1.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/rcb1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/rcb1.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/rr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/rr1.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/srh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/srh1.png -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/static/styles.css -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/templates/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/templates/index2.html -------------------------------------------------------------------------------- /IPL_Score_Predictor_ML/templates/result2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/IPL_Score_Predictor_ML/templates/result2.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/README.md: -------------------------------------------------------------------------------- 1 | # DBMS_PITT_PROJECT -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/add_stock_info_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/add_stock_info_to_db.py -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/db_test_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/db_test_1.py -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/css/landing-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/css/landing-page.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/css/landing-page.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/css/landing-page.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/img/bg-masthead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/img/bg-masthead.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/img/bg-showcase-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/img/bg-showcase-1.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/img/bg-showcase-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/img/bg-showcase-2.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/img/bg-showcase-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/img/bg-showcase-3.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/img/testimonials-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/img/testimonials-1.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/img/testimonials-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/img/testimonials-2.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/img/testimonials-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/img/testimonials-3.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/pitt_nivesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/pitt_nivesh.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/pitt_nivesh_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/pitt_nivesh_1.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/readme.py: -------------------------------------------------------------------------------- 1 | #READ ME 2 | -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/scss/_call-to-action.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/scss/_call-to-action.scss -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/scss/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/scss/_footer.scss -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/scss/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/scss/_global.scss -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/scss/_icons.scss -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/scss/_masthead.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/scss/_masthead.scss -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/scss/_mixins.scss -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/scss/_showcase.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/scss/_showcase.scss -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/scss/_testimonials.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/scss/_testimonials.scss -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/scss/_variables.scss -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/scss/landing-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/scss/landing-page.scss -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-grid.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.js.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/bootstrap/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/all.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/all.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/brands.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/brands.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/fontawesome.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/fontawesome.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/regular.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/regular.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/solid.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/solid.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/svg-with-js.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/svg-with-js.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/svg-with-js.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/svg-with-js.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/v4-shims.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/v4-shims.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/v4-shims.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/css/v4-shims.min.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/fontawesome-free/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.min.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.slim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.slim.js -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.slim.min.js -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.slim.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/jquery/jquery.slim.min.map -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/css/simple-line-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/css/simple-line-icons.css -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/static/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/buy_stock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/buy_stock.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/buy_stocks_collab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/buy_stocks_collab.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/collab.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/collab.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/friend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/friend.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/index.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/index2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/index2.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/investedstock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/investedstock.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/login_auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/login_auth.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/pitt_nivesh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/pitt_nivesh.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/pitt_nivesh_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/pitt_nivesh_1.jpg -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/pitt_nivesh_home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/pitt_nivesh_home.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/readme.py: -------------------------------------------------------------------------------- 1 | #README FILE 2 | -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/stocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/stocks.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/thank_you.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/thank_you.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/transaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/transaction.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/user_profile_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/user_profile_page.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/templates/user_registration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/templates/user_registration.html -------------------------------------------------------------------------------- /Pitt_Nivesh_Stock_Investment_Portal/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Pitt_Nivesh_Stock_Investment_Portal/test_app.py -------------------------------------------------------------------------------- /Rice_Disease_CNN/Main_Code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Rice_Disease_CNN/Main_Code.py -------------------------------------------------------------------------------- /Rice_Disease_CNN/Read_me: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/README.md -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/s1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/s1.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/s2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/s2.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/s3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/s3.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/s4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/s4.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/s5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/s5.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/s6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/s6.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/s7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/s7.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/test/readm.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/test/s1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/test/s1.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/test/s2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/test/s2.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/test/s3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/test/s3.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/test/s4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/test/s4.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/test/s5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/test/s5.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/test/s6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/test/s6.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/test/s7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/data/test/s7.wav -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/data/train: -------------------------------------------------------------------------------- 1 | df 2 | -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/distance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/distance.m -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/file1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/melFilterBank.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/melFilterBank.m -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/mfcc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/mfcc.m -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/test.m -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/train.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/train.m -------------------------------------------------------------------------------- /Voice_Recognition_System_MATLAB/vqCodeBook.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abhishekverma1997/TechSilo/HEAD/Voice_Recognition_System_MATLAB/vqCodeBook.m --------------------------------------------------------------------------------