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

fine_tune.sh 307 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. #!/bin/bash
  2. python -m molbart.fine_tune \
  3. --dataset uspto_50 \
  4. --data_path data/uspto_50.pickle \
  5. --model_path models/bart/span_aug.ckpt \
  6. --task backward_prediction \
  7. --epochs 100 \
  8. --lr 0.001 \
  9. --schedule cycle \
  10. --batch_size 128 \
  11. --acc_batches 4 \
  12. --augment all \
  13. --aug_prob 0.5
Tip!

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

Comments

Loading...