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

https://github.com/formtrix/expresstsb


https://github.com/formtrix/expresstsb

express

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

express server app :::::::::::::::::::::/

# 2D Tensor (Matrix)

## (2 matrices, 2x2) Shape: (2, 2, 2)

```js
tensor = np.array([
[
[1, 2],
[3, 4],
],
[
[5, 6],
[7, 8],
],
]);
```

# 3D tensor, 2x2

```js
(3 matrices, 2x2)
tensor = np.array([
[[1, 2], [3, 4]],
[[5, 6], [7, 8]],
[[9, 10], [11, 12]]
])
```

# 3D Tensor 3x3

```js
(3 matrices, 3x3)
tensor = np.array([
[[1, 2, 3], [4, 5, 6], [7, 8, 9]],
[[10, 11, 12], [13, 14, 15], [16, 17, 18]],
[[19, 20, 21], [22, 23, 24], [25, 26, 27]]
])
```

```json
A 2x2 matrix with 2 matrices.
A 2x2 matrix with 3 matrices.
A 3x3 matrix with 3 matrices.
```