- 博客(1)
- 资源 (1)
- 收藏
- 关注
原创 numpy实现的soft-max方法
numpy实现的soft-max方法soft-max soft-max soft-max 是人工智能领域被大范围的使用的一个方法。 借助numpy的向量运算,可以很容易的实现: import numpy as np def softmax( f ): # 坏的实现: 数值问题 return np.exp(f) / np.sum(np.exp(f)) 但是,上面的实现存在问题。...
2019-12-28 14:39:58
7227
The Blender Python API.pdf
The Blender Python API
Precision 3D Modeling and Add-on Development
Chapter 1: The Blender Interface
Chapter 2: The bpy Module
Chapter 3: The bmesh Module
Chapter 4: Topics in Modeling and Rendering
Chapter 5: Introduction to Add-On Development
Chapter 6: The bgl and blf Modules
Chapter 7: Advanced Add-On Development
Chapter 8: Textures and Rendering
2019-12-28
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人