| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- [
- {
- "name": "CharToken",
- "description": "Character-oriented tokenizer where text is considered a sequence of characters.",
- "attributes": [
- {
- "name": "UseMarkerChars",
- "type": "boolean"
- },
- {
- "name": "IsSeparatorStartEnd",
- "type": "boolean"
- }
- ]
- },
- {
- "name": "ConcatTransform",
- "category": "Tensor",
- "description": "Concatenates one or more columns of the same item type."
- },
- {
- "name": "CopyTransform",
- "category": "Tensor",
- "description": "Duplicates columns from the dataset."
- },
- {
- "name": "ImageLoaderTransform",
- "description": "Load images from files.",
- "attributes": [
- {
- "name": "ImageFolder",
- "type": "string",
- "description": "Folder where to search for images"
- }
- ]
- },
- {
- "name": "ImagePixelExtractor",
- "description": "Scales an image to specified dimensions using one of the three scale types: isotropic with padding, isotropic with cropping or anisotropic. In case of isotropic padding, transparent color is used to pad resulting image.",
- "attributes": [
- {
- "name": "ColorsToExtract",
- "type": "ImagePixelExtractingTransformer.ColorBits"
- },
- {
- "name": "OrderOfExtraction",
- "type": "ImagePixelExtractingTransformer.ColorsOrder"
- },
- {
- "name": "Planes",
- "type": "uint8"
- },
- {
- "name": "OutputAsFloatArray",
- "type": "boolean"
- },
- {
- "name": "OffsetImage",
- "type": "float32"
- },
- {
- "name": "ScaleImage",
- "type": "float32"
- },
- {
- "name": "InterleavePixelColors",
- "type": "boolean"
- }
- ]
- },
- {
- "name": "ImageScalerTransform",
- "description": "Scales an image to specified dimensions using one of the three scale types: isotropic with padding, isotropic with cropping or anisotropic. In case of isotropic padding, transparent color is used to pad resulting image.",
- "attributes": [
- {
- "name": "Width"
- },
- {
- "name": "Height"
- },
- {
- "name": "Resizing",
- "type": "ImageResizingTransformer.ResizingKind"
- },
- {
- "name": "Anchor",
- "type": "ImageResizingTransformer.Anchor"
- }
- ]
- },
- {
- "name": "SSAModel",
- "attributes": [
- {
- "name": "UseMarkerChars",
- "type": "boolean"
- }
- ]
- },
- {
- "name": "TensorFlowTransform",
- "description": "Transforms the data using the TensorFlow model.",
- "attributes": [
- {
- "name": "IsFrozen",
- "type": "boolean"
- },
- {
- "name": "AddBatchDimensionInput",
- "type": "boolean"
- }
- ]
- },
- {
- "name": "TextNormalizerTransform",
- "description": "A text normalization transform that allows normalizing text case, removing diacritical marks, punctuation marks and/or numbers. The transform operates on text input as well as vector of tokens/text (vector of ReadOnlyMemory).",
- "attributes": [
- {
- "name": "CaseMode",
- "type": "TextNormalizingTransformer.CaseMode"
- },
- {
- "name": "KeepDiacritics",
- "type": "boolean"
- },
- {
- "name": "KeepPunctuations",
- "type": "boolean"
- },
- {
- "name": "KeepNumbers",
- "type": "boolean"
- }
- ]
- }
- ]
|