-
大小: 33.78MB文件类型: .gz金币: 1下载: 0 次发布日期: 2023-06-15
- 语言: 其他
- 标签: PTB TensorFlow LSTM
资源简介
用于LSTM自然语言处理的经典数据集,本来想免费的,现在CSDN最低两分,各位对不住了
代码片段和文件信息
#include
#include
void main(int argc char **argv)
{
int a b i cn bestwcn wcn last_nbest nbest;
float bestscore score acscore lmscore rnnscore;
float LM_SCALE WI_PENALTY;
char st[1000];
char best[1000][1000];
char curr[1000][1000];
FILE *f1 *f2;
if (argc<=2) {
printf(“Need 2 arguments - score file & nbest list\n“);
exit(1);
}
f1=fopen(argv[1] “rb“);
f2=fopen(argv[2] “rb“);
i=0;
bestwcn=0;
bestscore=-1000000;
last_nbest=0;
while (1) {
fscanf (f1 “%f“ &rnnscore);
fscanf (f2 “%d“ &nbest);
if ((last_nbest!=nbest) || feof(f2)) {
for (a=0; a printf(“\n“);
bestwcn=0;
bestscore=-1000000;
}
last_nbest=nbest;
if (feof(f1)) break;
fscanf (f2 “%f“ &acscore);
fscanf (f2 “%f“ &lmscore);
fscanf (f2 “%d“ &wcn);
wcn=0;
fscanf (f2 “%s“ st);
fscanf (f2 “%s“ st);
while (1) {
fscanf (f2 “%s“ curr[wcn]);
if (!strcmp(curr[wcn] ““)) break;
wcn++;
}
fscanf (f2 “%s“ st);
LM_SCALE=14;
WI_PENALTY=0;
score=acscore + rnnscore*LM_SCALE + wcn*WI_PENALTY/(2.718);
//score=acscore + (rnnscore+lmscore)/2*LM_SCALE + wcn*WI_PENALTY/(2.718); //optionally the LM scores from lattices can be used like this
if (score>bestscore) {
for (a=0; a bestwcn=wcn;
bestscore=score;
}
}
}
相关资源
- Sklearn与TensorFlow 机器学习实用指南翻
- 《深度学习之TensorFlow:入门、原理与
- tensorflow-resnet-inception网络
- 强化学习精要 核心算法与TensorFlow实现
- 《Tensorflow:实战Google深度学习框架》
- 基于深度学习的图像去雨
- tensorflow深度学习三部曲.rar
- 21个项目玩转tensorflow.zip
- 衣服种类图片分类pb模型和名字txt
- cifar10经典数据集
- 人脸识别的TensorFlow源代码
- 《21个项目玩转深度学习:基于Tenso
- 机器学习实战:基于Scikit-Learn和Tens
- hands on machine learning with scikit learn an
- tkinter+cv2+tensorflow车牌识别软件.zip
- 基于LSTM长短期记忆的影评情感分析
- 地标训练数据
- 深度学习之美-张玉宏
- tensorflow_gpu-1.4.0-cp35-cp35m-win_amd64.whl
- Hands-On Machine Learning with Scikit-Learn an
- Scikit-Learn与TensorFlow机器学习实用指南
- 利用TensorFlow构建LSTM对多维数据进行拟
- 4个lstm做数据预测的案例源代码,包括
- snowman_yolo.rar
- opencv4.0调用TensorFlow实现mask rcnn的训练
- tensorflow数据集制作以及使用Inception
- 《Hands-on Machine Learning with Scikit-Learn
- tensorflow+cnn神经网络学习模型保存及调
- 残差网络resnet_50_ckpt文件
- TensorFlow 教材,中文版资料
评论
共有 条评论