Skip to content

Commit 8a95424

Browse files
authored
Update README.md
1 parent d6da858 commit 8a95424

File tree

1 file changed

+35
-1
lines changed

1 file changed

+35
-1
lines changed

README.md

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,35 @@
1-
# DVC CI/CD
1+
# DVC CI/CD MLOps Pipeline
2+
MLOps pipeline with DVC and CML using Github Actions and IBM Cloud
3+
4+
#### Requirements
5+
* DVC
6+
* Python3 and pip
7+
* Access to IBM Cloud Object Storage (IBM's equivalent to AWS S3)
8+
9+
## Running Project
10+
11+
### Setup IBM Bucket Credentials
12+
#### MacOS
13+
Setup your credentials on ```~/.aws/credentials``` and ```~/.aws/config```. DVC works perfectly with IBM Obejct Storage, although it uses de AWS template for the S3, you can also see this in other portions of the repository.
14+
15+
16+
#### ~/.aws/credentials
17+
18+
```credentials
19+
[default]
20+
aws_access_key_id = {{Key ID}}
21+
aws_secret_access_key = {{Access Key}}
22+
```
23+
24+
### Setup project
25+
26+
Download data from the DVC repository(analog to ```git pull```)
27+
```
28+
dvc pull
29+
```
30+
31+
Reproduces the pipeline using DVC
32+
```
33+
dvc repro
34+
```
35+

0 commit comments

Comments
 (0)