File size: 1,127 Bytes
7022cb9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

---
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-small-analogy-t-rex

This is [google/flan-t5-small](https://huggingface.co/google/flan-t5-small) 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-small-analogy-t-rex")
output = pipe("generate analogy: mammal is to whale")
print(output)
>>> [{'generated_text': 'bird is to crow'}]
```