Spaces:
Paused
Paused
Dean
commited on
Commit
•
479e632
1
Parent(s):
79fd7d0
Finished training of model, saving before qualitative testing. Seems model has actually learned something. Need to add metrics and params to the pipeline.
Browse files- dvc.lock +10 -0
- src/.gitignore +1 -0
dvc.lock
CHANGED
@@ -11,3 +11,13 @@ process_data:
|
|
11 |
outs:
|
12 |
- path: src/data/processed/
|
13 |
md5: 78d932b016048d527f9e73e1781127cd.dir
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
outs:
|
12 |
- path: src/data/processed/
|
13 |
md5: 78d932b016048d527f9e73e1781127cd.dir
|
14 |
+
train:
|
15 |
+
cmd: python3 src/code/training.py src/data/processed
|
16 |
+
deps:
|
17 |
+
- path: src/code/training.py
|
18 |
+
md5: d36fea3f2f8524ea040fe7330ce8ba40
|
19 |
+
- path: src/data/processed/
|
20 |
+
md5: 78d932b016048d527f9e73e1781127cd.dir
|
21 |
+
outs:
|
22 |
+
- path: src/models/
|
23 |
+
md5: 48f953dd81c67ea0f6958fe4e4226e01.dir
|
src/.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
/models
|