@kidultff · 2018年4月21日 神经网络和深度学习--Softmax回归 前面讲过了Logistic回归,Logistic回归比较简单,实现起来比较容易。 如果现在有一个新的课题: 识别MNIST手写图像(一个大型手写数字0-9的训练集,训练集下载链接:http://yann.lecun.com/exd ...
@kidultff · 2018年4月20日 PAT-A 真题- 1090. Highest Price in Supply Chain 原题干:A supply chain is a network of retailers(零售商), distributors(经销商), and suppliers(供应商)-- everyone involved in moving a product from supplier to customer.Starting from one root supplier, everyone on the chain ...
@kidultff · 2018年4月20日 神经网络和深度学习--Python实现Logistic回归 前面我们讲了Logistic回归的详细内容,让我们使用Python来完成它吧!# coding:UTF-8 import numpy as np def sigmoid(x): return 1 / (1 + ...
@kidultff · 2018年4月19日 解决安装MySQL-python时提示Command "python setup.py egg_info" failed 使用pip安装MYSQL-python:pip install MYSQL-python结果报错:Collecting MySQL-python Using cached https://files.pythonhosted.org/packages/a5/e9/51b544da85a36a68debe7a7091f068d802fc515a3a20265282 ...
@kidultff · 2018年4月18日 Ubuntu解决非root用户监听1024以下端口 Ubuntu系统中,非root用户是无法监听80,443等1024以下的端口,这就造成了很大的麻烦,比如Nginx/Tomcat无法在80端口下运行等等,解决的最佳办法是使用iptables进行转发:使用root用户执行下面的代码:iptables -t nat -A PRE ...