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

config.json 1.0 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
  1. {
  2. "arch": {
  3. "bidir": false,
  4. "drop": {
  5. "multiplier": 1,
  6. "out": 0.4,
  7. "oute": 0.1,
  8. "outh": 0.3,
  9. "outi": 0.65,
  10. "w": 0.5
  11. },
  12. "emb_sz": 512,
  13. "n_hid": 512,
  14. "n_layers": 1,
  15. "name": "gru",
  16. "out_bias": true,
  17. "tie_weights": true
  18. },
  19. "base_model": null,
  20. "bptt": 200,
  21. "bs": 64,
  22. "corpus": {
  23. "extensions": "java",
  24. "path": "/path/to/dataset"
  25. },
  26. "prep_function": {
  27. "callable": "bpe",
  28. "params": ["10k"],
  29. "options": {
  30. "no_com": true,
  31. "no_spaces": true,
  32. "no_str": false,
  33. "no_unicode": true,
  34. "max_str_length": 14
  35. }
  36. },
  37. "training": {
  38. "activation_regularization": {
  39. "alpha": 2,
  40. "beta": 1
  41. },
  42. "gradient_clip": 5.0,
  43. "optimizer": {
  44. "momentum": 0.0,
  45. "name": "sgd"
  46. },
  47. "schedule": {
  48. "init_lr": 0.1,
  49. "max_epochs": 300,
  50. "max_lr_reduction_times": 10,
  51. "mult_coeff": 0.5,
  52. "name": "rafael",
  53. "patience": 1
  54. },
  55. "sub_epochs": null,
  56. "weight_decay": 1.2e-06
  57. }
  58. }
Tip!

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

Comments

Loading...