TFGA-TensorFlow几何代数
| | |
使用TensorFlow 2的Geometric / Clifford Algebra的Python软件包。
该项目正在进行中。 其API可能会更改,示例尚未完善。
欢迎通过提出问题或来提出请求和建议。
安装
使用pip install tfga : pip install tfga
要求:
Python 3
张量流2
麻木
基本用法
有两种使用此库的方法。 在这两种方式中,我们首先创建一个给定度量的实例。 然后我们可以直接在实例上工作,其中假定最后一个轴与代数的刀片相对应。
import tensorflow as tf
from tfga import GeometricAlgebra
# Create an algebra with 3 basis vectors given their metric.
# Co
1