Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update and fix #2

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# folders
# Environments
.venv

## IDEs
# IDEs
.idea
.vscode

## Python
venv*
__pycache__
.ipynb_checkpoints

## Project
data
# Mac OS
.DS_Store

# files
# Python
__pycache__

## Mac OS
.DS_Store
# Project
data/*
models/*
reports/*
39 changes: 7 additions & 32 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,42 +1,17 @@
# Tutorial: dvc-3-automate-experiments
# Tutorial: Automate DVC experiments

## 1. clone this repository
## 1. Create and activate virtual environment

```bash
git clone https://gitlab.com/7labs.ru/tutorials-dvc/dvc-3-automate-experiments.git
cd dvc-3-automate-experiments
```

## 2. Create and activate virtual environment

Install virtualenv in advance:
Create virtual environment

```bash
pip install virtualenv
python3 -m venv .venv
echo "export PYTHONPATH=$PWD" >> .venv/bin/activate
source .venv/bin/activate
```

Create virtual environment
```bash
virtualenv venv-dvc-3-automate-experiments
source venv-dvc-3-automate-experiments/bin/activate
```

## 3. Install python libraries (including dvc)
## 2. Install python libraries

```bash
pip install -r requirements.txt
```


## 4. Add Virtual Environment to Jupyter Notebook

```bash
python -m ipykernel install --user --name=venv-dvc-3-automate-experiments
```

## 5. Run and follow Jupyter Notebook `dvc-3-automate-experiments.ipynb` for instructions:

```bash
jupyter notebook
```

1 change: 1 addition & 0 deletions data/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
!.gitignore
Loading