Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit90891ae

Browse files
modify hyperparameter according to [XingChi Chen 2015]
1 parent798cadf commit90891ae

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

‎python/dnlp/config/config.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33

44
classDnnCrfConfig(object):
5-
def__init__(self,*,skip_left:int=1,skip_right:int=0,embed_size:int=200,hidden_units:int=150,
6-
learning_rate:float=0.01,lam:float=1e-4,dropout_rate:float=0.6,batch_length:int=300,
5+
def__init__(self,*,skip_left:int=0,skip_right:int=2,embed_size:int=100,hidden_units:int=150,
6+
learning_rate:float=0.2,lam:float=1e-4,dropout_rate:float=0.2,batch_length:int=300,
77
batch_size=20):
88
self.__skip_left=skip_left
99
self.__skip_right=skip_right

‎python/scripts/cws_ner.py‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
deftrain_cws():
1111
data_path='../dnlp/data/cws/pku_training.pickle'
1212
config=DnnCrfConfig()
13-
dnncrf=DnnCrf(config=config,data_path=data_path,nn='bilstm')
13+
dnncrf=DnnCrf(config=config,data_path=data_path,nn='lstm')
1414
dnncrf.fit()
1515

1616

@@ -19,7 +19,7 @@ def test_cws():
1919
sentence='中国人民决心继承邓小平同志的遗志,继续把建设有中国特色社会主义事业推向前进。'
2020
model_path='../dnlp/models/cws32.ckpt'
2121
config=DnnCrfConfig()
22-
dnncrf=DnnCrf(config=config,mode='predict',model_path=model_path,nn='bilstm')
22+
dnncrf=DnnCrf(config=config,mode='predict',model_path=model_path,nn='lstm')
2323
res,labels=dnncrf.predict_ll(sentence,return_labels=True)
2424
print(res)
2525
evaluate_cws(dnncrf,'../dnlp/data/cws/pku_test.pickle')

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp