# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve. # # 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. from __future__ import absolute_import from __future__ import division from __future__ import print_function import argparse import distutils.util import sys import numpy as np def parse_args(): parser = argparse.ArgumentParser(description=__doc__) parser.add_argument('--role', type=int, default=0, help='role') parser.add_argument('--server', type=str, default='localhost', help='server ip') parser.add_argument('--port', type=int, default=12345, help='server port') parser.add_argument('--epochs', type=int, default=1, help='epochs') parser.add_argument('--test_epoch', type=int, default=1, help='test_epoch') parser.add_argument('--dataset_size', type=int, default=6040, help='dataset_size') parser.add_argument('--batch_size', type=int, default=10, help='batch_size') parser.add_argument('--batch_num', type=int, default=600, help='batch_num') parser.add_argument('--use_gpu', type=int, default=0, help='whether using gpu') parser.add_argument('--mpc_data_dir', type=str, default='./mpc_data/', help='mpc_data_dir') parser.add_argument('--model_dir', type=str, default='./model_dir/', help='model_dir') parser.add_argument('--watch_vec_size', type=int, default=64, help='watch_vec_size') parser.add_argument('--search_vec_size', type=int, default=64, help='search_vec_size') parser.add_argument('--other_feat_size', type=int, default=32, help='other_feat_size') parser.add_argument('--output_size', type=int, default=3952, help='output_size') parser.add_argument('--base_lr', type=float, default=0.01, help='base_lr') parser.add_argument('--topk', type=int, default=10, help='topk') args = parser.parse_args() return args