当前位置: 首页 > news >正文

淘宝客网站要多大空间漳州哪里做网站

淘宝客网站要多大空间,漳州哪里做网站,wordpress 文章与页面,互联网营销师证书查询入口系列文章 【如何训练一个中译英翻译器】LSTM机器翻译seq2seq字符编码#xff08;一#xff09; 【如何训练一个中译英翻译器】LSTM机器翻译模型训练与保存#xff08;二#xff09; 【如何训练一个中译英翻译器】LSTM机器翻译模型部署#xff08;三#xff09; 【如何训练…系列文章 【如何训练一个中译英翻译器】LSTM机器翻译seq2seq字符编码一 【如何训练一个中译英翻译器】LSTM机器翻译模型训练与保存二 【如何训练一个中译英翻译器】LSTM机器翻译模型部署三 【如何训练一个中译英翻译器】LSTM机器翻译模型部署之onnxpython四 目录 一、事情准备二、模型转换三、ncnn模型加载与推理python版 一、事情准备 这篇是在【如何训练一个中译英翻译器】LSTM机器翻译模型部署之onnxpython四的基础上进行的要用到文件为 input_words.txt target_words.txt config.json encoder_model-sim.onnx decoder_model-sim.onnx 其中的onnx就是用来转为ncnn模型的这里借助了onnx这个中间商所以前面我们需要先通过onnxsim对模型进行simplify要不然在模型转换时会出现op不支持的情况模型转换不仅有中间商这个例子目前还可以通过pnnx直接将pytorch模型转为ncnn感兴趣的小伙伴可以去折腾下 老规矩先给出工具 onnx2ncnnhttps://github.com/Tencent/ncnn netronhttps://netron.app二、模型转换 这里进行onnx转ncnn通过命令进行转换 onnx2ncnn onnxModel/encoder_model-sim.onnx ncnnModel/encoder_model.param ncnnModel/encoder_model.bin onnx2ncnn onnxModel/decoder_model-sim.onnx ncnnModel/decoder_model.param ncnnModel/decoder_model.bin转换成功可以看到 转换之后可以对模型进行优化但是奇怪的是这里优化了不起作用去不了MemoryData这些没用的op ncnnoptimize ncnnModel/encoder_model.param ncnnModel/encoder_model.bin ncnnModel/encoder_model.param ncnnModel/encoder_model.bin 1 ncnnoptimize ncnnModel/decoder_model.param ncnnModel/decoder_model.bin ncnnModel/decoder_model.param ncnnModel/decoder_model.bin 1三、ncnn模型加载与推理python版 跟onnx的推理比较类似就是函数的调用方法有点不同这里先用python实现验证下是否没问题方面后面部署到其它端比如android。 主要包括模型加载、推理模型搭建跟模型推理但要注意的是这里的输入输出名称需要在param这个文件里面获取。 采用netron分别查看encoder与decoder的网络结构获取输入输出名称 有点问题先把调试代码贴在下面了 import numpy as np import ncnn# 加载字符 # 从 input_words.txt 文件中读取字符串 with open(config/input_words.txt, r) as f:input_words f.readlines()input_characters [line.rstrip(\n) for line in input_words]# 从 target_words.txt 文件中读取字符串 with open(config/target_words.txt, r, newline) as f:target_words [line.strip() for line in f.readlines()]target_characters [char.replace(\\t, \t).replace(\\n, \n) for char in target_words]#字符处理以方便进行编码 input_token_index dict([(char, i) for i, char in enumerate(input_characters)]) target_token_index dict([(char, i) for i, char in enumerate(target_characters)])# something readable. reverse_input_char_index dict((i, char) for char, i in input_token_index.items()) reverse_target_char_index dict((i, char) for char, i in target_token_index.items()) num_encoder_tokens len(input_characters) # 英文字符数量 num_decoder_tokens len(target_characters) # 中文文字数量import json with open(config/config.json, r) as file:loaded_data json.load(file)# 从加载的数据中获取max_encoder_seq_length和max_decoder_seq_length的值 max_encoder_seq_length loaded_data[max_encoder_seq_length] max_decoder_seq_length loaded_data[max_decoder_seq_length]encoder_model ncnn.Net()encoder_model.load_param(ncnnModel/encoder_model.param) encoder_model.load_model(ncnnModel/encoder_model.bin)decoder_model ncnn.Net() decoder_model.load_param(ncnnModel/decoder_model.param) decoder_model.load_model(ncnnModel/decoder_model.bin)def decode_sequence(input_seq):# Encode the input as state vectors.ex_encoder encoder_model.create_extractor()ex_encoder.input(input_1, ncnn.Mat(input_seq))_, LSTM_1 ex_encoder.extract(LSTM__31:1)_, LSTM_2 ex_encoder.extract(LSTM__31:2)print(LSTM_1)print(LSTM_2)# Generate empty target sequence of length 1.target_seq np.zeros((1, 1, 849))# Populate the first character of target sequence with the start character.target_seq[0, 0, target_token_index[\t]] 1.# this target_seq you can treat as initial state# Sampling loop for a batch of sequences# (to simplify, here we assume a batch of size 1).stop_condition Falsedecoded_sentence while not stop_condition:ex_decoder decoder_model.create_extractor()print(ncnn.Mat(target_seq))print(---------)ex_decoder.input(input_2, ncnn.Mat(target_seq))ex_decoder.input(input_3, LSTM_1)ex_decoder.input(input_4, LSTM_2)_, output_tokens ex_decoder.extract(dense)_, h ex_decoder.extract(lstm_1)_, c ex_decoder.extract(lstm_1_1)print(output_tokens)print(h)print(c)print(fdsf)output_tokens np.array(output_tokens)h np.array(h)c np.array(c)print(output_tokens.shape)print(output_tokens.shape)print(h.shape)print(c.shape)#print(gfdgd)#output_tokens, h, c decoder_model.predict([target_seq] states_value)# Sample a token# argmax: Returns the indices of the maximum values along an axis# just like find the most possible charsampled_token_index np.argmax(output_tokens[0, -1, :])# find char using indexsampled_char reverse_target_char_index[sampled_token_index]# and append sentencedecoded_sentence sampled_char# Exit condition: either hit max length# or find stop character.if (sampled_char \n or len(decoded_sentence) max_decoder_seq_length):stop_condition True# Update the target sequence (of length 1).# append then ?# creating another new target_seq# and this time assume sampled_token_index to 1.0target_seq np.zeros((1, 1, num_decoder_tokens))target_seq[0, 0, sampled_token_index] 1.# Update states# update states, frome the front partsstates_value [h, c]return decoded_sentenceimport numpy as npinput_text Call me. encoder_input_data np.zeros((1,max_encoder_seq_length, num_encoder_tokens),dtypefloat32) for t, char in enumerate(input_text):print(char)# 3D vector only z-index has char its value equals 1.0encoder_input_data[0,t, input_token_index[char]] 1.input_seq encoder_input_data decoded_sentence decode_sequence(input_seq) print(-) print(Input sentence:, input_text) print(Decoded sentence:, decoded_sentence)
http://www.sadfv.cn/news/280580/

