Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shubhamprajapati7748/complete-machine-learning
https://github.com/shubhamprajapati7748/complete-machine-learning
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/shubhamprajapati7748/complete-machine-learning
- Owner: shubhamprajapati7748
- Created: 2024-11-19T01:57:22.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-12-16T15:13:01.000Z (about 1 month ago)
- Last Synced: 2024-12-16T16:26:39.330Z (about 1 month ago)
- Language: Jupyter Notebook
- Size: 2.54 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Complete Machine Learning Algorithms
## Create the virtual environment and install dependencies
1. Create a Virtual Environment (Optional but recommended)
- It's a good practice to create a virtual environment to manage project dependencies. Run the following command:
```
conda create -p python== -y
```2. Activate the Virtual Environment (Optional)
- Activate the virtual environment based on your operating system:
```
conda activate
```3. Install Dependencies`
- Run the following command to install project dependencies:
```
pip install -r requirements.txt
```