├── .gitignore ├── LICENSE ├── README.md ├── Week 1 ├── 1. Learn Git and GitHub with add and management on github │ ├── Learning Git and GitHub.ipynb │ └── Readme.md ├── 2. Add your previous notebook on Kaggle │ └── README.md ├── 3. Fill Features Part Of LinkedIn (Add your GitHub, Kaggle, Resume[PDF], ...) │ └── Readme.md ├── 4. Search About Kaggle And NoteBook Part │ └── README.md └── 5. Learn Markdown Deeper │ ├── Comprehensive Markdown Commands.ipynb │ └── Readme.md ├── Week 2 ├── 1. Search about time series forecasting parameters and features │ ├── Readme.md │ └── intro-to-time-series-forecasting.ipynb ├── 2. Search about telegram API and features that we can get from that │ └── Readme.md ├── 3. Find python finance data collector libraries and make list for that │ └── Readme.md └── 4. Increase Your Connections on LinkedIn │ └── Readme.md ├── Week 3 ├── 1. Write LinkedIn post about Finance libraries and Pros and Cons │ └── Readme.md ├── 2. Analysis Data that extract from one of best libraries │ ├── Healthcare.ipynb │ └── Readme.md ├── 3. Try to extract telegram datas (Data Collection) │ └── Readme.md └── 4. Learn about Streamlit and Gradio Libraries │ └── Readme.md └── Week 4 ├── 1. Make the telegram bot that get us bitcoin price for specific time ├── BitCoin Bot.ipynb └── Readme.md ├── 2. Implement an ML algorithm for predict etherium coin ├── ETH_1H.csv ├── ETH_day.csv ├── Readme.md └── ethereum-price-prediction.ipynb └── 3. Try to make GUI for your algorithm with Gradio or streamlit └── Readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/README.md -------------------------------------------------------------------------------- /Week 1/1. Learn Git and GitHub with add and management on github/Learning Git and GitHub.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 1/1. Learn Git and GitHub with add and management on github/Learning Git and GitHub.ipynb -------------------------------------------------------------------------------- /Week 1/1. Learn Git and GitHub with add and management on github/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 1/1. Learn Git and GitHub with add and management on github/Readme.md -------------------------------------------------------------------------------- /Week 1/2. Add your previous notebook on Kaggle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 1/2. Add your previous notebook on Kaggle/README.md -------------------------------------------------------------------------------- /Week 1/3. Fill Features Part Of LinkedIn (Add your GitHub, Kaggle, Resume[PDF], ...)/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 1/3. Fill Features Part Of LinkedIn (Add your GitHub, Kaggle, Resume[PDF], ...)/Readme.md -------------------------------------------------------------------------------- /Week 1/4. Search About Kaggle And NoteBook Part/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 1/4. Search About Kaggle And NoteBook Part/README.md -------------------------------------------------------------------------------- /Week 1/5. Learn Markdown Deeper/Comprehensive Markdown Commands.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 1/5. Learn Markdown Deeper/Comprehensive Markdown Commands.ipynb -------------------------------------------------------------------------------- /Week 1/5. Learn Markdown Deeper/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 1/5. Learn Markdown Deeper/Readme.md -------------------------------------------------------------------------------- /Week 2/1. Search about time series forecasting parameters and features/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 2/1. Search about time series forecasting parameters and features/Readme.md -------------------------------------------------------------------------------- /Week 2/1. Search about time series forecasting parameters and features/intro-to-time-series-forecasting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 2/1. Search about time series forecasting parameters and features/intro-to-time-series-forecasting.ipynb -------------------------------------------------------------------------------- /Week 2/2. Search about telegram API and features that we can get from that/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 2/2. Search about telegram API and features that we can get from that/Readme.md -------------------------------------------------------------------------------- /Week 2/3. Find python finance data collector libraries and make list for that/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 2/3. Find python finance data collector libraries and make list for that/Readme.md -------------------------------------------------------------------------------- /Week 2/4. Increase Your Connections on LinkedIn/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 2/4. Increase Your Connections on LinkedIn/Readme.md -------------------------------------------------------------------------------- /Week 3/1. Write LinkedIn post about Finance libraries and Pros and Cons/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 3/1. Write LinkedIn post about Finance libraries and Pros and Cons/Readme.md -------------------------------------------------------------------------------- /Week 3/2. Analysis Data that extract from one of best libraries/Healthcare.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 3/2. Analysis Data that extract from one of best libraries/Healthcare.ipynb -------------------------------------------------------------------------------- /Week 3/2. Analysis Data that extract from one of best libraries/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 3/2. Analysis Data that extract from one of best libraries/Readme.md -------------------------------------------------------------------------------- /Week 3/3. Try to extract telegram datas (Data Collection)/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 3/3. Try to extract telegram datas (Data Collection)/Readme.md -------------------------------------------------------------------------------- /Week 3/4. Learn about Streamlit and Gradio Libraries/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 3/4. Learn about Streamlit and Gradio Libraries/Readme.md -------------------------------------------------------------------------------- /Week 4/1. Make the telegram bot that get us bitcoin price for specific time/BitCoin Bot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 4/1. Make the telegram bot that get us bitcoin price for specific time/BitCoin Bot.ipynb -------------------------------------------------------------------------------- /Week 4/1. Make the telegram bot that get us bitcoin price for specific time/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 4/1. Make the telegram bot that get us bitcoin price for specific time/Readme.md -------------------------------------------------------------------------------- /Week 4/2. Implement an ML algorithm for predict etherium coin/ETH_1H.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 4/2. Implement an ML algorithm for predict etherium coin/ETH_1H.csv -------------------------------------------------------------------------------- /Week 4/2. Implement an ML algorithm for predict etherium coin/ETH_day.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 4/2. Implement an ML algorithm for predict etherium coin/ETH_day.csv -------------------------------------------------------------------------------- /Week 4/2. Implement an ML algorithm for predict etherium coin/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 4/2. Implement an ML algorithm for predict etherium coin/Readme.md -------------------------------------------------------------------------------- /Week 4/2. Implement an ML algorithm for predict etherium coin/ethereum-price-prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 4/2. Implement an ML algorithm for predict etherium coin/ethereum-price-prediction.ipynb -------------------------------------------------------------------------------- /Week 4/3. Try to make GUI for your algorithm with Gradio or streamlit/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmiinGholami/MyInternship/HEAD/Week 4/3. Try to make GUI for your algorithm with Gradio or streamlit/Readme.md --------------------------------------------------------------------------------