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 452 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
  1. stages:
  2. convert_model:
  3. cmd: python -m python_coreml_stable_diffusion.torch2coreml --convert-unet --convert-text-encoder --convert-vae-decoder --convert-safety-checker -o models
  4. outs:
  5. - models
  6. generate_images:
  7. params:
  8. - prompt
  9. cmd: python -m python_coreml_stable_diffusion.pipeline -i models -o data/processed --compute-unit ALL --seed 193 --prompt '${prompt}'
  10. deps:
  11. - models
  12. outs:
  13. - data/processed
Tip!

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

Comments

Loading...