相关文章:

  • dede网站地图html文件如何查到别人的网站做哪些竞价词
  • 标准网站建设费用wordpress商业模板个人
  • 如何判断一个网站的关键词是否难做建立一个网站需要多少钱
  • 网站 图片水印中华门窗网怎么做网站
  • 网站开发的技术简介双线网站选服务器
  • 重庆模板网站哪个好自助服务平台
  • 河南省建设安全监督总站网站dedecms物流企业网站模板(适合快递
  • 河北网站备案 多长时间通过网站建设和管理工作
  • 湟源县网站建设营销培训去哪个学校好
  • 医院网站怎么做运营个人工作室网站怎么做
  • 阳江网站网站建设互联网+大学生创新创业项目
  • 网站建设相关资料文件app模板
  • 天坛网站建设伦敦 wordpress 设计
  • 拼多多网站首页域名连接到网站吗
  • 上海市建设局官方网站企业网站建设代理
  • 福永营销型网站多少钱做国外网站需要多少钱
  • 提高网站建设管理水平番禺做网站多少钱
  • 台州网站公司电子商务网站的建设及规划
  • 网站建设方案书 5个备案网站怎么更新数据
  • 小说网站 做百度联盟站长工具星空传媒
  • jquery效果网站外贸php网站源码
  • 百度给做网站吗网站优化 推广
  • 安监网站如何做紧急预案备案四川省住房建设厅网站打不开
  • 学校网站html模板wordpress 问卷
  • 网站logo做黑页wordpress 爬虫 视频
  • 免费自己怎么注册网站电竞网站开发需求报告
  • c2c网站购物体验情况登记表课程分销的网站怎么做
  • 怎样建网站邢台哪儿专业做网站
  • 网站架构设计师求职信宁海县做企业网站
  • 西安电脑网站建设515ppt网站建设