Simple inference usecases using hugging transformers library on varied use cases of the AI/ML Domain
Project description
huggingfaceinference
Simple inference pipelines using hugging transformers library and finetuned tiny models. Will be highly useful on scenarios where we need to optimize storage and memory cost with a compensation in accuracy.
Installation
pip install huggingfaceinference
Implementation
TinyGram
A simple grammatical and spelling resolver using huggingface transformers. The Dataset (around 50k) is retrieved from kaggle and corrupted using random substution of letters in words for finetuning. The base model used was google/t5-efficient-tiny-nl32 as it is highly compact and efficient(<250 MB).(was modeled on fp32 to reduce drop in efficiency).
from huggingfaceinference.pipeline import TinyGram
tg = TinyGram()
tg.gramcorrector("What do you think I shold be doing", n=3)
""" Output: ['What do you think I need to be doing',
'what do you think I should be doing',
'what do you think I will be doing']"""
# The above pipeline is built by finetuing "google/t5-efficient-tiny-nl32" model on sentences which are corrupted by random noising.
Knowledge Graph
A simple tool to create knowledge graphs in NLP using a pre-trained model modelled on custom dataset created using spaCy library.
from huggingfaceinference.pipeline import KnowledgeGraph
kg = KnowledgeGraph()
kg.get_graph(text)
""" [{'tend': 'O'},
{'##ul': 'SRC'},
{'##kar': 'SRC'},
{'plays': 'SRC'},
{'for': 'REL'},
{'india': 'REL'}]"""
# The above pipeline is built by finetuing "google/t5-efficient-tiny-nl32" model on sentences which are corrupted by random noising.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file huggingfaceinference-0.9.tar.gz
.
File metadata
- Download URL: huggingfaceinference-0.9.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 504e1cd20ac430bce552d4c7efcd15f18490c58381df9783592da553c11accea |
|
MD5 | c851dd274c453d28ff3cc8a5392d2d03 |
|
BLAKE2b-256 | 5baeca0367f189a80c064148b0d1600641d1e380d3809fe969f288e6e2471e2f |