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 343 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
  1. stages:
  2. training:
  3. cmd: python3 -m src.model.train
  4. deps:
  5. - audio_data/audio/
  6. - audio_data/metadata/UrbanSound8K.csv
  7. - src/const.py
  8. - src/data/generator.py
  9. - src/model/train.py
  10. outs:
  11. - models:
  12. persist: true
  13. - params.yml:
  14. cache: false
  15. metrics:
  16. - metrics.csv:
  17. cache: false
Tip!

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

Comments

Loading...