Skip to content
This repository was archived by the owner on Aug 15, 2019. It is now read-only.

Commit a90a74a

Browse files
HanKruigerNikhil Thorat
authored andcommitted
Fix typo in intro.md. (#852)
1 parent 11d77f1 commit a90a74a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tutorials/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ this is a relatively expensive operation, so you would likely want to call the a
5555

5656
### Operations (Ops)
5757

58-
While Tensors allow us to store data, ops allow us to manipulate data. __deeplearn.js__ comes with a wide variety of mathematical opearations suitable for linear algebra and machine learning. These include unary ops like `square()` and binary ops like `add()` and `mul()` Generally speaking an op will do some transformation on one of more tensors and return a new tensor as a result.
58+
While Tensors allow us to store data, ops allow us to manipulate data. __deeplearn.js__ comes with a wide variety of mathematical operations suitable for linear algebra and machine learning. These include unary ops like `square()` and binary ops like `add()` and `mul()` Generally speaking an op will do some transformation on one of more tensors and return a new tensor as a result.
5959

6060
```js
6161
let a = dl.tensor2d([[1.0, 2.0], [3.0, 4.0]]);

0 commit comments

Comments
 (0)