add dvc.yaml with defined pipeline

This commit is contained in:
eugene 2023-09-29 18:06:12 +02:00
parent 398d26fa23
commit 692cdef78d
2 changed files with 30 additions and 14 deletions

16
.gitignore vendored
View File

@ -1,14 +1,2 @@
# ---> VisualStudioCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
!.vscode/*.code-snippets
# Local History for Visual Studio Code
.history/
# Built Visual Studio Code Extensions
*.vsix
venv
/model.pth

28
dvc.lock Normal file
View File

@ -0,0 +1,28 @@
schema: '2.0'
stages:
preprocess:
cmd: python better_preprocess.py
deps:
- path: 25k_IMDb_movie_Dataset.csv
hash: md5
md5: 07989327c5c9a7d7a8d17e80e3e56fdf
size: 12515047
outs:
- path: data.csv
hash: md5
md5: 0ae3ee0112169b038031c83f8e6e39c3
size: 11917252
isexec: true
train:
cmd: python script5_3.py
deps:
- path: data.csv
hash: md5
md5: 0ae3ee0112169b038031c83f8e6e39c3
size: 11917252
outs:
- path: model.pth
hash: md5
md5: 2fda66181bcd728ff2847031481abe37
size: 2195
isexec: true