摘要: https://www.cnblogs.com/yunerlalala/p/6295500.html 阅读全文
posted @ 2020-04-19 00:27 程式交易 阅读(339) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/diaosir/p/6289571.html 阅读全文
posted @ 2020-04-19 00:26 程式交易 阅读(664) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/dennis-liucd/p/7669161.html https://www.cnblogs.com/kingwolfofsky/archive/2011/08/14/2138081.html 阅读全文
posted @ 2020-04-18 23:53 程式交易 阅读(2116) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_27384769/article/details/79490255 阅读全文
posted @ 2020-04-17 14:15 程式交易 阅读(125) 评论(0) 推荐(0) 编辑
摘要: import numpy as np def tanh(x): #双曲函数 return np.tanh(x) def tanh_deriv(x):#更新权重时,需要用到双曲函数的倒数 return 1.0 - np.tanh(x)*np.tanh(x) def logistic(x):#构建逻辑函 阅读全文
posted @ 2020-04-16 20:26 程式交易 阅读(218) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/songzhixue/p/11296720.html 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里云:http://mirrors.aliyun.com/pypi/simple/ 中国科技大学 https 阅读全文
posted @ 2020-04-05 09:47 程式交易 阅读(146) 评论(0) 推荐(0) 编辑
摘要: import matplotlib.pyplot as plt import numpy as np import sklearn import sklearn.datasets import sklearn.linear_model import matplotlib 阅读全文
posted @ 2020-04-05 09:24 程式交易 阅读(135) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/58964140 阅读全文
posted @ 2020-04-05 09:05 程式交易 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 【AIOQuant量化交易框架】https://www.bilibili.com/video/BV1EJ41197Fx?from=search&seid=15683397763115656476 【深度学习】https://www.bilibili.com/video/BV1Xt411r7H2?fr 阅读全文
posted @ 2020-03-26 20:49 程式交易 阅读(304) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python3 import tkinter as tk window = tk.Tk() window.title('yyyyy') window.geometry("200x100") var = tk.StringVar() # l = tk.Label(window, 阅读全文
posted @ 2020-03-22 09:39 程式交易 阅读(160) 评论(0) 推荐(0) 编辑