| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | namespace Azure.AI.FormRecognizer.Training |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// The set of options that can be specified when calling the training method |
| | 8 | | /// to configure the behavior of the request. |
| | 9 | | /// </summary> |
| | 10 | | public class TrainingOptions |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// Initializes a new instance of the <see cref="TrainingOptions"/> class. |
| | 14 | | /// </summary> |
| 148 | 15 | | public TrainingOptions() |
| | 16 | | { |
| 148 | 17 | | } |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// Filter to apply to the documents in the source path for training. |
| | 21 | | /// </summary> |
| 156 | 22 | | public TrainingFileFilter TrainingFileFilter { get; set; } |
| | 23 | | } |
| | 24 | | } |