Fix speel in batch.md

This commit is contained in:
Sayan Sinha 2017-03-31 20:30:45 +05:30 committed by GitHub
parent f71b437160
commit 7a48188319
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ julia> xs = Batch([[1,2,3], [4,5,6]])
[4,5,6]
```
Batches are represented the way we *think* about them; as an list of data points. We can do all the usual array operations with them, including getting the first with `xs[1]`, iterating over them and so on. The trick is that under the hood, the data is batched into a single array:
Batches are represented the way we *think* about them; as a list of data points. We can do all the usual array operations with them, including getting the first with `xs[1]`, iterating over them and so on. The trick is that under the hood, the data is batched into a single array:
```julia
julia> rawbatch(xs)