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 1.9 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
  1. stages:
  2. gen_env:
  3. cmd: python scripts/gen_env.py
  4. wdir: ..
  5. deps:
  6. - data/default_env.pickle
  7. outs:
  8. - data/env.pickle
  9. gen_observations:
  10. cmd: python scripts/gen_observations.py
  11. wdir: ..
  12. deps:
  13. - data/env.pickle
  14. params:
  15. - num_observations
  16. - obs_data_set
  17. - target_area
  18. - true_norm
  19. outs:
  20. - data/observations.pickle
  21. gen_mcmc_chains:
  22. cmd: python scripts/gen_mcmc_chains.py
  23. wdir: ..
  24. deps:
  25. - data/env.pickle
  26. - data/observations.pickle
  27. params:
  28. - colour_specific
  29. - m
  30. - n
  31. - rf
  32. - shape_specific
  33. - target_area
  34. outs:
  35. - data/chains_and_log_posteriors.pickle
  36. analyse_chains:
  37. cmd: python scripts/analyse_chains.py
  38. wdir: ..
  39. deps:
  40. - data/chains_and_log_posteriors.pickle
  41. - data/env.pickle
  42. - data/observations.pickle
  43. params:
  44. - colour_specific
  45. - m
  46. - n
  47. - rf
  48. - shape_specific
  49. - target_area
  50. outs:
  51. - metrics/chain_info.txt
  52. plots:
  53. - metrics/chain_posteriors.csv
  54. conv_test:
  55. cmd: python scripts/conv_test.py
  56. wdir: ..
  57. deps:
  58. - data/chains_and_log_posteriors.pickle
  59. params:
  60. - rhat_step_size
  61. outs:
  62. - data/posterior.pickle
  63. - metrics/conv_test.txt
  64. extract_top_norms:
  65. cmd: python scripts/extract_top_norms.py
  66. wdir: ..
  67. deps:
  68. - data/env.pickle
  69. - data/posterior.pickle
  70. - metrics/chain_posteriors.csv
  71. params:
  72. - colour_specific
  73. - shape_specific
  74. - target_area
  75. - true_norm
  76. outs:
  77. - data/top_norms.pickle
  78. - metrics/precision_recall.txt
  79. test_obs_log_likelihood1:
  80. cmd: python scripts/test_obs_likelihood.py none true
  81. wdir: ..
  82. deps:
  83. - data/env.pickle
  84. - data/observations.pickle
  85. params:
  86. - true_norm.exp
  87. test_obs_log_likelihood2:
  88. cmd: python scripts/test_obs_likelihood.py top
  89. wdir: ..
  90. deps:
  91. - data/env.pickle
  92. - data/observations.pickle
  93. - data/top_norms.pickle
Tip!

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

Comments

Loading...