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
  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": 400,
  13. "n_hid": 1150,
  14. "n_layers": 3,
  15. "name": "lstm",
  16. "out_bias": true,
  17. "tie_weights": true
  18. },
  19. "base_model": null,
  20. "bptt": 70,
  21. "bs": 16,
  22. "corpus": {
  23. "extensions": "java",
  24. "path": "/path/to/dataset"
  25. },
  26. "prep_function": {
  27. "callable": "nosplit",
  28. "params": [],
  29. "options": {
  30. "no_com": true,
  31. "no_spaces": true,
  32. "no_str": true,
  33. "no_unicode": true
  34. }
  35. },
  36. "training": {
  37. "activation_regularization": {
  38. "alpha": 2,
  39. "beta": 1
  40. },
  41. "gradient_clip": 0.3,
  42. "optimizer": {
  43. "momentum": 0.0,
  44. "name": "sgd"
  45. },
  46. "schedule": {
  47. "init_lr": 30.0,
  48. "max_epochs": 40,
  49. "max_lr_reduction_times": 6,
  50. "mult_coeff": 0.5,
  51. "name": "rafael",
  52. "patience": 1
  53. },
  54. "sub_epochs": null,
  55. "weight_decay": 1.2e-06
  56. }
  57. }
Tip!

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

Comments

Loading...