Skip to content

Commit

Permalink
Merge pull request #1 from mlrepa/release-1
Browse files Browse the repository at this point in the history
Release 1
  • Loading branch information
mnrozhkov authored Oct 18, 2020
2 parents 7a8288d + 9e94813 commit 0e79074
Show file tree
Hide file tree
Showing 5 changed files with 145,473 additions and 21 deletions.
12 changes: 12 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# folders

## IDEs
.idea
.DS_Store

## Python
dvc-venv*
.ipynb_checkpoints
/sample_image.jpg
/datadir
/cats-dogs
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

49 changes: 49 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# Lesson 2 tutorial: Versioning Data and Model
**ML REPA School course**: Machine Learning experiments reproducibility and engineering with DVC

## 1. Clone this repository

```bash
git clone https://github.com/mlrepa/dvc-2-data-versioning.git
cd dvc-2-data-versioning
```

## 2. Create and activate virtual environment

Install virtualenv in advance:

```bash
pip install virtualenv
```

Create virtual environment named `dvc` (you may use other name)
```bash
python3 -m venv dvc-venv
source dvc-venv/bin/activate
```

## 3. Install python libraries

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


## 4. Add Virtual Environment to Jupyter Notebook

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

## 5. Configure ToC for jupyter notebook (optional)

```bash
sudo jupyter contrib nbextension install
jupyter nbextension enable toc2/main
```

## 6. Run and follow Jupyter Notebook `dvc-2-data-versioning.ipynb` for instructions:

```bash
jupyter notebook
```
Loading

0 comments on commit 0e79074

Please sign in to comment.