ThoughtWorks 史凯 - Deeplearning Scala——开源深度学习框架 思考与实践_部分2

2020-03-04 217浏览

  • 1.TALK IS CHEAP SHOW ME THE CODE begin with a story 18
  • 2.GROWTH OF DATA SCIENCEhttps://arxiv.org/pdf/1703.00548v1.pdf19
  • 3.
  • 4.DEEP LEARNING Deep Learning Ian Goodfellow Yoshua Bengio Aaron Courville 21
  • 5.NEURO NETWORK IS FUNCTIONAL PROGRAMMING deeplearning.scala 22
  • 6.23
  • 7.IQ TEST ROBOT What is the next number in the sequence? 3,4,5,? 13,19,25,? 24
  • 8.THE SIGNATURE OF IQ TEST ROBOT def guessNextNumber(question:Seq[Double]): DoubleLayer = ??? println(guessNextNumber(Seq(3, 4, 5)).predict.blockingAwait) println(guessNextNumber(Seq(13, 19, 25)).predict.blockingAwait) 25
  • 9.TRAINING THE IQ TEST ROBOT def lossFunction(robotAnswer:DoubleLayer,expectedAnswer:'>expectedAnswer: