From bde5c472ec3740e947b7acd442db2dafe6d0d12e Mon Sep 17 00:00:00 2001 From: Boyu Fan <51293961+boyufan@users.noreply.github.com> Date: Mon, 12 Jul 2021 23:58:37 +0800 Subject: [PATCH] Update core-concepts.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Deleted duplicate words ”imges" --- getting-started/core-concepts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started/core-concepts.md b/getting-started/core-concepts.md index 6135488..d17fc70 100644 --- a/getting-started/core-concepts.md +++ b/getting-started/core-concepts.md @@ -16,7 +16,7 @@ Unlike other machine learning or deep learning frameworks, DL4J treats the tasks Before the algorithm can start learning, you have to prepare the data, even if you already have a trained model. Preparing data means loading it and putting it in the right shape and value range \(e.g. normalization, zero-mean and unit variance\). Building these processes from scratch is error prone, so use DataVec wherever possible. -Deeplearning4j works with a lot of different data types, such as images, CSV, plain text, images, audio, video and, pretty much any other data type you can think of. +Deeplearning4j works with a lot of different data types, such as images, CSV, plain text, audio, video and, pretty much any other data type you can think of. To use DataVec, you will need one of the implementations of the [RecordReader](https://github.com/eclipse/deeplearning4j/blob/master/datavec/datavec-api/src/main/java/org/datavec/api/records/reader/RecordReader.java) interface along with the [RecordReaderDataSetIterator](https://github.com/eclipse/deeplearning4j/blob/master/deeplearning4j/deeplearning4j-data/deeplearning4j-datavec-iterators/src/main/java/org/deeplearning4j/datasets/datavec/RecordReaderDataSetIterator.java).