Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/torch7.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/tensor.md')
-rw-r--r--doc/tensor.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/tensor.md b/doc/tensor.md
index fa61812..5809dc1 100644
--- a/doc/tensor.md
+++ b/doc/tensor.md
@@ -4,14 +4,14 @@
The `Tensor` class is probably the most important class in
`Torch`. Almost every package depends on this class. It is *__the__*
class for handling numeric data. As with pretty much anything in
-[Torch7](./index.md), tensors are
+[Torch7](./../index.md), tensors are
[serializable](file.md#torch.File.serialization).
__Multi-dimensional matrix__
-A `Tensor` is a multi-dimensional matrix. The number of
-dimensions is unlimited (up to what can be created using
-[LongStorage](storage.md)).
+A `Tensor` is a potentially multi-dimensional matrix. The number of
+dimensions is unlimited that can be created using
+[LongStorage](storage.md) with more dimensions.
Example:
```lua