@min-pack/tfjs-node 2.17.1 → 3.8.1-patch.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (130) hide show
  1. package/README.md +4 -2
  2. package/addon-node_modules/onnxruntime-node/bin/{napi-v3/linux/x64/libonnxruntime.so.1.14.0 → napi-v6/linux/arm64/libonnxruntime.so.1} +0 -0
  3. package/addon-node_modules/onnxruntime-node/bin/napi-v6/linux/arm64/onnxruntime_binding.node +0 -0
  4. package/addon-node_modules/onnxruntime-node/bin/napi-v6/linux/x64/libonnxruntime.so.1 +0 -0
  5. package/addon-node_modules/onnxruntime-node/bin/napi-v6/linux/x64/onnxruntime_binding.node +0 -0
  6. package/index.d.ts +2 -0
  7. package/index.js +7102 -3371
  8. package/package.json +1 -10
  9. package/tfjs-types/backends/onnx.d.ts +37 -0
  10. package/tfjs-types/base/feature_extraction_utils.d.ts +41 -0
  11. package/tfjs-types/base/image_processors_utils.d.ts +332 -0
  12. package/tfjs-types/base/processing_utils.d.ts +89 -0
  13. package/tfjs-types/configs.d.ts +93 -0
  14. package/tfjs-types/env.d.ts +112 -0
  15. package/tfjs-types/generation/configuration_utils.d.ts +326 -0
  16. package/tfjs-types/generation/logits_process.d.ts +364 -0
  17. package/tfjs-types/generation/logits_sampler.d.ts +51 -0
  18. package/tfjs-types/generation/parameters.d.ts +47 -0
  19. package/tfjs-types/generation/stopping_criteria.d.ts +81 -0
  20. package/tfjs-types/generation/streamers.d.ts +88 -0
  21. package/tfjs-types/models/audio_spectrogram_transformer/feature_extraction_audio_spectrogram_transformer.d.ts +25 -0
  22. package/tfjs-types/models/auto/feature_extraction_auto.d.ts +5 -0
  23. package/tfjs-types/models/auto/image_processing_auto.d.ts +5 -0
  24. package/tfjs-types/models/auto/processing_auto.d.ts +39 -0
  25. package/tfjs-types/models/beit/image_processing_beit.d.ts +4 -0
  26. package/tfjs-types/models/bit/image_processing_bit.d.ts +4 -0
  27. package/tfjs-types/models/chinese_clip/image_processing_chinese_clip.d.ts +4 -0
  28. package/tfjs-types/models/clap/feature_extraction_clap.d.ts +57 -0
  29. package/tfjs-types/models/clip/image_processing_clip.d.ts +6 -0
  30. package/tfjs-types/models/convnext/image_processing_convnext.d.ts +12 -0
  31. package/tfjs-types/models/dac/feature_extraction_dac.d.ts +4 -0
  32. package/tfjs-types/models/deit/image_processing_deit.d.ts +6 -0
  33. package/tfjs-types/models/detr/image_processing_detr.d.ts +42 -0
  34. package/tfjs-types/models/dinov3_vit/image_processing_dinov3_vit.d.ts +4 -0
  35. package/tfjs-types/models/donut/image_processing_donut.d.ts +7 -0
  36. package/tfjs-types/models/dpt/image_processing_dpt.d.ts +6 -0
  37. package/tfjs-types/models/efficientnet/image_processing_efficientnet.d.ts +6 -0
  38. package/tfjs-types/models/encodec/feature_extraction_encodec.d.ts +13 -0
  39. package/tfjs-types/models/feature_extractors.d.ts +16 -0
  40. package/tfjs-types/models/florence2/processing_florence2.d.ts +39 -0
  41. package/tfjs-types/models/gemma3n/feature_extraction_gemma3n.d.ts +35 -0
  42. package/tfjs-types/models/gemma3n/processing_gemma3n.d.ts +31 -0
  43. package/tfjs-types/models/glpn/image_processing_glpn.d.ts +4 -0
  44. package/tfjs-types/models/grounding_dino/image_processing_grounding_dino.d.ts +20 -0
  45. package/tfjs-types/models/grounding_dino/processing_grounding_dino.d.ts +27 -0
  46. package/tfjs-types/models/idefics3/image_processing_idefics3.d.ts +40 -0
  47. package/tfjs-types/models/idefics3/processing_idefics3.d.ts +19 -0
  48. package/tfjs-types/models/image_processors.d.ts +44 -0
  49. package/tfjs-types/models/janus/image_processing_janus.d.ts +7 -0
  50. package/tfjs-types/models/janus/processing_janus.d.ts +77 -0
  51. package/tfjs-types/models/jina_clip/image_processing_jina_clip.d.ts +5 -0
  52. package/tfjs-types/models/jina_clip/processing_jina_clip.d.ts +9 -0
  53. package/tfjs-types/models/llava/processing_llava.d.ts +12 -0
  54. package/tfjs-types/models/llava_onevision/image_processing_llava_onevision.d.ts +4 -0
  55. package/tfjs-types/models/mask2former/image_processing_mask2former.d.ts +4 -0
  56. package/tfjs-types/models/maskformer/image_processing_maskformer.d.ts +22 -0
  57. package/tfjs-types/models/mgp_str/processing_mgp_str.d.ts +64 -0
  58. package/tfjs-types/models/mobilenet_v1/image_processing_mobilenet_v1.d.ts +6 -0
  59. package/tfjs-types/models/mobilenet_v2/image_processing_mobilenet_v2.d.ts +6 -0
  60. package/tfjs-types/models/mobilenet_v3/image_processing_mobilenet_v3.d.ts +6 -0
  61. package/tfjs-types/models/mobilenet_v4/image_processing_mobilenet_v4.d.ts +6 -0
  62. package/tfjs-types/models/mobilevit/image_processing_mobilevit.d.ts +6 -0
  63. package/tfjs-types/models/moonshine/feature_extraction_moonshine.d.ts +13 -0
  64. package/tfjs-types/models/moonshine/processing_moonshine.d.ts +17 -0
  65. package/tfjs-types/models/nougat/image_processing_nougat.d.ts +4 -0
  66. package/tfjs-types/models/owlv2/image_processing_owlv2.d.ts +4 -0
  67. package/tfjs-types/models/owlvit/image_processing_owlvit.d.ts +10 -0
  68. package/tfjs-types/models/owlvit/processing_owlvit.d.ts +8 -0
  69. package/tfjs-types/models/paligemma/processing_paligemma.d.ts +12 -0
  70. package/tfjs-types/models/parakeet/feature_extraction_parakeet.d.ts +22 -0
  71. package/tfjs-types/models/phi3_v/image_processing_phi3_v.d.ts +17 -0
  72. package/tfjs-types/models/phi3_v/processing_phi3_v.d.ts +21 -0
  73. package/tfjs-types/models/pixtral/image_processing_pixtral.d.ts +4 -0
  74. package/tfjs-types/models/pixtral/processing_pixtral.d.ts +12 -0
  75. package/tfjs-types/models/processors.d.ts +25 -0
  76. package/tfjs-types/models/pvt/image_processing_pvt.d.ts +4 -0
  77. package/tfjs-types/models/pyannote/feature_extraction_pyannote.d.ts +31 -0
  78. package/tfjs-types/models/pyannote/processing_pyannote.d.ts +19 -0
  79. package/tfjs-types/models/qwen2_vl/image_processing_qwen2_vl.d.ts +11 -0
  80. package/tfjs-types/models/qwen2_vl/processing_qwen2_vl.d.ts +17 -0
  81. package/tfjs-types/models/rt_detr/image_processing_rt_detr.d.ts +8 -0
  82. package/tfjs-types/models/sam/image_processing_sam.d.ts +103 -0
  83. package/tfjs-types/models/sam/processing_sam.d.ts +9 -0
  84. package/tfjs-types/models/sam2/image_processing_sam2.d.ts +2 -0
  85. package/tfjs-types/models/sam2/processing_sam2.d.ts +6 -0
  86. package/tfjs-types/models/sam3/image_processing_sam3.d.ts +2 -0
  87. package/tfjs-types/models/sapiens/image_processing_sapiens.d.ts +10 -0
  88. package/tfjs-types/models/seamless_m4t/feature_extraction_seamless_m4t.d.ts +34 -0
  89. package/tfjs-types/models/segformer/image_processing_segformer.d.ts +10 -0
  90. package/tfjs-types/models/siglip/image_processing_siglip.d.ts +4 -0
  91. package/tfjs-types/models/smolvlm/image_processing_smolvlm.d.ts +2 -0
  92. package/tfjs-types/models/smolvlm/processing_smolvlm.d.ts +2 -0
  93. package/tfjs-types/models/snac/feature_extraction_snac.d.ts +4 -0
  94. package/tfjs-types/models/speecht5/feature_extraction_speecht5.d.ts +4 -0
  95. package/tfjs-types/models/speecht5/processing_speecht5.d.ts +14 -0
  96. package/tfjs-types/models/swin2sr/image_processing_swin2sr.d.ts +5 -0
  97. package/tfjs-types/models/ultravox/processing_ultravox.d.ts +16 -0
  98. package/tfjs-types/models/vit/image_processing_vit.d.ts +6 -0
  99. package/tfjs-types/models/vitmatte/image_processing_vitmatte.d.ts +12 -0
  100. package/tfjs-types/models/vitpose/image_processing_vitpose.d.ts +26 -0
  101. package/tfjs-types/models/voxtral/processing_voxtral.d.ts +16 -0
  102. package/tfjs-types/models/wav2vec2/feature_extraction_wav2vec2.d.ts +19 -0
  103. package/tfjs-types/models/wav2vec2/processing_wav2vec2.d.ts +14 -0
  104. package/tfjs-types/models/wav2vec2_with_lm/processing_wav2vec2_with_lm.d.ts +14 -0
  105. package/tfjs-types/models/wespeaker/feature_extraction_wespeaker.d.ts +23 -0
  106. package/tfjs-types/models/whisper/common_whisper.d.ts +8 -0
  107. package/tfjs-types/models/whisper/feature_extraction_whisper.d.ts +23 -0
  108. package/tfjs-types/models/whisper/generation_whisper.d.ts +76 -0
  109. package/tfjs-types/models/whisper/processing_whisper.d.ts +17 -0
  110. package/tfjs-types/models/yolos/image_processing_yolos.d.ts +10 -0
  111. package/tfjs-types/models.d.ts +4396 -0
  112. package/tfjs-types/ops/registry.d.ts +13 -0
  113. package/tfjs-types/pipelines.d.ts +2433 -0
  114. package/tfjs-types/tokenizers.d.ts +1002 -0
  115. package/tfjs-types/transformers.d.ts +27 -0
  116. package/tfjs-types/utils/audio.d.ts +160 -0
  117. package/tfjs-types/utils/constants.d.ts +8 -0
  118. package/tfjs-types/utils/core.d.ts +231 -0
  119. package/tfjs-types/utils/data-structures.d.ts +294 -0
  120. package/tfjs-types/utils/devices.d.ts +18 -0
  121. package/tfjs-types/utils/dtypes.d.ts +20 -0
  122. package/tfjs-types/utils/generic.d.ts +11 -0
  123. package/tfjs-types/utils/hub.d.ts +175 -0
  124. package/tfjs-types/utils/image.d.ts +141 -0
  125. package/tfjs-types/utils/maths.d.ts +282 -0
  126. package/tfjs-types/utils/tensor.d.ts +490 -0
  127. package/tfjs-types/utils/video.d.ts +37 -0
  128. package/addon-node_modules/onnxruntime-node/bin/napi-v3/linux/arm64/libonnxruntime.so.1.14.0 +0 -0
  129. package/addon-node_modules/onnxruntime-node/bin/napi-v3/linux/arm64/onnxruntime_binding.node +0 -0
  130. package/addon-node_modules/onnxruntime-node/bin/napi-v3/linux/x64/onnxruntime_binding.node +0 -0
@@ -0,0 +1,13 @@
1
+ export class TensorOpRegistry {
2
+ static session_options: {};
3
+ static get nearest_interpolate_4d(): Promise<(arg0: Record<string, Tensor>) => Promise<Tensor>>;
4
+ static get bilinear_interpolate_4d(): Promise<(arg0: Record<string, Tensor>) => Promise<Tensor>>;
5
+ static get bicubic_interpolate_4d(): Promise<(arg0: Record<string, Tensor>) => Promise<Tensor>>;
6
+ static get matmul(): Promise<(arg0: Record<string, Tensor>) => Promise<Tensor>>;
7
+ static get stft(): Promise<(arg0: Record<string, Tensor>) => Promise<Tensor>>;
8
+ static get rfft(): Promise<(arg0: Record<string, Tensor>) => Promise<Tensor>>;
9
+ static get top_k(): Promise<(arg0: Record<string, Tensor>) => Promise<[Tensor, Tensor]>>;
10
+ static get slice(): Promise<(arg0: Record<string, Tensor>) => Promise<Tensor>>;
11
+ }
12
+ import { Tensor } from "../utils/tensor.js";
13
+ //# sourceMappingURL=registry.d.ts.map