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.

node_classification.yaml 1.3 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. feature:
  2. - name: PYGNormalizeFeatures
  3. - name: pagerank
  4. models:
  5. gat:
  6. - parameterName: num_layers
  7. type: DISCRETE
  8. feasiblePoints: '2,3,4'
  9. - parameterName: heads
  10. type: DISCRETE
  11. feasiblePoints: '4,8,16'
  12. - parameterName: hidden
  13. type: NUMERICAL_LIST
  14. numericalType: INTEGER
  15. length: 3
  16. minValue: [8, 8, 8]
  17. maxValue: [64, 64, 64]
  18. cutPara: ["num_layers"]
  19. cutFunc: "lambda x:x[0] - 1"
  20. scalingType: LOG
  21. - parameterName: dropout
  22. type: DOUBLE
  23. maxValue: 0.9
  24. minValue: 0.1
  25. scalingType: LINEAR
  26. - parameterName: act
  27. type: CATEGORICAL
  28. feasiblePoints:
  29. - leaky_relu
  30. - relu
  31. - elu
  32. - tanh
  33. trainer:
  34. - parameterName: max_epoch
  35. type: INTEGER
  36. maxValue: 300
  37. minValue: 10
  38. scalingType: LINEAR
  39. - parameterName: early_stopping_round
  40. type: INTEGER
  41. maxValue: 30
  42. minValue: 10
  43. scalingType: LINEAR
  44. - parameterName: lr
  45. type: DOUBLE
  46. maxValue: 0.1
  47. minValue: 0.0001
  48. scalingType: LOG
  49. - parameterName: weight_decay
  50. type: DOUBLE
  51. maxValue: 0.005
  52. minValue: 0.00005
  53. scalingType: LOG
  54. hpo:
  55. name: anneal
  56. max_evals: 10
  57. ensemble:
  58. name: voting
  59. size: 2