config.yaml 1.5 KB
Newer Older
F
frankwhzhang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
# 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 已提交
16
workspace: "models/recall/youtube_dnn"
F
frankwhzhang 已提交
17

F
frankwhzhang 已提交
18 19
dataset:
- name: dataset_train
1
123malin 已提交
20 21
  batch_size: 32
  type: DataLoader # or QueueDataset
F
frankwhzhang 已提交
22
  data_path: "{workspace}/data/train"
1
123malin 已提交
23
  data_converter: "{workspace}/reader.py"
F
frankwhzhang 已提交
24 25 26 27 28 29 30 31

hyper_parameters:
  watch_vec_size: 64
  search_vec_size: 64
  other_feat_size: 64
  output_size: 100
  layers: [128, 64, 32]
  optimizer: 
1
123malin 已提交
32 33
    class: SGD
    learning_rate: 0.01
F
frankwhzhang 已提交
34

1
123malin 已提交
35
mode: [cpu_single_train]
F
frankwhzhang 已提交
36

F
frankwhzhang 已提交
37
runner:
1
123malin 已提交
38
- name: cpu_single_train
J
Jinhua Liang 已提交
39
  class: train
F
frankwhzhang 已提交
40
  device: cpu
1
123malin 已提交
41 42 43 44 45 46 47 48
  epochs: 20
  save_checkpoint_interval: 1
  save_inference_interval: 1
  save_checkpoint_path: "increment_youtubednn"
  save_inference_path: "inference_youtubednn"
  save_inference_feed_varnames: ["watch_vec", "search_vec", "other_feat"] # feed vars of save inference
  save_inference_fetch_varnames: ["l3.tmp_2"]
  print_interval: 1
F
frankwhzhang 已提交
49

F
frankwhzhang 已提交
50 51 52 53 54
phase:
- name: train
  model: "{workspace}/model.py"
  dataset_name: dataset_train
  thread_num: 1