File size: 727 Bytes
3bcb469
 
 
cf9899b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d5e9b4f
3bfd110
d5e9b4f
 
 
cf9899b
d5e9b4f
 
cf9899b
d5e9b4f
cf9899b
d5e9b4f
cf9899b
 
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
30
31
32
33
34
---
license: apache-2.0
---
A seq2seq event triggers and entities tagger trained on the dataset: `ahmeshaf/ecb_plus_ed`

## Usage

Input:
  ```shell
  triggers: I like this model and hate this sentence
  ```

Output:
  ```shell
  like | hate
  ```

- Python
  
```python
model_name = "ahmeshaf/ecb_tagger_seq2seq"

model = T5ForConditionalGeneration.from_pretrained(model_name)
tokenizer = T5Tokenizer.from_pretrained(model_name)
generation_config = GenerationConfig.from_pretrained(model_name)

tokenized_inputs = tokenizer(["triggers: I like this model and hate this sentence ."], return_tensors="pt")
outputs = model.generate(**tokenized_inputs, generation_config=generation_config)

print(outputs)

# ["like | hate"]
```