TensorFlowJS的入门资料

接口部分

最基本的核心概念:Tensor,Tensor的运算
https://js.tensorflow.org/tutorials/core-concepts.html

Layer的创建和概念:
https://js.tensorflow.org/tutorials/tfjs-layers-for-keras-users.html

模型。模型是和Layer关系很紧密的概念,或者说,模型描述了Layer之间的拓扑逻辑关系:
https://js.tensorflow.org/api/0.6.1/#sequential

理论和算法部分

CNN概览:
http://cs231n.github.io/

梯度的解释:
https://spin.atomicobject.com/2014/06/24/gradient-descent-linear-regression/
http://cs231n.github.io/optimization-1/

你可能感兴趣的:(TensorFlowJS)