Samplers
A sampler is an object used to retrieve and prepare a dataset for the training of a model.
You handle the samplers in Administration > Artificial Intelligence > Models > Samplers
You can count on different types of samplers with different settings:
Sampler | Description | Settings |
---|---|---|
CSV | Reads the contents of a CSV file extracting all the rows as string arrays. 5.1,3.5,1.4,.2,"Setosa" 7,3.2,4.7,1.4,"Versicolor" This example will produce three rows of 5 elements each: 5.1, 3.5, 1.4, .2, Setosa |
|
Paragraph | Extracts the paragraphs, interpreted as blocks of text separated by blank lines. A colleague of mine told me that the document 12356897 contains very important information, so I want to get it. Understood, but are you registered as LogicalDOC's user? If you are a user, just access the interface and then execute a search by document id = 12356897. The example above will produce two paragraphs. |
|
Metadata | Extract samples from a list of documents. By default the extended attributes of the documents are considered as the features, and so all the documents in the referenced folder must share the same attributes scheme. With the Automation you may also extract whatever data for each document. |
|
Chain | Collects the samples extracted by a collection of other samplers |
|