You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
818 B

2 years ago
  1. {
  2. "train_csv": "path/to/train.csv",
  3. "validation_csv": "path/to/test.csv",
  4. "model_dir": "5stems",
  5. "mix_name": "mix",
  6. "instrument_list": ["vocals", "piano", "drums", "bass", "other"],
  7. "sample_rate":44100,
  8. "frame_length":4096,
  9. "frame_step":1024,
  10. "T":512,
  11. "F":1024,
  12. "n_channels":2,
  13. "separation_exponent":2,
  14. "mask_extension":"zeros",
  15. "learning_rate": 1e-4,
  16. "batch_size":4,
  17. "training_cache":"training_cache",
  18. "validation_cache":"validation_cache",
  19. "train_max_steps": 2500000,
  20. "throttle_secs":600,
  21. "random_seed":8,
  22. "save_checkpoints_steps":300,
  23. "save_summary_steps":5,
  24. "model":{
  25. "type":"unet.softmax_unet",
  26. "params":{
  27. "conv_activation":"ELU",
  28. "deconv_activation":"ELU"
  29. }
  30. }
  31. }