Model reference · open weights
textnet is an open-weight embedding model from czczup. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.
Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.
What it is
| Released by | czczup |
|---|---|
| Type | Embedding models |
| Task | Image embed |
| Parameters (lead) | 14M |
| Runs with | transformers |
| Released | 2024-12-24 |
| Popularity | 18k downloads / month |
| Licence | Unknown |
About
TextNet is a lightweight and efficient architecture designed specifically for text detection, offering superior performance compared to traditional models like MobileNetV3. With variants TextNet-T, TextNet-S, and TextNet-B (6.8M, 8.0M, and 8.9M parameters respectively), it achieves an excellent balance between accuracy and inference speed.
TextNet achieves state-of-the-art results in text detection, outperforming hand-crafted models in both accuracy and speed. Its architecture is highly efficient, making it ideal for GPU-based applications.
pip install transformers
import torch
import requests
from PIL import Image
from transformers import AutoImageProcessor, AutoBackbone
url = "http://images.cocodataset.org/val2017/000000039769.jpg"
image = Image.open(requests.get(url, stream=True).raw)
processor = AutoImageProcessor.from_pretrained("jadechoghari/textnet-base")
model = AutoBackbone.from_pretrained("jadechoghari/textnet-base")
inputs = processor(image, return_tensors="pt")
with torch.no_grad():
outputs = model(**inputs)
We first compare TextNet with representative hand-crafted backbones, such as ResNets and VGG16. For a fair comparison, all models are first pre-trained on IC17-MLT [52] and then finetuned on Total-Text. The proposed TextNet models achieve a better trade-off between accuracy and inference speed than previous hand-crafted models by a significant margin. In addition, notably, our TextNet-T, -S, and -B only have 6.8M, 8.0M, and 8.9M parameters respectively, which are more parameter-efficient than ResNets and VGG16. These results demonstrate that TextNet models are effective for text detection on the GPU device.
Perfect for real-world text detection tasks, including:
This model was contributed by Raghavan, jadechoghari and nielsr.
From the published model card. Full card on the HuggingFace links in the sidebar.
Using it via the API
Once AxForge deploys textnet for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (textnet below is illustrative; you get the exact model name on deployment.)
$ curl -sS https://api.axforge.ai/v1/embeddings \
-H "Authorization: Bearer $AXFORGE_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"textnet","input":"text to embed"}'
Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.