sse.py 1.4 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 sse_base():
    """
    use config in the paper 'Shortcut-Stacked Sentence Encoders for Multi-Domain Inference'
    """
    config = basic_config.config()
    config.learning_rate = 0.0002
    config.lr_decay = 0.7
    config.save_dirname = "model_dir"
    config.use_pretrained_word_embedding = True
Y
Yibing Liu 已提交
27
    config.dict_dim = 40000  # approx_vocab_size
M
mapingshuo 已提交
28 29 30 31 32 33
    config.metric_type = ['accuracy']
    config.optimizer_type = 'adam'
    config.use_lod_tensor = True
    config.embedding_norm = False
    config.OOV_fill = 'uniform'
    config.duplicate_data = False
Y
Yibing Liu 已提交
34

M
mapingshuo 已提交
35 36 37 38 39 40 41 42 43
    # net config
    config.emb_dim = 300
    config.rnn_hid_dim = [512, 1024, 2048]
    config.fc_dim = [1600, 1600]
    config.droprate_lstm = 0.0
    config.droprate_fc = 0.1
    config.class_dim = 2

    return config