add dvc.yaml with defined pipeline
This commit is contained in:
parent
398d26fa23
commit
692cdef78d
16
.gitignore
vendored
16
.gitignore
vendored
@ -1,14 +1,2 @@
|
|||||||
# ---> VisualStudioCode
|
venv
|
||||||
.vscode/*
|
/model.pth
|
||||||
!.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
|
|
||||||
|
|
||||||
|
28
dvc.lock
Normal file
28
dvc.lock
Normal 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
|
Loading…
Reference in New Issue
Block a user