crownpku / Information-Extraction-Chinese

Chinese Named Entity Recognition with IDCNN/biLSTM+CRF, and Relation Extraction with biGRU+2ATT 中文实体识别与关系提取
2.22k stars 814 forks source link

extraction question #73

Open z744364418p opened 6 years ago

z744364418p commented 6 years ago

wordembedding = np.load('./data/vec.npy')

print('reading training data')
train_y = np.load('./data/train_y.npy')
train_word = np.load('./data/train_word.npy')
train_pos1 = np.load('./data/train_pos1.npy')
train_pos2 = np.load('./data/train_pos2.npy')

这些文件没在数据中看到

weilongheal commented 5 years ago

Run initial.py first,will generate files you need