An open API service indexing awesome lists of open source software.

https://github.com/dirkschumacher/tfjs-backsolve

Back-substitution for rank2/1 tensors in tensorflow.js
https://github.com/dirkschumacher/tfjs-backsolve

tensorflow tensorflow-js

Last synced: about 2 hours ago
JSON representation

Back-substitution for rank2/1 tensors in tensorflow.js

Awesome Lists containing this project

README

        

# tfjs-backsolve
Back-substitution for rank 2 tensors in tensorflow.js

Experimental. Use at own risk.

```js
const L = tfc.tensor2d([[2, 4, 8], [0, 16, 32], [0, 0, 64]])
const b = tfc.tensor2d([[20], [400], [8000]])
const result = backsolve(L, b)
// [[-40], [-225], [125]]
```