Skip to content

Commit 67360d9

Browse files
authored
Fixing minor typo
1 parent 2f731fd commit 67360d9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/code/MlNetHighLevelConcepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This document is going to cover the following ML.NET concepts:
1010
- In ML.NET, data is very similar to a SQL view: it's a lazily-evaluated, immutable, cursorable, heterogenous, schematized dataset.
1111
- An excellent document about the data interface is [IDataView Design Principles](IDataViewDesignPrinciples.md).
1212
- [*Transformer*](#transformer), represented as `ITransformer` interface.
13-
- In one sentence, a transformer is a component that takes data, does some work on it, and return new 'transformed' data.
13+
- In one sentence, a transformer is a component that takes data, does some work on it, and returns new 'transformed' data.
1414
- For example, you can think of a machine learning model as a transformer that takes features and returns predictions.
1515
- Another example, 'text tokenizer' would take a single text column and output a vector column with individual 'words' extracted out of the texts.
1616
- [*Data reader*](#data-reader), represented as an `IDataReader<T>` interface.

0 commit comments

Comments
 (0)