Text Classification
Transformers
Safetensors
bert
feature-extraction
text-embedding
tinybert
text-embeddings-inference
Instructions to use rohitkumarai/my_tinybert_encoder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use rohitkumarai/my_tinybert_encoder with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="rohitkumarai/my_tinybert_encoder")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("rohitkumarai/my_tinybert_encoder") model = AutoModel.from_pretrained("rohitkumarai/my_tinybert_encoder") - Notebooks
- Google Colab
- Kaggle
| tags: | |
| - transformers | |
| - text-classification | |
| - text-embedding | |
| - tinybert | |
| license: apache-2.0 | |
| library_name: transformers | |
| widget: | |
| - text: "Encode this text using TinyBERT" | |
| # ๐ TinyBERT Encoder Model | |
| This is a fine-tuned **TinyBERT Encoder** model, optimized for lightweight NLP tasks. | |
| ## ๐น Use This Model | |
| To use this model with **transformers**, simply run: | |
| ```python | |
| from transformers import AutoModel, AutoTokenizer | |
| model_name = "hjsgfd/my_tinybert_encoder" # Replace with your actual repo name | |
| tokenizer = AutoTokenizer.from_pretrained(model_name) | |
| model = AutoModel.from_pretrained(model_name) | |
| # Encode text | |
| text = "TinyBERT is small but powerful." | |
| inputs = tokenizer(text, return_tensors="pt") | |
| outputs = model(**inputs) | |
| print(outputs.last_hidden_state) # Encoded text representation | |
| from sentence_transformers import SentenceTransformer | |
| model = SentenceTransformer("hjsgfd/my_tinybert_encoder") | |
| embeddings = model.encode("This is an example sentence.") | |
| print(embeddings) | |
| --- | |
| # TinyBERT Encoder Model | |
| This is a fine-tuned **TinyBERT Encoder** model optimized for lightweight NLP tasks. | |
| ## ๐น How to Use | |
| ```python | |
| from transformers import AutoModel, AutoTokenizer | |
| model_name = " hjsgfd/my_tinybert_encoder" | |
| tokenizer = AutoTokenizer.from_pretrained(model_name) | |
| model = AutoModel.from_pretrained(model_name) | |
| # Encode text | |
| text = "TinyBERT is small but powerful." | |
| inputs = tokenizer(text, return_tensors="pt") | |
| outputs = model(**inputs) | |
| print(outputs.last_hidden_state) # Encoded text representation | |