You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

graphclf_gin_diffpool_benchmark.yaml 1.5 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. hpo:
  2. max_evals: 10
  3. name: tpe
  4. models:
  5. - encoder:
  6. name: gin
  7. hp_space:
  8. - parameterName: num_layers
  9. type: DISCRETE
  10. feasiblePoints: '3,4,5'
  11. - parameterName: hidden
  12. type: NUMERICAL_LIST
  13. numericalType: INTEGER
  14. length: 5
  15. minValue: [8, 8, 8, 8, 8]
  16. maxValue: [64, 64, 64, 64, 64]
  17. scalingType: LOG
  18. cutPara: ["num_layers"]
  19. cutFunc: "lambda x: x[0] - 1"
  20. - parameterName: dropout
  21. type: DOUBLE
  22. maxValue: 0.9
  23. minValue: 0.1
  24. scalingType: LINEAR
  25. - parameterName: act
  26. type: CATEGORICAL
  27. feasiblePoints:
  28. - leaky_relu
  29. - relu
  30. - elu
  31. - tanh
  32. - parameterName: eps
  33. type: CATEGORICAL
  34. feasiblePoints:
  35. - "true"
  36. - "false"
  37. - parameterName: mlp_layers
  38. type: DISCRETE
  39. feasiblePoints: '2,3,4'
  40. decoder:
  41. name: topk
  42. trainer:
  43. hp_space:
  44. - maxValue: 300
  45. minValue: 10
  46. parameterName: max_epoch
  47. scalingType: LINEAR
  48. type: INTEGER
  49. - maxValue: 30
  50. minValue: 10
  51. parameterName: early_stopping_round
  52. scalingType: LINEAR
  53. type: INTEGER
  54. - maxValue: 0.1
  55. minValue: 0.0001
  56. parameterName: lr
  57. scalingType: LOG
  58. type: DOUBLE
  59. - maxValue: 0.005
  60. minValue: 5.0e-05
  61. parameterName: weight_decay
  62. scalingType: LOG
  63. type: DOUBLE
  64. - maxValue: 128
  65. minValue: 48
  66. parameterName: batch_size
  67. scalingType: LINEAR
  68. type: INTEGER