mt_enu_chs / appsettings.json
zhongkaifu's picture
Upload appsettings.json
0b86be9
{
"Kestrel": {
"EndPoints": {
"Http": {
"Url": "http://*:7860"
}
}
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"Seq2Seq": {
"CompilerOptions": "--use_fast_math",
"GPUMemoryUsageRatio": 0.99,
"DeviceIds": "0",
"DistancePenalty": 2,
"MaxSrcTokenSize": 4096,
"MaxTgtTokenSize": 4096,
"ModelFilePath": "/code/mt_enu_chs/mt_enu_chs.model",
"ProcessorType": "CPU",
"MKLInstructions": "AVX2",
"RepeatPenalty": 5,
"TokenGenerationStrategy": "GreedySearch",
"TopPSampling": 0.0,
"BeamSearchSize": 1,
"BlockedTokens": "",
"ModelType": "EncoderDecoder"
},
"SourceSpm": {
"ModelFilePath": "/code/mt_enu_chs/enuSpm.model"
},
"TargetSpm": {
"ModelFilePath": "/code/mt_enu_chs/cjkSpm.model"
}
}