asahi417's picture
model update
c952382
---
widget:
- text: "generate analogy: mammal is to whale"
example_title: "Analogy Example 1 (semantic relation)"
- text: "generate analogy: wedding is to marriage"
example_title: "Analogy Example 1 (semantic relation, metaphor)"
- text: "generate analogy: London is to U.K."
example_title: "Analogy Example 2 (entity)"
- text: "generate analogy: actual is to actually"
example_title: "Analogy Example 3 (morphological)"
---
# relbert/flan-t5-base-analogy-t-rex
This is [google/flan-t5-base](https://huggingface.co/google/flan-t5-base) fine-tuned on [relbert/t_rex_relational_similarity](https://huggingface.co/datasets/relbert/t_rex_relational_similarity)
for analogy generation, which is to generate a word pair (eg. `bird is to crow`) given a query (eg. `mammal is to whale`)
so that the query and the generated word pair form an analogy statement.
### Usage
```python
from transformers import pipeline
pipe = pipeline('text2text-generation', model="relbert/flan-t5-base-analogy-t-rex")
output = pipe("generate analogy: mammal is to whale")
print(output)
>>> [{'generated_text': 'bird is to crow'}]
```