Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
b6f9f5f4
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
186
Star
833
Fork
253
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
105
列表
看板
标记
里程碑
合并请求
10
Wiki
2
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Serving
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
105
Issue
105
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
2
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b6f9f5f4
编写于
4月 27, 2020
作者:
M
MRXLT
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix senta reader && lac reader
上级
8f820382
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
39 addition
and
78 deletion
+39
-78
python/examples/senta/senta_reader.py
python/examples/senta/senta_reader.py
+0
-52
python/examples/senta/senta_web_service.py
python/examples/senta/senta_web_service.py
+26
-22
python/paddle_serving_app/reader/lac_reader.py
python/paddle_serving_app/reader/lac_reader.py
+3
-0
python/paddle_serving_app/reader/senta_reader.py
python/paddle_serving_app/reader/senta_reader.py
+10
-4
未找到文件。
python/examples/senta/senta_reader.py
已删除
100644 → 0
浏览文件 @
8f820382
# Copyright (c) 2020 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.
import
sys
import
io
class
SentaReader
():
def
__init__
(
self
,
vocab_path
,
max_seq_len
=
20
):
self
.
max_seq_len
=
max_seq_len
self
.
word_dict
=
self
.
load_vocab
(
vocab_path
)
def
load_vocab
(
self
,
vocab_path
):
"""
load the given vocabulary
"""
vocab
=
{}
with
io
.
open
(
vocab_path
,
'r'
,
encoding
=
'utf8'
)
as
f
:
wid
=
0
for
line
in
f
:
if
line
.
strip
()
not
in
vocab
:
vocab
[
line
.
strip
()]
=
wid
wid
+=
1
vocab
[
"<unk>"
]
=
len
(
vocab
)
return
vocab
def
process
(
self
,
cols
):
unk_id
=
len
(
self
.
word_dict
)
pad_id
=
0
wids
=
[
self
.
word_dict
[
x
]
if
x
in
self
.
word_dict
else
unk_id
for
x
in
cols
]
seq_len
=
len
(
wids
)
if
seq_len
<
self
.
max_seq_len
:
for
i
in
range
(
self
.
max_seq_len
-
seq_len
):
wids
.
append
(
pad_id
)
else
:
wids
=
wids
[:
self
.
max_seq_len
]
seq_len
=
self
.
max_seq_len
return
wids
python/examples/senta/senta_web_service.py
浏览文件 @
b6f9f5f4
...
...
@@ -24,7 +24,7 @@ from multiprocessing import Process, Queue
class
SentaService
(
WebService
):
def
__init__
(
def
set_config
(
self
,
lac_model_path
,
lac_dict_path
,
...
...
@@ -33,14 +33,17 @@ class SentaService(WebService):
self
.
lac_client_config_path
=
lac_model_path
+
"/serving_server_conf.prototxt"
self
.
lac_dict_path
=
lac_dict_path
self
.
senta_dict_path
=
senta_dict_path
self
.
show
=
False
def
show_detail
(
self
,
show
=
False
):
self
.
show
=
show
def
start_lac_service
(
self
):
print
(
" ---- start lac service ---- "
)
os
.
chdir
(
'./lac_serving'
)
self
.
lac_port
=
self
.
port
+
100
r
=
os
.
popen
(
"python -m paddle_serving_server
_gpu
.serve --model {} --port {} &"
.
format
(
self
.
lac_model_path
,
self
.
lac_port
))
"python -m paddle_serving_server.serve --model {} --port {} &"
.
format
(
"../"
+
self
.
lac_model_path
,
self
.
lac_port
))
os
.
chdir
(
'..'
)
def
init_lac_service
(
self
):
...
...
@@ -67,41 +70,42 @@ class SentaService(WebService):
self
.
senta_reader
=
SentaReader
(
vocab_path
=
self
.
senta_dict_path
)
def
preprocess
(
self
,
feed
=
{},
fetch
=
{}):
print
(
"---- preprocess ----"
)
print
(
feed
)
if
"words"
not
in
feed
:
raise
(
"feed data error!"
)
feed_data
=
self
.
lac_reader
.
process
(
feed
[
"words"
])
fetch
=
[
"crf_decode"
]
print
(
"---- lac reader ----"
)
print
(
feed_data
)
if
self
.
show
:
print
(
"---- lac reader ----"
)
print
(
feed_data
)
lac_result
=
self
.
lac_predict
(
feed_data
)
print
(
"---- lac out ----"
)
print
(
lac_result
)
if
self
.
show
:
print
(
"---- lac out ----"
)
print
(
lac_result
)
segs
=
self
.
lac_reader
.
parse_result
(
feed
[
"words"
],
lac_result
[
"crf_decode"
])
print
(
"---- lac parse ----"
)
if
self
.
show
:
print
(
"---- lac parse ----"
)
print
(
segs
)
feed_data
=
self
.
senta_reader
.
process
(
segs
)
print
(
"---- senta reader ----"
)
print
(
"feed_data"
,
feed_data
)
fetch
=
[
"sentence_feature"
]
if
self
.
show
:
print
(
"---- senta reader ----"
)
print
(
"feed_data"
,
feed_data
)
fetch
=
[
"class_probs"
]
return
{
"words"
:
feed_data
},
fetch
senta_service
=
SentaService
(
name
=
"senta"
,
lac_model_path
=
"../../lac/jieba_server_model/"
,
lac_
client_config_path
=
"../lac/jieba_client_conf/serving_client_conf.prototxt
"
,
lac_dict
=
"../lac/lac_dict"
,
senta_dict
=
"./senta_data/word_dict
.txt"
)
senta_service
=
SentaService
(
name
=
"senta"
)
#senta_service.show_detail(True)
senta_service
.
set_config
(
lac_
model_path
=
"./infer_model
"
,
lac_dict
_path
=
"../lac/lac_dict"
,
senta_dict
_path
=
"./vocab
.txt"
)
senta_service
.
load_model_config
(
sys
.
argv
[
1
])
senta_service
.
prepare_server
(
workdir
=
sys
.
argv
[
2
],
port
=
int
(
sys
.
argv
[
3
]),
device
=
"cpu"
)
senta_service
.
init_lac_reader
()
senta_service
.
init_senta_reader
()
print
(
"Init senta done"
)
senta_service
.
init_lac_service
()
print
(
"init lac service done"
)
senta_service
.
run_server
()
#senta_service.run_flask()
...
...
python/paddle_serving_app/reader/lac_reader.py
浏览文件 @
b6f9f5f4
...
...
@@ -53,12 +53,14 @@ class LACReader(object):
#folder = os.path.dirname(basepath)
word_dict_path
=
os
.
path
.
join
(
dict_folder
,
"word.dic"
)
label_dict_path
=
os
.
path
.
join
(
dict_folder
,
"tag.dic"
)
replace_dict_path
=
os
.
path
.
join
(
dict_folder
,
"q2b.dic"
)
self
.
word2id_dict
=
load_kv_dict
(
word_dict_path
,
reverse
=
True
,
value_func
=
int
)
self
.
id2word_dict
=
load_kv_dict
(
word_dict_path
)
self
.
label2id_dict
=
load_kv_dict
(
label_dict_path
,
reverse
=
True
,
value_func
=
int
)
self
.
id2label_dict
=
load_kv_dict
(
label_dict_path
)
self
.
word_replace_dict
=
load_kv_dict
(
replace_dict_path
)
@
property
def
vocab_size
(
self
):
...
...
@@ -79,6 +81,7 @@ class LACReader(object):
except
:
pass
for
word
in
words
:
word
=
self
.
word_replace_dict
.
get
(
word
,
word
)
if
word
not
in
self
.
word2id_dict
:
word
=
"OOV"
word_id
=
self
.
word2id_dict
[
word
]
...
...
python/paddle_serving_app/reader/senta_reader.py
浏览文件 @
b6f9f5f4
...
...
@@ -27,11 +27,16 @@ class SentaReader():
"""
vocab
=
{}
with
io
.
open
(
vocab_path
,
'r'
,
encoding
=
'utf8'
)
as
f
:
wid
=
0
for
line
in
f
:
if
line
.
strip
()
not
in
vocab
:
vocab
[
line
.
strip
()]
=
wid
wid
+=
1
data
=
line
.
strip
().
split
(
"
\t
"
)
if
len
(
data
)
<
2
:
word
=
""
wid
=
data
[
0
]
else
:
word
=
data
[
0
]
wid
=
data
[
1
]
vocab
[
word
]
=
int
(
wid
)
vocab
[
"<unk>"
]
=
len
(
vocab
)
return
vocab
...
...
@@ -41,6 +46,7 @@ class SentaReader():
wids
=
[
self
.
word_dict
[
x
]
if
x
in
self
.
word_dict
else
unk_id
for
x
in
cols
]
'''
seq_len = len(wids)
if seq_len < self.max_seq_len:
for i in range(self.max_seq_len - seq_len):
...
...
@@ -48,5 +54,5 @@ class SentaReader():
else:
wids = wids[:self.max_seq_len]
seq_len = self.max_seq_len
'''
return
wids
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录