mrutyunjay-patil commited on
Commit
d49b7e7
1 Parent(s): edb1ac7

Create README.md

Browse files

## KeywordGen-v1 Model

KeywordGen-v1 is a T5-based model fine-tuned for keyword generation from a piece of text. Given an input text, the model will return relevant keywords.

### Model details

This model was trained using the T5 base model, and was fine-tuned on a custom dataset. The training data consists of text and corresponding keywords. The model generates keywords by predicting the relevant words or phrases present in the input text.

### How to use

You can use this model in your application using the Hugging Face Transformers library. Here is an example:

```python
from transformers import T5TokenizerFast, T5ForConditionalGeneration

# Load the tokenizer and model
tokenizer = T5TokenizerFast.from_pretrained('mrutyunjay-patil/keywordGen-v1')
model = T5ForConditionalGeneration.from_pretrained('mrutyunjay-patil/keywordGen-v1')

# Define the input text
input_text = "I love going to the park."

# Encode the input text
input_ids = tokenizer.encode(input_text, return_tensors='pt')

# Generate the keywords
outputs = model.generate(input_ids)

# Decode the outputs
keywords = tokenizer.decode(outputs[0])
```

### Limitations and bias

The model might perform poorly on texts that are very different from the texts in the training data. It might also be biased towards the types of text or keywords that are overrepresented in the training data.

Files changed (1) hide show
  1. README.md +12 -0
README.md ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ library_name: transformers
6
+ pipeline_tag: text2text-generation
7
+ tags:
8
+ - keyword-generation
9
+ - t5
10
+ - english
11
+ - code
12
+ ---