2
0

mlnet-metadata.json 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. [
  2. {
  3. "name": "CharToken",
  4. "description": "Character-oriented tokenizer where text is considered a sequence of characters.",
  5. "attributes": [
  6. {
  7. "name": "UseMarkerChars",
  8. "type": "boolean"
  9. },
  10. {
  11. "name": "IsSeparatorStartEnd",
  12. "type": "boolean"
  13. }
  14. ]
  15. },
  16. {
  17. "name": "ConcatTransform",
  18. "category": "Tensor",
  19. "description": "Concatenates one or more columns of the same item type."
  20. },
  21. {
  22. "name": "CopyTransform",
  23. "category": "Tensor",
  24. "description": "Duplicates columns from the dataset."
  25. },
  26. {
  27. "name": "ImageLoaderTransform",
  28. "description": "Load images from files.",
  29. "attributes": [
  30. {
  31. "name": "ImageFolder",
  32. "type": "string",
  33. "description": "Folder where to search for images"
  34. }
  35. ]
  36. },
  37. {
  38. "name": "ImagePixelExtractor",
  39. "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.",
  40. "attributes": [
  41. {
  42. "name": "ColorsToExtract",
  43. "type": "ImagePixelExtractingTransformer.ColorBits"
  44. },
  45. {
  46. "name": "OrderOfExtraction",
  47. "type": "ImagePixelExtractingTransformer.ColorsOrder"
  48. },
  49. {
  50. "name": "Planes",
  51. "type": "uint8"
  52. },
  53. {
  54. "name": "OutputAsFloatArray",
  55. "type": "boolean"
  56. },
  57. {
  58. "name": "OffsetImage",
  59. "type": "float32"
  60. },
  61. {
  62. "name": "ScaleImage",
  63. "type": "float32"
  64. },
  65. {
  66. "name": "InterleavePixelColors",
  67. "type": "boolean"
  68. }
  69. ]
  70. },
  71. {
  72. "name": "ImageScalerTransform",
  73. "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.",
  74. "attributes": [
  75. {
  76. "name": "Width"
  77. },
  78. {
  79. "name": "Height"
  80. },
  81. {
  82. "name": "Resizing",
  83. "type": "ImageResizingTransformer.ResizingKind"
  84. },
  85. {
  86. "name": "Anchor",
  87. "type": "ImageResizingTransformer.Anchor"
  88. }
  89. ]
  90. },
  91. {
  92. "name": "SSAModel",
  93. "attributes": [
  94. {
  95. "name": "UseMarkerChars",
  96. "type": "boolean"
  97. }
  98. ]
  99. },
  100. {
  101. "name": "TensorFlowTransform",
  102. "description": "Transforms the data using the TensorFlow model.",
  103. "attributes": [
  104. {
  105. "name": "IsFrozen",
  106. "type": "boolean"
  107. },
  108. {
  109. "name": "AddBatchDimensionInput",
  110. "type": "boolean"
  111. }
  112. ]
  113. },
  114. {
  115. "name": "TextNormalizerTransform",
  116. "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).",
  117. "attributes": [
  118. {
  119. "name": "CaseMode",
  120. "type": "TextNormalizingTransformer.CaseMode"
  121. },
  122. {
  123. "name": "KeepDiacritics",
  124. "type": "boolean"
  125. },
  126. {
  127. "name": "KeepPunctuations",
  128. "type": "boolean"
  129. },
  130. {
  131. "name": "KeepNumbers",
  132. "type": "boolean"
  133. }
  134. ]
  135. }
  136. ]