Skip to content

Latest commit

 

History

History
72 lines (60 loc) · 973 Bytes

README.md

File metadata and controls

72 lines (60 loc) · 973 Bytes

"# ai4i2020-linear-regr-dvc-deploy for demo"

create env

conda create -n machineLearning python=3.7 -y

activate env

conda activate machineLearning

created a req file

install the req

pip install -r requirements.txt

download the data from

https://archive.ics.uci.edu/ml/machine-learning-databases/00601/ai4i2020.csv

git init
dvc init 
dvc add data_given/ai4i2020.csv
git add .
git commit -m "first commit"

oneliner updates for readme

git add . && git commit -m "update Readme.md"
git remote add origin https://github.com/Udaykiran87/ai4i2020-linear-regr-dvc-deploy.git
git branch -M main
git push origin main

tox command -

tox

for rebuilding -

tox -r 

pytest command

pytest -v

setup commands -

pip install -e . 

build your own package commands-

python setup.py sdist bdist_wheel