16 lines
613 B
Text
16 lines
613 B
Text
### DVC
|
|
$ git add --all
|
|
$ git commit -m "Train Random Forest classifier"
|
|
$ dvc commit
|
|
$ git push --set-upstream origin random-forest
|
|
$ git tag -a randomforest -m "Random Forest classifier with 80.99% accuracy."
|
|
$ git push origin --tags
|
|
$ dvc push
|
|
[random-forest 523abff] Train Random Forest classifier
|
|
3 files changed, 11 insertions(+), 17 deletions(-)
|
|
To /home/me/pushes/data-version-control
|
|
* [new branch] random-forest -> random-forest
|
|
branch 'random-forest' set up to track 'origin/random-forest'.
|
|
To /home/me/pushes/data-version-control
|
|
* [new tag] randomforest -> randomforest
|
|
1 file pushed
|