深度学习
无敌的绅士
这个作者很懒,什么都没留下…
展开
-
量化网址记录
rm -r ~/.cache/pip原创 2021-03-03 19:51:40 · 2753 阅读 · 1 评论 -
c++实现lstm
下面展示一些 内联代码片。c++实现lstm,通过加载tensorflow训练得到的权重,实现点的跟踪。// An highlighted block#include <fstream>#include <string>#include <iostream>#include <cmath>#include <stdlib.h>#include <vector>#include <string.h>usin原创 2021-01-21 15:15:08 · 1575 阅读 · 0 评论 -
纯python 实现lstm,进行点的跟踪。
纯python 实现lstm,进行点的跟踪。// An highlighted blockimport numpy as npfrom pandas import read_excelimport matplotlib.pyplot as pltfrom sklearn.preprocessing import MinMaxScaler# global h_tm_c, h_tm_f, h_tm_i, h_tm_o, c_tm# global h_tm_c2, h_tm_f2, h_tm_i原创 2021-01-21 15:07:17 · 700 阅读 · 1 评论 -
lstm tensorflow,keras的实现
lstm的tensorflow实现多变量输入(通过输入五个点(二维,x,y),预测第十个点),我是在jupyter notebook上实现的,如果想在pycharm上运行,需要稍作修改。读取的excel文件是n行2列的连续点,另外,还有python和c++的lstm实现(通过加载训练好的权重进行预测)在我其他博客里,整个项目可以去我github下载。#!/usr/bin/env python# coding: utf-8# In[108]:import numpyimport matp原创 2021-01-07 15:18:16 · 735 阅读 · 0 评论 -
dnn深度神经网络,mlp多层感知器的实现
dnn:mpl:例如:项目场景:示例:通过蓝牙芯片(HC-05)与手机 APP 通信,每隔 5s 传输一批传感器数据(不是很大)问题描述:dnn:#!/usr/bin/env python# coding: utf-8# In[1]:import tensorflow as tfimport xlrdimport osfrom openpyxl import load_workbookfrom xlutils.copy import copy# In[2]:im原创 2021-01-04 15:54:35 · 657 阅读 · 0 评论 -
加载jupyter notebook 的两种方式
#第一种python -m ipykernel install --user --name=py37#第二种conda activate tensorflow (你的环境名称)conda install nb_conda_kernels``原创 2021-01-04 15:44:29 · 289 阅读 · 0 评论 -
大量excel 数据划分测试集和训练集 tensorflow pytorch
excel split train an testexcel hua fen train and test代码excel hua fen train and test代码// An highlighted blockimport xlrdimport numpy as npfrom xlutils.copy import copydata_path = 'C:\\Users\\gj7520\\Desktop\\pythob_files\\file_select\\data2\\train原创 2021-01-04 15:39:24 · 2808 阅读 · 0 评论