Ji-Ha / TexTeller3-ONNX-dynamic

huggingface.co
Total runs: 321
24-hour runs: 6
7-day runs: -7
30-day runs: -224
Model's Last Updated: January 05 2026

Introduction of TexTeller3-ONNX-dynamic

Model Details of TexTeller3-ONNX-dynamic

TexTeller ONNX

ONNX export of OleehyO/TexTeller , an image-to-LaTeX model based on VisionEncoderDecoderModel .

This export is tuned for:

  • transformers.js (browser / Node)
  • WebGPU / ONNX Runtime Web
  • KV-cache decoding (supports decoder_with_past_model.onnx with dynamic batch)

Contents

Main files:

  • encoder_model.onnx

    • Input: pixel_values of shape [batch_size, 1, 448, 448]
  • decoder_model.onnx

    • Decoder without past (not required for KV-cache decoding)
  • decoder_with_past_model.onnx

    • Decoder with KV cache
    • Key inputs:
      • input_ids : [batch_size, decoder_sequence_length]
      • encoder_hidden_states : [batch_size, encoder_sequence_length, 768]
      • past_key_values.N.decoder.{key,value} : [batch_size, 16, past_decoder_sequence_length, 64]
      • past_key_values.N.encoder.{key,value} : [batch_size, 16, encoder_sequence_length, 64]

Supporting files:

  • config.json – model config
  • tokenizer.json / tokenizer_config.json – tokenizer
  • preprocessor_config.json – image preprocessing config

Preprocessing

preprocessor_config.json :

{
  "do_resize": true,
  "size": { "height": 448, "width": 448 },
  "resample": 3,
  "do_normalize": true,
  "image_mean": [0.9545467],
  "image_std": [0.15394445],
  "do_convert_rgb": false,
  "num_channels": 1,
  "feature_extractor_type": "ViTFeatureExtractor"
}

Important:

  • Input must be grayscale ( num_channels = 1 )

  • Resize to 448 × 448

  • Normalize (per channel):

    x = (x / 255.0 - 0.9545467) / 0.15394445
    

If you use AutoProcessor / ImageProcessor in transformers / transformers.js with this repo, it will apply these settings automatically.


transformers.js (browser / WebGPU) example
import { pipeline } from "@huggingface/transformers";

// Replace with this repo id
const MODEL_ID = "your-username/texteller-onnx";

const captioner = await pipeline("image-to-text", MODEL_ID, {
  device: "webgpu", // or "wasm"
  dtype: "fp16",    // good default for WebGPU
});

// Any image source supported by transformers.js: URL, HTMLImageElement, etc.
const outputs = await captioner("path-or-url-to-image.png", {
  max_new_tokens: 128,
});

console.log(outputs[0]?.generated_text);

Notes
  • This ONNX export supports decoder_with_past_model.onnx with dynamic batch, so you can implement your own batched, KV-cached beam search on top of model.forward and past_key_values .
  • For simple use cases, using pipeline("image-to-text", ...) as shown above is enough.

Runs of Ji-Ha TexTeller3-ONNX-dynamic on huggingface.co

321
Total runs
6
24-hour runs
6
3-day runs
-7
7-day runs
-224
30-day runs

More Information About TexTeller3-ONNX-dynamic huggingface.co Model

More TexTeller3-ONNX-dynamic license Visit here:

https://choosealicense.com/licenses/apache-2.0

TexTeller3-ONNX-dynamic huggingface.co

TexTeller3-ONNX-dynamic huggingface.co is an AI model on huggingface.co that provides TexTeller3-ONNX-dynamic's model effect (), which can be used instantly with this Ji-Ha TexTeller3-ONNX-dynamic model. huggingface.co supports a free trial of the TexTeller3-ONNX-dynamic model, and also provides paid use of the TexTeller3-ONNX-dynamic. Support call TexTeller3-ONNX-dynamic model through api, including Node.js, Python, http.

TexTeller3-ONNX-dynamic huggingface.co Url

https://huggingface.co/Ji-Ha/TexTeller3-ONNX-dynamic

Ji-Ha TexTeller3-ONNX-dynamic online free

TexTeller3-ONNX-dynamic huggingface.co is an online trial and call api platform, which integrates TexTeller3-ONNX-dynamic's modeling effects, including api services, and provides a free online trial of TexTeller3-ONNX-dynamic, you can try TexTeller3-ONNX-dynamic online for free by clicking the link below.

Ji-Ha TexTeller3-ONNX-dynamic online free url in huggingface.co:

https://huggingface.co/Ji-Ha/TexTeller3-ONNX-dynamic

TexTeller3-ONNX-dynamic install

TexTeller3-ONNX-dynamic is an open source model from GitHub that offers a free installation service, and any user can find TexTeller3-ONNX-dynamic on GitHub to install. At the same time, huggingface.co provides the effect of TexTeller3-ONNX-dynamic install, users can directly use TexTeller3-ONNX-dynamic installed effect in huggingface.co for debugging and trial. It also supports api for free installation.

TexTeller3-ONNX-dynamic install url in huggingface.co:

https://huggingface.co/Ji-Ha/TexTeller3-ONNX-dynamic

Url of TexTeller3-ONNX-dynamic

TexTeller3-ONNX-dynamic huggingface.co Url

Provider of TexTeller3-ONNX-dynamic huggingface.co

Ji-Ha
ORGANIZATIONS

Other API from Ji-Ha

huggingface.co

Total runs: 22
Run Growth: -10
Growth Rate: -45.45%
Updated:December 03 2025
huggingface.co

Total runs: 12
Run Growth: -6
Growth Rate: -50.00%
Updated:February 10 2026