Repository for the advanced machine learning course
- Dataset - ChatGPT Tweets first month of launch
- Create virtual environment
python -m venv env
OR create a conda environment with pip installedconda create -n aml pip
- Activate venv
env/Scripts/activate
OR activate condaconda activate aml
- Install python requirements
pip install -r requirements.txt
- Go to your kaggle settings, scroll down to API and create a new API Token. This will download a
kaggle.json
file - If you are on a Unix system save this token at
~/.kaggle/kaggle.json
, if you are on WindowsC:\Users\<win_username>\.kaggle\kaggle.json
- Activate the environment if not already activated
env/Scripts/activate
ORconda activate aml
- Go to src folder
cd src
- Run
python data_loader.py
After installing or deleting pip packages make sure you add them to the requirements file by running pip freeze > requirements.txt
in the project's root folder