|
|
|
|
|
by ghj
2122 days ago
|
|
I can give another example use case. Say I know math but don't know tf api. I already know how to matrix multiply with `@` but don't know the function for matrix power. Then in theory it should be fairly quick for me to create a random matrix and feed it `mat @ mat`, `mat @ mat @ mat`, `mat @ mat @ mat @ mat`, etc until it spits out the correct tf function I should call for matrix_power. This is even better than googling since it guarantees that the function it found is correct for your example (googling returns tf.pow tf.exp tf.expm, none of which are actually what you want!) |
|