infer_sent.py 1.7 KB
Newer Older
M
mapingshuo 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
# Copyright (c) 2016 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.
M
mapingshuo 已提交
14

M
mapingshuo 已提交
15
from . import basic_config
M
mapingshuo 已提交
16

Y
Yibing Liu 已提交
17

M
mapingshuo 已提交
18 19 20 21 22 23 24 25 26
def infer_sent_v1():
    """
    set configs
    """
    config = basic_config.config()
    config.learning_rate = 0.1
    config.lr_decay = 0.99
    config.optimizer_type = 'sgd'
    config.save_dirname = "model_dir"
27
    config.use_pretrained_word_embedding = True
Y
Yibing Liu 已提交
28
    config.dict_dim = 40000  # approx_vocab_size
M
mapingshuo 已提交
29 30 31
    config.class_dim = 2

    # net config
Y
Yibing Liu 已提交
32
    config.emb_dim = 300
M
mapingshuo 已提交
33 34 35 36 37 38 39 40
    config.droprate_lstm = 0.0
    config.droprate_fc = 0.0
    config.word_embedding_trainable = False
    config.rnn_hid_dim = 2048
    config.mlp_non_linear = False

    return config

Y
Yibing Liu 已提交
41

M
mapingshuo 已提交
42 43 44 45 46 47 48 49 50 51
def infer_sent_v2():
    """
    use our own config
    """
    config = basic_config.config()
    config.learning_rate = 0.0002
    config.lr_decay = 0.99
    config.optimizer_type = 'adam'
    config.save_dirname = "model_dir"
    config.use_pretrained_word_embedding = True
Y
Yibing Liu 已提交
52
    config.dict_dim = 40000  # approx_vocab_size
M
mapingshuo 已提交
53 54 55 56 57 58 59 60 61 62 63
    config.class_dim = 2

    # net config
    config.emb_dim = 300
    config.droprate_lstm = 0.0
    config.droprate_fc = 0.2
    config.word_embedding_trainable = False
    config.rnn_hid_dim = 2048
    config.mlp_non_linear = True

    return config