2018年5月的全部文章
@kidultff

PAT-A 真题- 1015. Reversible Primes

原题干:A reversible prime in any number system is a prime whose "reverse" in that number system is also a prime. For example in the decimal system 73 is a reversible prime because its reverse 37 is also a pri ...
  • 0
  • 0
@kidultff

Python实现Softmax回归+不借助框架识别MNIST手写数字集

在上一节讲到了Softmax回归的数学原理,这一节我们来将其使用Python实现出来!在本文的程序中,除了下载并读取MNIST之外,不会使用任何深度学习框架,纯Python+Numpy实现,小白专用!首先下载并读取MNIST数据集,这里我们使用Tensorflow进行下载和 ...
  • 0
  • 12
@kidultff

神经网络和深度学习--Softmax回归

    前面讲过了Logistic回归,Logistic回归比较简单,实现起来比较容易。    如果现在有一个新的课题: 识别MNIST手写图像(一个大型手写数字0-9的训练集,训练集下载链接:http://yann.lecun.com/exd ...
  • 0
  • 10
@kidultff

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 ...
  • 0
  • 0
@kidultff

神经网络和深度学习--Python实现Logistic回归

前面我们讲了Logistic回归的详细内容,让我们使用Python来完成它吧!# coding:UTF-8     import numpy as np def sigmoid(x):     return 1 / (1 +  ...
  • 0
  • 1