Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleHub
提交
6f23b0b6
P
PaddleHub
项目概览
PaddlePaddle
/
PaddleHub
1 年多 前同步成功
通知
284
Star
12117
Fork
2091
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
200
列表
看板
标记
里程碑
合并请求
4
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleHub
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
200
Issue
200
列表
看板
标记
里程碑
合并请求
4
合并请求
4
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
6f23b0b6
编写于
2月 20, 2023
作者:
C
chenjian
提交者:
GitHub
2月 20, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Modify baidu_translate module (#2207)
* remove appid and appkey * update version
上级
1c423b6b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
34 addition
and
26 deletion
+34
-26
modules/text/machine_translation/baidu_language_recognition/module.py
.../machine_translation/baidu_language_recognition/module.py
+17
-13
modules/text/machine_translation/baidu_translate/module.py
modules/text/machine_translation/baidu_translate/module.py
+17
-13
未找到文件。
modules/text/machine_translation/baidu_language_recognition/module.py
浏览文件 @
6f23b0b6
import
argparse
import
os
import
random
from
hashlib
import
md5
from
typing
import
Optional
...
...
@@ -15,14 +16,14 @@ def make_md5(s, encoding='utf-8'):
return
md5
(
s
.
encode
(
encoding
)).
hexdigest
()
@
moduleinfo
(
name
=
"baidu_language_recognition"
,
version
=
"1.0.0"
,
type
=
"text/machine_translation"
,
summary
=
""
,
author
=
"baidu-nlp"
,
author_email
=
"paddle-dev@baidu.com"
)
@
moduleinfo
(
name
=
"baidu_language_recognition"
,
version
=
"1.1.0"
,
type
=
"text/machine_translation"
,
summary
=
""
,
author
=
"baidu-nlp"
,
author_email
=
"paddle-dev@baidu.com"
)
class
BaiduLanguageRecognition
:
def
__init__
(
self
,
appid
=
None
,
appkey
=
None
):
"""
:param appid: appid for requesting Baidu translation service.
...
...
@@ -30,13 +31,15 @@ class BaiduLanguageRecognition:
"""
# Set your own appid/appkey.
if
appid
==
None
:
self
.
appid
=
'20201015000580007'
self
.
appid
=
os
.
getenv
(
'BT_APPID'
)
else
:
self
.
appid
=
appid
if
appkey
is
None
:
self
.
appkey
=
'IFJB6jBORFuMmVGDRud1'
self
.
appkey
=
os
.
getenv
(
'BT_APPKEY'
)
else
:
self
.
appkey
=
appkey
if
self
.
appid
is
None
and
self
.
appkey
is
None
:
raise
RuntimeError
(
"Please set appid and appkey."
)
self
.
url
=
'https://fanyi-api.baidu.com/api/trans/vip/language'
def
recognize
(
self
,
query
:
str
):
...
...
@@ -71,10 +74,11 @@ class BaiduLanguageRecognition:
"""
Run as a command.
"""
self
.
parser
=
argparse
.
ArgumentParser
(
description
=
"Run the {} module."
.
format
(
self
.
name
),
prog
=
'hub run {}'
.
format
(
self
.
name
),
usage
=
'%(prog)s'
,
add_help
=
True
)
self
.
parser
=
argparse
.
ArgumentParser
(
description
=
"Run the {} module."
.
format
(
self
.
name
),
prog
=
'hub run {}'
.
format
(
self
.
name
),
usage
=
'%(prog)s'
,
add_help
=
True
)
self
.
arg_input_group
=
self
.
parser
.
add_argument_group
(
title
=
"Input options"
,
description
=
"Input data. Required"
)
self
.
add_module_input_arg
()
args
=
self
.
parser
.
parse_args
(
argvs
)
...
...
modules/text/machine_translation/baidu_translate/module.py
浏览文件 @
6f23b0b6
import
argparse
import
os
import
random
from
hashlib
import
md5
from
typing
import
Optional
...
...
@@ -15,14 +16,14 @@ def make_md5(s, encoding='utf-8'):
return
md5
(
s
.
encode
(
encoding
)).
hexdigest
()
@
moduleinfo
(
name
=
"baidu_translate"
,
version
=
"1.0.0"
,
type
=
"text/machine_translation"
,
summary
=
""
,
author
=
"baidu-nlp"
,
author_email
=
"paddle-dev@baidu.com"
)
@
moduleinfo
(
name
=
"baidu_translate"
,
version
=
"1.1.0"
,
type
=
"text/machine_translation"
,
summary
=
""
,
author
=
"baidu-nlp"
,
author_email
=
"paddle-dev@baidu.com"
)
class
BaiduTranslate
:
def
__init__
(
self
,
appid
=
None
,
appkey
=
None
):
"""
:param appid: appid for requesting Baidu translation service.
...
...
@@ -30,13 +31,15 @@ class BaiduTranslate:
"""
# Set your own appid/appkey.
if
appid
==
None
:
self
.
appid
=
'20201015000580007'
self
.
appid
=
os
.
getenv
(
'BT_APPID'
)
else
:
self
.
appid
=
appid
if
appkey
is
None
:
self
.
appkey
=
'IFJB6jBORFuMmVGDRud1'
self
.
appkey
=
os
.
getenv
(
'BT_APPKEY'
)
else
:
self
.
appkey
=
appkey
if
self
.
appid
is
None
and
self
.
appkey
is
None
:
raise
RuntimeError
(
"Please set appid and appkey."
)
self
.
url
=
'http://api.fanyi.baidu.com/api/trans/vip/translate'
def
translate
(
self
,
query
:
str
,
from_lang
:
Optional
[
str
]
=
"en"
,
to_lang
:
Optional
[
int
]
=
"zh"
):
...
...
@@ -73,10 +76,11 @@ class BaiduTranslate:
"""
Run as a command.
"""
self
.
parser
=
argparse
.
ArgumentParser
(
description
=
"Run the {} module."
.
format
(
self
.
name
),
prog
=
'hub run {}'
.
format
(
self
.
name
),
usage
=
'%(prog)s'
,
add_help
=
True
)
self
.
parser
=
argparse
.
ArgumentParser
(
description
=
"Run the {} module."
.
format
(
self
.
name
),
prog
=
'hub run {}'
.
format
(
self
.
name
),
usage
=
'%(prog)s'
,
add_help
=
True
)
self
.
arg_input_group
=
self
.
parser
.
add_argument_group
(
title
=
"Input options"
,
description
=
"Input data. Required"
)
self
.
add_module_input_arg
()
args
=
self
.
parser
.
parse_args
(
argvs
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录