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 383 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
  1. stages:
  2. preprocessing:
  3. cmd: python code/preprocess.py
  4. deps:
  5. - code/preprocess.py
  6. - data/X_train.csv
  7. - data/y_train.json
  8. - data/X_test.csv
  9. outs:
  10. - processed_data/X_train_processed.npy
  11. - processed_data/X_val_processed.npy
  12. - processed_data/y_train_processed.npy
  13. - processed_data/y_val_processed.npy
  14. - processed_data/y_val_processed.npy
Tip!

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

Comments

Loading...