Instructions to use saadamin2k13/urdu_semantic_parsing with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use saadamin2k13/urdu_semantic_parsing with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForSeq2SeqLM tokenizer = AutoTokenizer.from_pretrained("saadamin2k13/urdu_semantic_parsing") model = AutoModelForSeq2SeqLM.from_pretrained("saadamin2k13/urdu_semantic_parsing") - Notebooks
- Google Colab
- Kaggle
Model Card for Model ID
This model card lists fine-tuned byT5 model for the task of Semantic Parsing.
Model Details
We worked on a pre-trained byt5-base model and fine-tuned it with the Parallel Meaning Bank dataset (DRS-Text pairs dataset). Furthermore, we enriched the gold_silver flavors of PMB (release 5.0.0) with different augmentation strategies.
Uses
To use the model, follow the code below for a quick response.
from transformers import ByT5Tokenizer, T5ForConditionalGeneration
# Initialize the tokenizer and model
tokenizer = ByT5Tokenizer.from_pretrained('saadamin2k13/urdu_semantic_parsing', max_length=512)
model = T5ForConditionalGeneration.from_pretrained('saadamin2k13/urdu_semantic_parsing')
# Example sentence
example = "یہ کار کالی ہے۔"
# Tokenize and prepare the input
x = tokenizer(example, return_tensors='pt', padding=True, truncation=True, max_length=512)['input_ids']
# Generate output
output = model.generate(x)
# Decode and print the output text
pred_text = tokenizer.decode(output[0], skip_special_tokens=True, clean_up_tokenization_spaces=False)
print(pred_text)
- Downloads last month
- 4
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support