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.

32 lines
853 B

2 years ago
  1. {
  2. "train_csv": "configs/musdb_train.csv",
  3. "validation_csv": "configs/musdb_validation.csv",
  4. "model_dir": "musdb_model",
  5. "mix_name": "mix",
  6. "instrument_list": ["vocals", "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. "n_chunks_per_song":40,
  14. "separation_exponent":2,
  15. "mask_extension":"zeros",
  16. "learning_rate": 1e-4,
  17. "batch_size":4,
  18. "training_cache":"cache/training",
  19. "validation_cache":"cache/validation",
  20. "train_max_steps": 200000,
  21. "throttle_secs":1800,
  22. "random_seed":3,
  23. "save_checkpoints_steps":1000,
  24. "save_summary_steps":5,
  25. "model":{
  26. "type":"unet.unet",
  27. "params":{
  28. "conv_activation":"ELU",
  29. "deconv_activation":"ELU"
  30. }
  31. }
  32. }