Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
BaiXuePrincess
PaddleRec
提交
05fe3b93
P
PaddleRec
项目概览
BaiXuePrincess
/
PaddleRec
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleRec
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleRec
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
05fe3b93
编写于
8月 18, 2020
作者:
Y
yinhaofeng
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add model multiview-simnet
上级
d4a280b5
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
619 addition
and
259 deletion
+619
-259
models/match/multiview-simnet/config.yaml
models/match/multiview-simnet/config.yaml
+15
-13
models/match/multiview-simnet/data/preprocess.py
models/match/multiview-simnet/data/preprocess.py
+109
-0
models/match/multiview-simnet/data/test/test.txt
models/match/multiview-simnet/data/test/test.txt
+100
-10
models/match/multiview-simnet/data/train/train.txt
models/match/multiview-simnet/data/train/train.txt
+256
-10
models/match/multiview-simnet/eval.py
models/match/multiview-simnet/eval.py
+25
-7
models/match/multiview-simnet/evaluate_reader.py
models/match/multiview-simnet/evaluate_reader.py
+0
-57
models/match/multiview-simnet/generate_synthetic_data.py
models/match/multiview-simnet/generate_synthetic_data.py
+0
-102
models/match/multiview-simnet/reader.py
models/match/multiview-simnet/reader.py
+0
-60
models/match/multiview-simnet/readme.md
models/match/multiview-simnet/readme.md
+106
-0
models/match/multiview-simnet/run.sh
models/match/multiview-simnet/run.sh
+8
-0
未找到文件。
models/match/multiview-simnet/config.yaml
浏览文件 @
05fe3b93
...
...
@@ -18,12 +18,12 @@ workspace: "models/match/multiview-simnet"
# list of dataset
dataset
:
-
name
:
dataset_train
# name of dataset to distinguish different datasets
batch_size
:
2
batch_size
:
128
type
:
DataLoader
# or QueueDataset
data_path
:
"
{workspace}/data/train"
sparse_slots
:
"
1
2
3
"
sparse_slots
:
"
0
1
2
"
-
name
:
dataset_infer
# name
batch_size
:
2
batch_size
:
1
type
:
DataLoader
# or QueueDataset
data_path
:
"
{workspace}/data/test"
sparse_slots
:
"
1
2"
...
...
@@ -34,24 +34,24 @@ hyper_parameters:
class
:
Adam
learning_rate
:
0.0001
strategy
:
async
query_encoder
:
"
bow
"
title_encoder
:
"
bow
"
query_encoder
:
"
gru
"
title_encoder
:
"
gru
"
query_encode_dim
:
128
title_encode_dim
:
128
sparse_feature_dim
:
1
000001
sparse_feature_dim
:
1
439
embedding_dim
:
128
hidden_size
:
128
margin
:
0.1
# select runner by name
mode
:
train_runner
mode
:
[
train_runner
,
infer_runner
]
# config of each runner.
# runner is a kind of paddle training class, which wraps the train/infer process.
runner
:
-
name
:
train_runner
class
:
train
# num of epochs
epochs
:
2
epochs
:
3
# device to run training or infer
device
:
cpu
save_checkpoint_interval
:
1
# save model interval of epochs
...
...
@@ -62,12 +62,14 @@ runner:
save_inference_fetch_varnames
:
[]
# fetch vars of save inference
init_model_path
:
"
"
# load model path
print_interval
:
1
phases
:
phase1
-
name
:
infer_runner
class
:
infer
# device to run training or infer
device
:
cpu
print_interval
:
1
init_model_path
:
"
increment/0"
# load model path
init_model_path
:
"
increment/2"
# load model path
phases
:
phase2
# runner will run all the phase in each epoch
phase
:
...
...
@@ -75,7 +77,7 @@ phase:
model
:
"
{workspace}/model.py"
# user-defined model
dataset_name
:
dataset_train
# select dataset by name
thread_num
:
1
#
- name: phase2
#
model: "{workspace}/model.py" # user-defined model
#
dataset_name: dataset_infer # select dataset by name
#
thread_num: 1
-
name
:
phase2
model
:
"
{workspace}/model.py"
# user-defined model
dataset_name
:
dataset_infer
# select dataset by name
thread_num
:
1
models/match/multiview-simnet/data/preprocess.py
0 → 100644
浏览文件 @
05fe3b93
#encoding=utf-8
import
os
import
sys
import
numpy
as
np
import
random
f
=
open
(
"./zhidao"
,
"r"
)
lines
=
f
.
readlines
()
f
.
close
()
#建立字典
word_dict
=
{}
for
line
in
lines
:
line
=
line
.
strip
().
split
(
"
\t
"
)
text
=
line
[
0
].
split
(
" "
)
+
line
[
1
].
split
(
" "
)
for
word
in
text
:
if
word
in
word_dict
:
word_dict
[
word
]
=
word_dict
[
word
]
+
1
else
:
word_dict
[
word
]
=
1
word_list
=
word_dict
.
items
()
word_list
=
sorted
(
word_dict
.
items
(),
key
=
lambda
item
:
item
[
1
],
reverse
=
True
)
word_list_ids
=
range
(
1
,
len
(
word_list
)
+
1
)
word_dict
=
dict
(
zip
([
x
[
0
]
for
x
in
word_list
],
word_list_ids
))
f
=
open
(
"./zhidao"
,
"r"
)
lines
=
f
.
readlines
()
f
.
close
()
#划分训练集和测试集
lines
=
[
line
.
strip
().
split
(
"
\t
"
)
for
line
in
lines
]
random
.
shuffle
(
lines
)
train_set
=
lines
[:
900
]
test_set
=
lines
[
900
:]
#建立以query为key,以负例为value的字典
neg_dict
=
{}
for
line
in
train_set
:
if
line
[
2
]
==
"0"
:
if
line
[
0
]
in
neg_dict
:
neg_dict
[
line
[
0
]].
append
(
line
[
1
])
else
:
neg_dict
[
line
[
0
]]
=
[
line
[
1
]]
#建立以query为key,以正例为value的字典
pos_dict
=
{}
for
line
in
train_set
:
if
line
[
2
]
==
"1"
:
if
line
[
0
]
in
pos_dict
:
pos_dict
[
line
[
0
]].
append
(
line
[
1
])
else
:
pos_dict
[
line
[
0
]]
=
[
line
[
1
]]
#训练集整理为query,pos,neg的格式
f
=
open
(
"train.txt"
,
"w"
)
for
query
in
pos_dict
.
keys
():
for
pos
in
pos_dict
[
query
]:
if
query
not
in
neg_dict
:
continue
for
neg
in
neg_dict
[
query
]:
f
.
write
(
str
(
query
)
+
"
\t
"
+
str
(
pos
)
+
"
\t
"
+
str
(
neg
)
+
"
\n
"
)
f
.
close
()
f
=
open
(
"train.txt"
,
"r"
)
lines
=
f
.
readlines
()
f
.
close
()
#训练集中的query,pos,neg转化格式
f
=
open
(
"train.txt"
,
"w"
)
for
line
in
lines
:
line
=
line
.
strip
().
split
(
"
\t
"
)
query
=
line
[
0
].
strip
().
split
(
" "
)
pos
=
line
[
1
].
strip
().
split
(
" "
)
neg
=
line
[
2
].
strip
().
split
(
" "
)
query_list
=
[]
for
word
in
query
:
query_list
.
append
(
word_dict
[
word
])
pos_list
=
[]
for
word
in
pos
:
pos_list
.
append
(
word_dict
[
word
])
neg_list
=
[]
for
word
in
neg
:
neg_list
.
append
(
word_dict
[
word
])
f
.
write
(
' '
.
join
([
"0:"
+
str
(
x
)
for
x
in
query_list
])
+
" "
+
' '
.
join
([
"1:"
+
str
(
x
)
for
x
in
pos_list
])
+
" "
+
' '
.
join
([
"2:"
+
str
(
x
)
for
x
in
neg_list
])
+
"
\n
"
)
f
.
close
()
#测试集中的query和pos转化格式
f
=
open
(
"test.txt"
,
"w"
)
fa
=
open
(
"label.txt"
,
"w"
)
for
line
in
test_set
:
query
=
line
[
0
].
strip
().
split
(
" "
)
pos
=
line
[
1
].
strip
().
split
(
" "
)
label
=
line
[
2
]
query_list
=
[]
for
word
in
query
:
query_list
.
append
(
word_dict
[
word
])
pos_token
=
[]
for
word
in
pos
:
pos_list
.
append
(
word_dict
[
word
])
f
.
write
(
' '
.
join
([
"0:"
+
str
(
x
)
for
x
in
query_list
])
+
" "
+
' '
.
join
(
[
"1:"
+
str
(
x
)
for
x
in
pos_list
])
+
"
\n
"
)
fa
.
write
(
label
+
"
\n
"
)
f
.
close
()
fa
.
close
()
models/match/multiview-simnet/data/test/test.txt
浏览文件 @
05fe3b93
因为 它太大了无法显示 source diff 。你可以改为
查看blob
。
models/match/multiview-simnet/data/train/train.txt
浏览文件 @
05fe3b93
7688:0 589671:0 339543:0 681723:0 339204:0 743067:0 897959:0 897541:0 571340:0 858141:0 68161:1 533957:1 288065:1 755516:1 179906:1 324817:1 116293:1 942079:1 455277:1 787142:1 251765:2 846187:2 586960:2 781883:2 430436:2 240100:2 686201:2 632045:2 585097:2 61976:2
187966:0 194147:0 640819:0 283848:0 514875:0 310781:0 760083:0 281096:0 837090:0 928087:0 958908:1 451359:1 456136:1 577231:1 373371:1 651928:1 877106:1 721988:1 342265:1 114942:1 668915:2 502190:2 139044:2 213045:2 36710:2 119509:2 450285:2 165440:2 199495:2 798870:2
477955:0 598041:0 452166:0 924550:0 152308:0 316225:0 285239:0 7967:0 177143:0 132244:0 391070:1 169561:1 256279:1 563588:1 749753:1 237035:1 550804:1 736257:1 71551:1 61944:1 102132:2 484023:2 82995:2 732704:2 114816:2 413165:2 197504:2 686192:2 253734:2 248157:2
325819:0 140241:0 365103:0 334185:0 357327:0 613836:0 928004:0 595589:0 506569:0 539067:0 638196:1 729129:1 730912:1 701797:1 571150:1 140054:1 680316:1 889784:1 302584:1 676284:1 671069:2 212989:2 318469:2 732930:2 924564:2 147041:2 572412:2 662673:2 418312:2 382855:2
839803:0 888881:0 957998:0 906486:0 44377:0 247842:0 994783:0 813449:0 168271:0 493685:0 269703:1 156692:1 686681:1 273684:1 312387:1 462033:1 669631:1 635437:1 74337:1 217677:1 582194:2 992666:2 860610:2 660766:2 24524:2 169856:2 882211:2 291866:2 44494:2 984736:2
327559:0 627497:0 876526:0 243959:0 532929:0 639919:0 443220:0 952110:0 844723:0 372053:0 196819:1 326005:1 62242:1 774928:1 382727:1 348680:1 946697:1 625998:1 276517:1 251595:1 342204:2 825871:2 407136:2 724114:2 611341:2 517978:2 248341:2 111254:2 836867:2 677297:2
72451:0 749548:0 283413:0 419402:0 67446:0 341795:0 918120:0 892028:0 113151:0 832663:0 758121:1 500602:1 734935:1 577972:1 205421:1 726739:1 276563:1 611928:1 185486:1 603502:1 633117:2 929300:2 332435:2 216848:2 412769:2 708304:2 800045:2 315869:2 444476:2 332565:2
675647:0 212558:0 654982:0 321053:0 111172:0 635432:0 298523:0 612182:0 203835:0 288250:0 990034:1 891786:1 188524:1 480757:1 436783:1 874434:1 530090:1 492441:1 32835:1 886415:1 688876:2 626030:2 612348:2 208265:2 355885:2 603938:2 349931:2 86683:2 361956:2 705130:2
164500:0 332294:0 373155:0 320413:0 801561:0 152827:0 28282:0 435913:0 376758:0 367848:0 285596:1 282674:1 357323:1 257195:1 948061:1 996976:1 300918:1 734644:1 870559:1 924205:1 45095:2 61352:2 242258:2 153354:2 763576:2 133542:2 431079:2 193327:2 655823:2 770159:2
821764:0 184731:0 888413:0 793536:0 30049:0 533675:0 791254:0 92255:0 74185:0 557758:0 795898:1 15689:1 983592:1 248891:1 64421:1 387642:1 315522:1 526054:1 404172:1 704838:1 537016:2 383828:2 438418:2 885895:2 894698:2 228867:2 343213:2 411377:2 149957:2 810795:2
0:358 0:206 0:205 0:250 0:9 0:3 0:207 0:10 0:330 0:164 1:206 1:217 1:666 1:28 1:19 1:9 1:3 1:207 1:10 1:398 2:217 2:206 2:9 2:3 2:207 2:10 2:398 2:2
0:358 0:206 0:205 0:250 0:9 0:3 0:207 0:10 0:330 0:164 1:593 1:217 1:206 1:205 1:250 1:9 1:3 1:207 1:10 1:330 1:2 2:217 2:206 2:9 2:3 2:207 2:10 2:398 2:2
0:358 0:206 0:205 0:250 0:9 0:3 0:207 0:10 0:330 0:164 1:1144 1:217 1:206 1:9 1:3 1:207 1:10 1:398 1:2 2:217 2:206 2:9 2:3 2:207 2:10 2:398 2:2
0:358 0:206 0:205 0:250 0:9 0:3 0:207 0:10 0:330 0:164 1:951 1:952 1:206 1:9 1:3 1:207 1:10 1:398 2:217 2:206 2:9 2:3 2:207 2:10 2:398 2:2
0:358 0:206 0:205 0:250 0:9 0:3 0:207 0:10 0:330 0:164 1:217 1:206 1:205 1:250 1:9 1:3 1:207 1:10 1:398 1:2 2:217 2:206 2:9 2:3 2:207 2:10 2:398 2:2
0:358 0:206 0:205 0:250 0:9 0:3 0:207 0:10 0:330 0:164 1:593 1:217 1:206 1:205 1:250 1:9 1:3 1:207 1:11 1:9 1:3 1:398 1:5 1:2 1:2 2:217 2:206 2:9 2:3 2:207 2:10 2:398 2:2
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:723 2:27 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:224 2:544 2:11 2:508 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:27 2:203 2:8 2:24 2:2 2:80 2:359 2:27 2:21 2:2
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:244 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1295 2:42 2:27 2:21 2:379 2:8
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1056 2:42 2:27 2:21 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:80 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:244 2:1 2:27 2:379 2:9 2:8 2:2
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:810 2:1 2:544 2:244 2:624 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1010 2:1 2:38 2:27 2:80 2:34 2:8 2:24 2:2
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:1280 2:27 2:203 2:171 2:8 2:379 2:2
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:508 2:27 2:21 2:203 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1015 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:27 2:80 2:359 2:177 2:203 2:8 2:24 2:7 2:7 2:42 2:27 2:379 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:27 2:21 2:8 2:24 2:11 2:120 2:72 2:298 2:5 2:2
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1129 2:38 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:18 2:575 2:42 2:1031 2:1 2:11 2:27 2:21 2:34 2:8 2:24 2:2 2:2
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1209 2:1 2:38 2:16 2:21 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:196 1:224 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:27 2:80 2:178 2:8 2:24 2:115 2:1414 2:565 2:1 2:42
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:723 2:27 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:224 2:544 2:11 2:508 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:27 2:203 2:8 2:24 2:2 2:80 2:359 2:27 2:21 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:244 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:1295 2:42 2:27 2:21 2:379 2:8
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:1056 2:42 2:27 2:21 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:80 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:244 2:1 2:27 2:379 2:9 2:8 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:810 2:1 2:544 2:244 2:624 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:1010 2:1 2:38 2:27 2:80 2:34 2:8 2:24 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:1280 2:27 2:203 2:171 2:8 2:379 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:508 2:27 2:21 2:203 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:1015 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:27 2:80 2:359 2:177 2:203 2:8 2:24 2:7 2:7 2:42 2:27 2:379 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:27 2:21 2:8 2:24 2:11 2:120 2:72 2:298 2:5 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:1129 2:38 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:18 2:575 2:42 2:1031 2:1 2:11 2:27 2:21 2:34 2:8 2:24 2:2 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:1209 2:1 2:38 2:16 2:21 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:80 1:27 1:21 1:8 1:24 2:42 2:27 2:80 2:178 2:8 2:24 2:115 2:1414 2:565 2:1 2:42
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:723 2:27 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:224 2:544 2:11 2:508 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:27 2:203 2:8 2:24 2:2 2:80 2:359 2:27 2:21 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:244 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:1295 2:42 2:27 2:21 2:379 2:8
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:1056 2:42 2:27 2:21 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:80 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:244 2:1 2:27 2:379 2:9 2:8 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:810 2:1 2:544 2:244 2:624 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:1010 2:1 2:38 2:27 2:80 2:34 2:8 2:24 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:1280 2:27 2:203 2:171 2:8 2:379 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:508 2:27 2:21 2:203 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:1015 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:27 2:80 2:359 2:177 2:203 2:8 2:24 2:7 2:7 2:42 2:27 2:379 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:27 2:21 2:8 2:24 2:11 2:120 2:72 2:298 2:5 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:1129 2:38 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:18 2:575 2:42 2:1031 2:1 2:11 2:27 2:21 2:34 2:8 2:24 2:2 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:1209 2:1 2:38 2:16 2:21 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:8 1:24 1:21 2:42 2:27 2:80 2:178 2:8 2:24 2:115 2:1414 2:565 2:1 2:42
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:723 2:27 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:224 2:544 2:11 2:508 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:27 2:203 2:8 2:24 2:2 2:80 2:359 2:27 2:21 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:244 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:1295 2:42 2:27 2:21 2:379 2:8
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:1056 2:42 2:27 2:21 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:80 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:244 2:1 2:27 2:379 2:9 2:8 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:810 2:1 2:544 2:244 2:624 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:1010 2:1 2:38 2:27 2:80 2:34 2:8 2:24 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:1280 2:27 2:203 2:171 2:8 2:379 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:508 2:27 2:21 2:203 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:1015 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:27 2:80 2:359 2:177 2:203 2:8 2:24 2:7 2:7 2:42 2:27 2:379 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:27 2:21 2:8 2:24 2:11 2:120 2:72 2:298 2:5 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:1129 2:38 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:18 2:575 2:42 2:1031 2:1 2:11 2:27 2:21 2:34 2:8 2:24 2:2 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:1209 2:1 2:38 2:16 2:21 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:27 1:21 1:379 1:8 2:42 2:27 2:80 2:178 2:8 2:24 2:115 2:1414 2:565 2:1 2:42
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:723 2:27 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:224 2:544 2:11 2:508 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:27 2:203 2:8 2:24 2:2 2:80 2:359 2:27 2:21 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:244 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:1295 2:42 2:27 2:21 2:379 2:8
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:1056 2:42 2:27 2:21 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:80 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:244 2:1 2:27 2:379 2:9 2:8 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:810 2:1 2:544 2:244 2:624 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:1010 2:1 2:38 2:27 2:80 2:34 2:8 2:24 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:1280 2:27 2:203 2:171 2:8 2:379 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:508 2:27 2:21 2:203 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:1015 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:27 2:80 2:359 2:177 2:203 2:8 2:24 2:7 2:7 2:42 2:27 2:379 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:27 2:21 2:8 2:24 2:11 2:120 2:72 2:298 2:5 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:1129 2:38 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:18 2:575 2:42 2:1031 2:1 2:11 2:27 2:21 2:34 2:8 2:24 2:2 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:1209 2:1 2:38 2:16 2:21 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:34 1:881 1:8 1:24 2:42 2:27 2:80 2:178 2:8 2:24 2:115 2:1414 2:565 2:1 2:42
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:723 2:27 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:224 2:544 2:11 2:508 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:27 2:203 2:8 2:24 2:2 2:80 2:359 2:27 2:21 2:2
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:244 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:1295 2:42 2:27 2:21 2:379 2:8
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:1056 2:42 2:27 2:21 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:80 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:244 2:1 2:27 2:379 2:9 2:8 2:2
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:810 2:1 2:544 2:244 2:624 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:1010 2:1 2:38 2:27 2:80 2:34 2:8 2:24 2:2
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:1280 2:27 2:203 2:171 2:8 2:379 2:2
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:508 2:27 2:21 2:203 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:1015 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:27 2:80 2:359 2:177 2:203 2:8 2:24 2:7 2:7 2:42 2:27 2:379 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:27 2:21 2:8 2:24 2:11 2:120 2:72 2:298 2:5 2:2
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:1129 2:38 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:18 2:575 2:42 2:1031 2:1 2:11 2:27 2:21 2:34 2:8 2:24 2:2 2:2
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:1209 2:1 2:38 2:16 2:21 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:522 1:27 1:21 1:34 1:8 1:24 2:42 2:27 2:80 2:178 2:8 2:24 2:115 2:1414 2:565 2:1 2:42
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:723 2:27 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:224 2:544 2:11 2:508 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:27 2:203 2:8 2:24 2:2 2:80 2:359 2:27 2:21 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:244 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:1295 2:42 2:27 2:21 2:379 2:8
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:1056 2:42 2:27 2:21 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:80 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:244 2:1 2:27 2:379 2:9 2:8 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:810 2:1 2:544 2:244 2:624 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:1010 2:1 2:38 2:27 2:80 2:34 2:8 2:24 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:1280 2:27 2:203 2:171 2:8 2:379 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:508 2:27 2:21 2:203 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:1015 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:27 2:80 2:359 2:177 2:203 2:8 2:24 2:7 2:7 2:42 2:27 2:379 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:27 2:21 2:8 2:24 2:11 2:120 2:72 2:298 2:5 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:1129 2:38 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:18 2:575 2:42 2:1031 2:1 2:11 2:27 2:21 2:34 2:8 2:24 2:2 2:2
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:1209 2:1 2:38 2:16 2:21 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:80 1:216 1:561 1:27 1:21 1:8 1:24 1:2 2:42 2:27 2:80 2:178 2:8 2:24 2:115 2:1414 2:565 2:1 2:42
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:723 2:27 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:224 2:544 2:11 2:508 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:27 2:203 2:8 2:24 2:2 2:80 2:359 2:27 2:21 2:2
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:244 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1295 2:42 2:27 2:21 2:379 2:8
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1056 2:42 2:27 2:21 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:80 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:244 2:1 2:27 2:379 2:9 2:8 2:2
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:810 2:1 2:544 2:244 2:624 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1010 2:1 2:38 2:27 2:80 2:34 2:8 2:24 2:2
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:1280 2:27 2:203 2:171 2:8 2:379 2:2
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:508 2:27 2:21 2:203 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1015 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:27 2:80 2:359 2:177 2:203 2:8 2:24 2:7 2:7 2:42 2:27 2:379 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:27 2:21 2:8 2:24 2:11 2:120 2:72 2:298 2:5 2:2
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1129 2:38 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:18 2:575 2:42 2:1031 2:1 2:11 2:27 2:21 2:34 2:8 2:24 2:2 2:2
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:1209 2:1 2:38 2:16 2:21 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:12 1:1330 1:16 1:21 1:42 1:27 1:34 1:8 1:24 2:42 2:27 2:80 2:178 2:8 2:24 2:115 2:1414 2:565 2:1 2:42
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:723 2:27 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:224 2:544 2:11 2:508 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:27 2:203 2:8 2:24 2:2 2:80 2:359 2:27 2:21 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:244 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:1295 2:42 2:27 2:21 2:379 2:8
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:1056 2:42 2:27 2:21 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:80 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:244 2:1 2:27 2:379 2:9 2:8 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:810 2:1 2:544 2:244 2:624 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:1010 2:1 2:38 2:27 2:80 2:34 2:8 2:24 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:1280 2:27 2:203 2:171 2:8 2:379 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:508 2:27 2:21 2:203 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:1015 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:27 2:80 2:359 2:177 2:203 2:8 2:24 2:7 2:7 2:42 2:27 2:379 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:27 2:21 2:8 2:24 2:11 2:120 2:72 2:298 2:5 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:1129 2:38 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:18 2:575 2:42 2:1031 2:1 2:11 2:27 2:21 2:34 2:8 2:24 2:2 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:1209 2:1 2:38 2:16 2:21 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:459 1:8 1:24 2:42 2:27 2:80 2:178 2:8 2:24 2:115 2:1414 2:565 2:1 2:42
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:723 2:27 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:224 2:544 2:11 2:508 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:27 2:203 2:8 2:24 2:2 2:80 2:359 2:27 2:21 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:244 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:1295 2:42 2:27 2:21 2:379 2:8
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:1056 2:42 2:27 2:21 2:171 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:80 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:244 2:1 2:27 2:379 2:9 2:8 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:810 2:1 2:544 2:244 2:624 2:27 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:1010 2:1 2:38 2:27 2:80 2:34 2:8 2:24 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:1280 2:27 2:203 2:171 2:8 2:379 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:508 2:27 2:21 2:203 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:1015 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:27 2:80 2:359 2:177 2:203 2:8 2:24 2:7 2:7 2:42 2:27 2:379 2:34 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:27 2:21 2:8 2:24 2:11 2:120 2:72 2:298 2:5 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:1129 2:38 2:27 2:21 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:18 2:575 2:42 2:1031 2:1 2:11 2:27 2:21 2:34 2:8 2:24 2:2 2:2
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:1209 2:1 2:38 2:16 2:21 2:27 2:8 2:24
0:42 0:27 0:21 0:8 0:24 1:42 1:27 1:21 1:8 1:24 1:2 2:42 2:27 2:80 2:178 2:8 2:24 2:115 2:1414 2:565 2:1 2:42
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:86 2:1 2:65 2:121 2:15 2:3 2:592
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:15 2:3 2:98 2:14 2:9 2:86
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:616 2:789 2:1 2:65 2:121 2:15 2:3 2:98 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:26 2:15 2:3 2:192
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:412 2:15 2:3 2:1360
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:86 2:26 2:15 2:3 2:1200 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:102 2:15 2:3 2:98 2:11 2:26 2:15 2:3 2:98
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:360 2:15 2:3 2:20
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:1071 2:635 2:1 2:65 2:11 2:121 2:15 2:93 2:98 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:121 2:15 2:3 2:2 2:31 2:121 2:15 2:3 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1254 2:334 2:15 2:3 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:14 2:15 2:93 2:1303 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:616 2:1356 2:1 2:592 2:15 2:3 2:20 2:115 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:11 2:15 2:3 2:192 2:964 2:323 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:15 2:3 2:192 2:334 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:86 2:1 2:65 2:121 2:15 2:3 2:592
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:15 2:3 2:98 2:14 2:9 2:86
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:616 2:789 2:1 2:65 2:121 2:15 2:3 2:98 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:9 2:86 2:1 2:65 2:26 2:15 2:3 2:192
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:9 2:86 2:1 2:65 2:412 2:15 2:3 2:1360
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:86 2:26 2:15 2:3 2:1200 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:9 2:86 2:1 2:65 2:102 2:15 2:3 2:98 2:11 2:26 2:15 2:3 2:98
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:9 2:86 2:1 2:65 2:360 2:15 2:3 2:20
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:1071 2:635 2:1 2:65 2:11 2:121 2:15 2:93 2:98 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:9 2:86 2:1 2:65 2:121 2:15 2:3 2:2 2:31 2:121 2:15 2:3 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:9 2:86 2:1254 2:334 2:15 2:3 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:9 2:86 2:1 2:65 2:14 2:15 2:93 2:1303 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:9 2:616 2:1356 2:1 2:592 2:15 2:3 2:20 2:115 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:9 2:86 2:1 2:65 2:11 2:15 2:3 2:192 2:964 2:323 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:1 1:65 1:334 1:15 1:3 1:569 1:109 2:9 2:86 2:1 2:65 2:15 2:3 2:192 2:334 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:86 2:1 2:65 2:121 2:15 2:3 2:592
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:15 2:3 2:98 2:14 2:9 2:86
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:616 2:789 2:1 2:65 2:121 2:15 2:3 2:98 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:26 2:15 2:3 2:192
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:412 2:15 2:3 2:1360
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:86 2:26 2:15 2:3 2:1200 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:102 2:15 2:3 2:98 2:11 2:26 2:15 2:3 2:98
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:360 2:15 2:3 2:20
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:1071 2:635 2:1 2:65 2:11 2:121 2:15 2:93 2:98 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:121 2:15 2:3 2:2 2:31 2:121 2:15 2:3 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1254 2:334 2:15 2:3 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:14 2:15 2:93 2:1303 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:616 2:1356 2:1 2:592 2:15 2:3 2:20 2:115 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:11 2:15 2:3 2:192 2:964 2:323 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:86 1:1 1:65 1:121 1:15 1:3 1:98 2:9 2:86 2:1 2:65 2:15 2:3 2:192 2:334 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:15 1:3 1:98 1:20 1:2 2:86 2:1 2:65 2:121 2:15 2:3 2:592
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:15 1:3 1:98 1:20 1:2 2:15 2:3 2:98 2:14 2:9 2:86
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:15 1:3 1:98 1:20 1:2 2:616 2:789 2:1 2:65 2:121 2:15 2:3 2:98 2:2
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:15 1:3 1:98 1:20 1:2 2:9 2:86 2:1 2:65 2:26 2:15 2:3 2:192
0:9 0:86 0:1 0:65 0:121 0:15 0:3 0:98 1:9 1:86 1:15 1:3 1:98 1:20 1:2 2:9 2:86 2:1 2:65 2:412 2:15 2:3 2:1360
models/match/multiview-simnet/
data_process.sh
→
models/match/multiview-simnet/
eval.py
100755 → 100644
浏览文件 @
05fe3b93
#! /bin/bash
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
@@ -14,11 +12,31 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import
random
import
numpy
as
np
import
sklearn.metrics
set
-e
echo
"begin to prepare data"
label
=
[]
filename
=
'./data/label.txt'
f
=
open
(
filename
,
"r"
)
f
.
readline
()
num
=
0
for
line
in
f
.
readlines
():
num
=
num
+
1
line
=
line
.
strip
()
label
.
append
(
float
(
line
))
f
.
close
()
print
(
num
)
mkdir
-p
data/train
mkdir
-p
data/test
filename
=
'./result.txt'
sim
=
[]
for
line
in
open
(
filename
):
line
=
line
.
strip
().
split
(
","
)
line
[
1
]
=
line
[
1
].
split
(
":"
)
line
=
line
[
1
][
1
].
strip
(
" "
)
line
=
line
.
strip
(
"["
)
line
=
line
.
strip
(
"]"
)
sim
.
append
(
float
(
line
))
python generate_synthetic_data.py
auc
=
sklearn
.
metrics
.
roc_auc_score
(
label
,
sim
)
print
(
"auc = "
,
auc
)
models/match/multiview-simnet/evaluate_reader.py
已删除
100755 → 0
浏览文件 @
d4a280b5
# 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.
from
paddlerec.core.reader
import
ReaderBase
from
paddlerec.core.utils
import
envs
class
Reader
(
ReaderBase
):
def
init
(
self
):
self
.
query_slots
=
envs
.
get_global_env
(
"hyper_parameters.query_slots"
,
None
,
"train.model"
)
self
.
title_slots
=
envs
.
get_global_env
(
"hyper_parameters.title_slots"
,
None
,
"train.model"
)
self
.
all_slots
=
[]
for
i
in
range
(
self
.
query_slots
):
self
.
all_slots
.
append
(
str
(
i
))
for
i
in
range
(
self
.
title_slots
):
self
.
all_slots
.
append
(
str
(
i
+
self
.
query_slots
))
self
.
_all_slots_dict
=
dict
()
for
index
,
slot
in
enumerate
(
self
.
all_slots
):
self
.
_all_slots_dict
[
slot
]
=
[
False
,
index
]
def
generate_sample
(
self
,
line
):
def
data_iter
():
elements
=
line
.
rstrip
().
split
()
padding
=
0
output
=
[(
slot
,
[])
for
slot
in
self
.
all_slots
]
for
elem
in
elements
:
feasign
,
slot
=
elem
.
split
(
':'
)
if
not
self
.
_all_slots_dict
.
has_key
(
slot
):
continue
self
.
_all_slots_dict
[
slot
][
0
]
=
True
index
=
self
.
_all_slots_dict
[
slot
][
1
]
output
[
index
][
1
].
append
(
int
(
feasign
))
for
slot
in
self
.
_all_slots_dict
:
visit
,
index
=
self
.
_all_slots_dict
[
slot
]
if
visit
:
self
.
_all_slots_dict
[
slot
][
0
]
=
False
else
:
output
[
index
][
1
].
append
(
padding
)
yield
output
return
data_iter
models/match/multiview-simnet/generate_synthetic_data.py
已删除
100755 → 0
浏览文件 @
d4a280b5
# 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
random
class
Dataset
:
def
__init__
(
self
):
pass
class
SyntheticDataset
(
Dataset
):
def
__init__
(
self
,
sparse_feature_dim
,
query_slot_num
,
title_slot_num
,
dataset_size
=
10000
):
# ids are randomly generated
self
.
ids_per_slot
=
10
self
.
sparse_feature_dim
=
sparse_feature_dim
self
.
query_slot_num
=
query_slot_num
self
.
title_slot_num
=
title_slot_num
self
.
dataset_size
=
dataset_size
def
_reader_creator
(
self
,
is_train
):
def
generate_ids
(
num
,
space
):
return
[
random
.
randint
(
0
,
space
-
1
)
for
i
in
range
(
num
)]
def
reader
():
for
i
in
range
(
self
.
dataset_size
):
query_slots
=
[]
pos_title_slots
=
[]
neg_title_slots
=
[]
for
i
in
range
(
self
.
query_slot_num
):
qslot
=
generate_ids
(
self
.
ids_per_slot
,
self
.
sparse_feature_dim
)
qslot
=
[
str
(
fea
)
+
':'
+
str
(
i
)
for
fea
in
qslot
]
query_slots
+=
qslot
for
i
in
range
(
self
.
title_slot_num
):
pt_slot
=
generate_ids
(
self
.
ids_per_slot
,
self
.
sparse_feature_dim
)
pt_slot
=
[
str
(
fea
)
+
':'
+
str
(
i
+
self
.
query_slot_num
)
for
fea
in
pt_slot
]
pos_title_slots
+=
pt_slot
if
is_train
:
for
i
in
range
(
self
.
title_slot_num
):
nt_slot
=
generate_ids
(
self
.
ids_per_slot
,
self
.
sparse_feature_dim
)
nt_slot
=
[
str
(
fea
)
+
':'
+
str
(
i
+
self
.
query_slot_num
+
self
.
title_slot_num
)
for
fea
in
nt_slot
]
neg_title_slots
+=
nt_slot
yield
query_slots
+
pos_title_slots
+
neg_title_slots
else
:
yield
query_slots
+
pos_title_slots
return
reader
def
train
(
self
):
return
self
.
_reader_creator
(
True
)
def
valid
(
self
):
return
self
.
_reader_creator
(
True
)
def
test
(
self
):
return
self
.
_reader_creator
(
False
)
if
__name__
==
'__main__'
:
sparse_feature_dim
=
1000001
query_slots
=
1
title_slots
=
1
dataset_size
=
10
dataset
=
SyntheticDataset
(
sparse_feature_dim
,
query_slots
,
title_slots
,
dataset_size
)
train_reader
=
dataset
.
train
()
test_reader
=
dataset
.
test
()
with
open
(
"data/train/train.txt"
,
'w'
)
as
fout
:
for
data
in
train_reader
():
fout
.
write
(
' '
.
join
(
data
))
fout
.
write
(
"
\n
"
)
with
open
(
"data/test/test.txt"
,
'w'
)
as
fout
:
for
data
in
test_reader
():
fout
.
write
(
' '
.
join
(
data
))
fout
.
write
(
"
\n
"
)
models/match/multiview-simnet/reader.py
已删除
100755 → 0
浏览文件 @
d4a280b5
# 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.
from
paddlerec.core.reader
import
ReaderBase
from
paddlerec.core.utils
import
envs
class
Reader
(
ReaderBase
):
def
init
(
self
):
self
.
query_slots
=
envs
.
get_global_env
(
"hyper_parameters.query_slots"
,
None
,
"train.model"
)
self
.
title_slots
=
envs
.
get_global_env
(
"hyper_parameters.title_slots"
,
None
,
"train.model"
)
self
.
all_slots
=
[]
for
i
in
range
(
self
.
query_slots
):
self
.
all_slots
.
append
(
str
(
i
))
for
i
in
range
(
self
.
title_slots
):
self
.
all_slots
.
append
(
str
(
i
+
self
.
query_slots
))
for
i
in
range
(
self
.
title_slots
):
self
.
all_slots
.
append
(
str
(
i
+
self
.
query_slots
+
self
.
title_slots
))
self
.
_all_slots_dict
=
dict
()
for
index
,
slot
in
enumerate
(
self
.
all_slots
):
self
.
_all_slots_dict
[
slot
]
=
[
False
,
index
]
def
generate_sample
(
self
,
line
):
def
data_iter
():
elements
=
line
.
rstrip
().
split
()
padding
=
0
output
=
[(
slot
,
[])
for
slot
in
self
.
all_slots
]
for
elem
in
elements
:
feasign
,
slot
=
elem
.
split
(
':'
)
if
not
self
.
_all_slots_dict
.
has_key
(
slot
):
continue
self
.
_all_slots_dict
[
slot
][
0
]
=
True
index
=
self
.
_all_slots_dict
[
slot
][
1
]
output
[
index
][
1
].
append
(
int
(
feasign
))
for
slot
in
self
.
_all_slots_dict
:
visit
,
index
=
self
.
_all_slots_dict
[
slot
]
if
visit
:
self
.
_all_slots_dict
[
slot
][
0
]
=
False
else
:
output
[
index
][
1
].
append
(
padding
)
yield
output
return
data_iter
models/match/multiview-simnet/readme.md
0 → 100644
浏览文件 @
05fe3b93
# multiview-simnet文本匹配模型
以下是本例的简要目录结构及说明:
```
├── data #样例数据
├── train
├── train.txt #训练数据样例
├── test
├── test.txt #测试数据样例
├── preprocess.py #数据处理程序
├── __init__.py
├── README.md #文档
├── model.py #模型文件
├── config.yaml #配置文件
├── run.sh #运行脚本
├── eval.py #评价脚本
```
注:在阅读该示例前,建议您先了解以下内容:
[
paddlerec入门教程
](
https://github.com/PaddlePaddle/PaddleRec/blob/master/README.md
)
## 内容
-
[
模型简介
](
#模型简介
)
-
[
数据准备
](
#数据准备
)
-
[
运行环境
](
#运行环境
)
-
[
快速开始
](
#快速开始
)
-
[
效果复现
](
#效果复现
)
-
[
进阶使用
](
#进阶使用
)
-
[
FAQ
](
#FAQ
)
## 模型简介
在个性化推荐场景中,推荐系统给用户提供的项目(Item)列表通常是通过个性化的匹配模型计算出来的。在现实世界中,一个用户可能有很多个视角的特征,比如用户Id,年龄,项目的点击历史等。一个项目,举例来说,新闻资讯,也会有多种视角的特征比如新闻标题,新闻类别等。多视角Simnet模型是可以融合用户以及推荐项目的多个视角的特征并进行个性化匹配学习的一体化模型。 多视角Simnet模型包括多个编码器模块,每个编码器被用在不同的特征视角上。当前,项目中提供Bag-of-Embedding编码器,Temporal-Convolutional编码器,和Gated-Recurrent-Unit编码器。我们会逐渐加入稀疏特征场景下比较实用的编码器到这个项目中。模型的训练方法,当前采用的是Pairwise ranking模式进行训练,即针对一对具有关联的User-Item组合,随机实用一个Item作为负例进行排序学习。
模型的具体细节可以阅读论文
[
MultiView-Simnet
](
https://www.microsoft.com/en-us/research/wp-content/uploads/2016/02/frp1159-songA.pdf
)
:
<p
align=
"center"
>
<img
align=
"center"
src=
"../../../doc/imgs/multiview-simnet.png"
>
<p>
## 数据准备
我们公开了自建的测试集,包括百度知道、ECOM、QQSIM、UNICOM 四个数据集。这里我们选取百度知道数据集来进行训练。执行以下命令可以获取上述数据集。
```
wget --no-check-certificate https://baidu-nlp.bj.bcebos.com/simnet_dataset-1.0.0.tar.gz
tar xzf simnet_dataset-1.0.0.tar.gz
rm simnet_dataset-1.0.0.tar.gz
```
数据格式为一个标识句子的slot,后跟一个句子中词的token。两者形成{slot:token}的形式标识一个词:
```
0:358 0:206 0:205 0:250 0:9 0:3 0:207 0:10 0:330 0:164 1:1144 1:217 1:206 1:9 1:3 1:207 1:10 1:398 1:2 2:217 2:206 2:9 2:3 2:207 2:10 2:398 2:2
0:358 0:206 0:205 0:250 0:9 0:3 0:207 0:10 0:330 0:164 1:951 1:952 1:206 1:9 1:3 1:207 1:10 1:398 2:217 2:206 2:9 2:3 2:207 2:10 2:398 2:2
```
## 运行环境
PaddlePaddle>=1.7.2
python 2.7
PaddleRec >=0.1
os : linux
## 快速开始
本文提供了样例数据可以供您快速体验,在paddlerec目录下直接执行下面的命令即可启动训练:
```
python -m paddlerec.run -m models/match/multiview-simnet/config.yaml
```
## 效果复现
为了方便使用者能够快速的跑通每一个模型,我们在每个模型下都提供了样例数据。如果需要复现readme中的效果,请按如下步骤依次操作即可。
1.
确认您当前所在目录为PaddleRec/models/match/multiview-simnet
2.
在data目录下载并解压数据集,命令如下:
```
cd data
wget --no-check-certificate https://baidu-nlp.bj.bcebos.com/simnet_dataset-1.0.0.tar.gz
tar xzf simnet_dataset-1.0.0.tar.gz
rm -f simnet_dataset-1.0.0.tar.gz
mv data/zhidao ./
rm -rf data
```
3.
本文提供了快速将数据集中的汉字数据处理为可训练格式数据的脚本,您在解压数据集后,可以看见目录中存在一个名为zhidao的文件。然后能可以在python3环境下运行我们提供的preprocess.py文件。即可生成可以直接用于训练的数据目录test.txt,train.txt和label.txt。将其放入train和test目录下以备训练时调用。命令如下:
```
python3 preprocess.py
rm -f ./train/train.txt
mv train.txt ./train
rm -f ./test/test.txt
mv test.txt ./test
cd ..
```
4.
退回tagspace目录中,打开文件config.yaml,更改其中的参数
将workspace改为您当前的绝对路径。(可用pwd命令获取绝对路径)
5.
执行脚本,开始训练.脚本会运行python -m paddlerec.run -m ./config.yaml启动训练,并将结果输出到result文件中。然后启动评价脚本eval.py计算auc:
```
sh run.sh
```
运行结果大致如下:
```
('auc = ', 0.5944897959183673)
```
## 进阶使用
## FAQ
models/match/multiview-simnet/run.sh
0 → 100644
浏览文件 @
05fe3b93
#!/bin/bash
echo
"................run................."
python
-m
paddlerec.run
-m
./config.yaml
>
result1.txt
grep
-i
"query_pt_sim"
./result1.txt
>
./result2.txt
sed
'$d'
result2.txt
>
result.txt
rm
-f
result1.txt
rm
-f
result2.txt
python eval.py
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录