Model Card for Mrigendra100/XpathGenerator
Model Details
- Model Name: Mrigendra100/XpathGenerator
- Base Model: EleutherAI/gpt-neo-1.3B
- Task: Text generation (specifically for generating XPath expressions from HTML)
Library
- Transformers: This model uses the Hugging Face
transformers
library for handling pre-trained models and performing inference.
Usage
To use this model, you can leverage the transformers
library from Hugging Face. Below is an example of how to load and use the model for inference:
from transformers import pipeline
# Load the model and tokenizer
generator = pipeline("text-generation", model="Mrigendra100/XpathGenerator")
# Generate XPath from input HTML
input_html = '<button class="btn relative btn-primary shrink-0"><div class="flex justify-center">Get Plus</div></button>'
generated_xpath = generator(input_html, max_length=50)
print("Generated XPath:", generated_xpath)
- Downloads last month
- 0
This model does not have enough activity to be deployed to Inference API (serverless) yet. Increase its social
visibility and check back later, or deploy to Inference Endpoints (dedicated)
instead.
Model tree for Mrigendra100/XpathGenerator
Base model
EleutherAI/gpt-neo-1.3B