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

train_exp_config.yaml 1.6 KB

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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
  1. data:
  2. bigwig:
  3. raw:
  4. root_dir: '/home/juanbermeo/Documents/ml4g_project_1/data/raw_bigwig'
  5. h5:
  6. root_dir: '/home/juanbermeo/Documents/ml4g_project_1/data/preprocessed/bigwig_50k_window'
  7. bed:
  8. h5:
  9. root_dir: '/home/juanbermeo/Documents/ml4g_project_1/data/preprocessed/resampled_bed'
  10. features: [
  11. 'DNase',
  12. 'H3K27ac',
  13. 'H3K27me3',
  14. 'H3K36me3',
  15. 'H3K4me1',
  16. 'H3K4me3',
  17. ]
  18. preprocessing:
  19. bed:
  20. features: [
  21. 'DNase',
  22. 'H3K27ac',
  23. 'H3K27me3',
  24. 'H3K36me3',
  25. 'H3K4me1',
  26. 'H3K4me3',
  27. ]
  28. num_resampled_bins: 1000
  29. raw_bigwig:
  30. features: [
  31. 'DNase',
  32. 'H3K27ac',
  33. 'H3K27me3',
  34. 'H3K36me3',
  35. 'H3K4me1',
  36. 'H3K4me3',
  37. # 'H3K9me3',
  38. 'DNAhg38'
  39. ]
  40. n_features: 10 # Using DNAhg38 adds 4 features. The markers adds 1 each
  41. model:
  42. bigwig:
  43. C: 16 # Number of output channels of conv layers
  44. N: 4 # Number of Conv blocks
  45. M: 4 # Number of dilated Conv blocks to use
  46. bed:
  47. C: 16
  48. N: 3
  49. M: 3
  50. mlp:
  51. H: 16
  52. train:
  53. dataset_type: 'bigwig_bed_h5' # ['bigwig_raw', 'bigwig_h5', 'bed_h5', 'bigwig_bed_h5'] are the options
  54. mini_batch_size: 8
  55. num_workers: 10
  56. device: 'cuda:0'
  57. run_dir_path: './train_runs'
  58. cell_lines: ['X1'] # ['X1', 'X2'] for reporting on test
  59. lr: 0.0001
  60. gamma: 0.8
  61. random_shift: 10
  62. momentum: 0.9
  63. weight_decay: 0.1
  64. n_warmup_epochs: 1
  65. max_grad_norm: 10000
  66. validation:
  67. cell_lines: ['X2']
Tip!

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

Comments

Loading...