File size: 601 Bytes
1775293 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
# MLflow-project-template
MLflow project template
## STEPS -
### STEP 01- Create a repository by using template repository
### STEP 02- Clone the new repository
### STEP 03- Create a conda environment after opening the repository in VSCODE
```bash
conda create --prefix ./env python=3.7 -y
```
```bash
conda activate ./env
```
OR
```bash
source activate ./env
```
### STEP 04- install the requirements
```bash
pip install -r requirements.txt
```
### STEP 05 - Create conda.yaml file -
```bash
conda env export > conda.yaml
```
### STEP 06- commit and push the changes to the remote repository |