Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

dvc.yaml 480 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  1. stages:
  2. train_seq_tagger:
  3. cmd: python train_seq_tagger.py
  4. deps:
  5. - data
  6. - models/
  7. - train_seq_tagger.py
  8. params:
  9. - params/seqtag_params.yaml:
  10. - corpus
  11. - embeddings
  12. - seqtagger
  13. - train
  14. - trainer
  15. - type
  16. outs:
  17. - outputs/:
  18. persist: true
  19. - tensorboard/:
  20. persist: true
  21. metrics:
  22. - metrics/seqtag_metrics.json:
  23. cache: false
  24. plots:
  25. - metrics/loss.tsv:
  26. cache: false
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...