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

params.yaml 1.7 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
  1. logger:
  2. level: "DEBUG"
  3. logfmt: "%(asctime)s: %(levelname)-8s [%(filename)s:%(lineno)d] %(message)s"
  4. datefmt: "%Y-%m-%d:%H:%M:%S"
  5. preprocess:
  6. raw_data_root: "/Users/timho102003/Documents/datasets/11K-Hands/"
  7. img_fld: "Hands"
  8. meta_file: "HandInfo.csv"
  9. create_merge: false
  10. merge_file: "hand_augId370.csv"
  11. save_to: images
  12. verbose: "skeleton"
  13. prepare:
  14. train: "train_palmar.csv"
  15. val: "val_palmar.csv"
  16. test: "test_palmar.csv"
  17. specify_hand: null
  18. img_ext: "jpg"
  19. trainval:
  20. train_csv: null
  21. val_csv: null
  22. test_csv: null
  23. tot_data_file: 'hand_augId370.csv'
  24. mlflow: "remote"
  25. fold: 3
  26. specify_hand_side: null
  27. experiment_name: "beam_project_fold1"
  28. is_validate: true
  29. val_register_num: 1
  30. log_interval: 10
  31. gpu_type: "cuda"
  32. batchsize: 64
  33. n_worker: 2
  34. arcface_m: 0.5
  35. arcface_s: 40
  36. embedding_size: 512
  37. net_depth: 50
  38. drop_ratio: 0.6
  39. pretrained: "model_mobilefacenet.pth"
  40. net_mode: "mobilefacenet"
  41. loss_type: "CrossEntropyLoss"
  42. epoch: 10
  43. opt: "SGD"
  44. opt_params:
  45. lr: 0.003
  46. momentum: 0.9
  47. weight_decay: 0.0005
  48. lr_sched: "MultiStepLR"
  49. lr_sched_params:
  50. milestones: [6, 8]
  51. gamma: 0.1
  52. img_resize: [120, 120]
  53. img_crop: [112, 112]
  54. img_rflip_p: 0.5
  55. img_vflip_p: 0.5
  56. img_mean: [0.5, 0.5, 0.5]
  57. img_std: [0.5, 0.5, 0.5]
  58. test:
  59. specify_hand_side: null
  60. model: "best_fold0_final.pth"
  61. features: "embed_right_feature.pt"
  62. embedding_size: 512
  63. net_depth: 50
  64. drop_ratio: 0.6
  65. net_mode: "mobilefacenet"
  66. register_num: 1
  67. topK: 3
  68. onnx:
  69. net_mode: "mobilefacenet" #"mobilefacenet"ir_se
  70. model: 'best_fold0_final.pth' #"model_v1/best_e20.pth"
  71. embedding_size: 512
  72. net_depth: 50
  73. drop_ratio: 0.6
  74. output: "model.onnx"
  75. img_crop: [112, 112]
Tip!

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

Comments

Loading...