问题: 现在本地ssh连接eth的daint服务器, 连接需要进行两次ssh: 第一次本地连接到ela服务器, 第二次从ela再次ssh到daint. 现在配置本地的ssh代理使之可以一次完成.
第一步: 生成sshkey
ssh-keygen
cat ~/.ssh/id_rsa.pub …问题: 现在本地ssh连接eth的daint服务器, 连接需要进行两次ssh: 第一次本地连接到ela服务器, 第二次从ela再次ssh到daint. 现在配置本地的ssh代理使之可以一次完成.
ssh-keygen
cat ~/.ssh/id_rsa.pub …scala is pure OO: every value is an obj, every operation is a method of obj.
scala.Int scala.Boolean maps to JVM standard primitive types.
Implement Boolean withous primitive type in scala:
Then defin false and true as objects, give implementation for ifThenElse() funciton:
object …This week, we'll cover traits, and we'll learn how to organize classes into hierarchies. We'll cover the hierarchy of standard Scala types, and see how to organize classes and traits into packages. Finally, we'll touch upon the different sorts of polymorphism in Scala.
abstract …This week, we'll learn about functions as first-class values, and higher order functions. We'll also learn about Scala's syntax and how it's formally defined. Finally, we'll learn about methods, classes, and data abstraction through the design of a data structure for rational numbers.
higher order functions …
In this week, we'll learn the difference between functional imperative programming. We step through the basics of Scala; covering expressions, evaluation, conditionals, functions, and recursion
imperative programming:
~~~> Von Neumann computer:
conceptualize data structures …
Get up and running with Scala on your computer. Complete an example assignment to familiarize yourself with our unique way of submitting assignments.
use worksheet as a better REPL
navigate to the directory of the assignment you are working on, then start sbt.
(when first running …
problems with text:
→ need a lot of labeled data ⇒ not realistic.
⇒ unsupervised learning
similar words appear in similar context.
embedding: map words to small vectors

measure the closeness by cosine distance:
initial: random vector …
statistical invariance → weight sharing
e.g. image colors, translation invariance...
is NNs that share their weights across space.
convolution: slide a small patch of NN over the image to produce a new "image"
convnet forms a pyramid, each "stack of pincake" get larger depth and smaller area.
matrix multiplication: fast with GPU
numerically stable
cannot cocatenate linear units → equivalent to one big matrix...
⇒ add non-linear units in between
chain rule: efficient computationally
easy to compute the gradient as long as the function Y(X) is made of simple blocks …
这是udacity上deeplearning的笔记, 做得非常粗糙, 而且这门课也只是介绍性质的... https://www.udacity.com/course/deep-learning--ud730
socres yi ⇒ probabilities pi

property: smaller scores ⇒ less certain about result


measure how well the probability …