config.yaml 3.1 KB
Newer Older
C
chengmo 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

C
Chengmo 已提交
15
workspace: "models/treebased/tdm"
C
chengmo 已提交
16

C
Chengmo 已提交
17 18 19 20 21 22 23 24 25 26 27 28
# list of dataset
dataset:
- name: dataset_train # name of dataset to distinguish different datasets
  batch_size: 2
  type: QueueDataset # or QueueDataset 
  data_path: "{workspace}/data/train"
  data_converter: "{workspace}/tdm_reader.py"
- name: dataset_infer # name
  batch_size: 1
  type: DataLoader # or QueueDataset 
  data_path: "{workspace}/data/test"
  data_converter: "{workspace}/tdm_evaluate_reader.py"
C
chengmo 已提交
29

C
Chengmo 已提交
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
# hyper parameters of user-defined network
hyper_parameters:
  # optimizer config
  optimizer:
    class: Adam
    learning_rate: 0.001
    strategy: async
  # user-defined <key, value> pairs
  max_layers: 4
  node_nums: 26
  leaf_node_nums: 13
  layer_node_num_list: [2, 4, 7, 12]
  child_nums: 2
  node_emb_size: 64
  input_emb_size: 768
  neg_sampling_list: [1, 2, 3, 4]
  output_positive: True
  topK: 1
  learning_rate: 0.0001
  act: tanh
  tree:
    # 单机训练建议tree只load一次,保存为paddle tensor,之后从paddle模型热启
    # 分布式训练trainer需要独立load 
    # 预测时也改为从paddle模型加载
    load_tree_from_numpy: True # only once
    load_paddle_model: False # train & infer need
    tree_layer_path: "{workspace}/tree/layer_list.txt"
    tree_travel_path: "{workspace}/tree/travel_list.npy"
    tree_info_path: "{workspace}/tree/tree_info.npy"
    tree_emb_path: "{workspace}/tree/tree_emb.npy"
C
chengmo 已提交
60

C
Chengmo 已提交
61
# select runner by name
C
Chengmo 已提交
62 63
mode: [runner1]

C
Chengmo 已提交
64 65
runner:
- name: runner1
J
Jinhua Liang 已提交
66
  class: train
C
Chengmo 已提交
67 68 69 70 71 72 73
  startup_class_path: "{workspace}/tdm_startup.py"
  epochs: 10
  device: cpu
  save_checkpoint_interval: 2 # save model interval of epochs
  save_checkpoint_path: "increment" # save checkpoint path
  init_model_path: "" # load model path
  print_interval: 10
C
Chengmo 已提交
74
  phases: [phase1]
C
Chengmo 已提交
75

C
Chengmo 已提交
76
- name: runner2
C
Chengmo 已提交
77
  class: infer
C
Chengmo 已提交
78 79 80 81
  startup_class_path: "{workspace}/tdm_startup.py"
  device: cpu
  init_model_path: "increment/0" # load model path
  print_interval: 1
C
Chengmo 已提交
82
  phases: [phase2]
C
Chengmo 已提交
83
  
C
Chengmo 已提交
84 85 86 87 88 89 90 91 92 93
- name: runner3
  class: local_cluster_train
  startup_class_path: "{workspace}/tdm_startup.py"
  fleet_mode: ps
  epochs: 10
  device: cpu
  save_checkpoint_interval: 2 # save model interval of epochs
  save_checkpoint_path: "increment" # save checkpoint path
  init_model_path: "init_model" # load model path
  print_interval: 10
C
Chengmo 已提交
94
  phases: [phase1]
C
chengmo 已提交
95

C
Chengmo 已提交
96 97 98 99 100 101
# runner will run all the phase in each epoch
phase:
- name: phase1
  model: "{workspace}/model.py" # user-defined model
  dataset_name: dataset_train # select dataset by name
  thread_num: 1
C
Chengmo 已提交
102 103 104 105
- name: phase2
  model: "{workspace}/model.py"
  dataset_name: dataset_infer
  thread_num: 2