forked from lutzroeder/netron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmlnet-metadata.json
136 lines (136 loc) · 3.34 KB
/
mlnet-metadata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
[
{
"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"
}
]
}
]