Upload folder using huggingface_hub
Browse files- README.md +111 -0
- config.json +1626 -0
- merges.txt +0 -0
- model.safetensors +3 -0
- special_tokens_map.json +15 -0
- tokenizer.json +0 -0
- tokenizer_config.json +57 -0
- training_args.bin +3 -0
- vocab.json +0 -0
README.md
ADDED
|
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: en
|
| 3 |
+
tags:
|
| 4 |
+
- frame-semantics
|
| 5 |
+
- semantic-role-labeling
|
| 6 |
+
- token-classification
|
| 7 |
+
- roberta
|
| 8 |
+
license: apache-2.0
|
| 9 |
+
widget:
|
| 10 |
+
- text: "The cat sat on the mat"
|
| 11 |
+
text_pair: "sat"
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# nixie1981/sem_frames
|
| 15 |
+
|
| 16 |
+
## Model Description
|
| 17 |
+
|
| 18 |
+
This is a RoBERTa-based model fine-tuned for semantic frame detection using a Question-Answering approach.
|
| 19 |
+
Given a sentence and a target word, the model predicts the semantic frame that best describes the word's meaning in context.
|
| 20 |
+
|
| 21 |
+
The model is trained on FrameNet 1.7 data and can predict from 797 different semantic frames.
|
| 22 |
+
|
| 23 |
+
## Usage
|
| 24 |
+
|
| 25 |
+
### Using the model directly
|
| 26 |
+
|
| 27 |
+
```python
|
| 28 |
+
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
| 29 |
+
import torch
|
| 30 |
+
|
| 31 |
+
# Load model and tokenizer
|
| 32 |
+
tokenizer = AutoTokenizer.from_pretrained("nixie1981/sem_frames")
|
| 33 |
+
model = AutoModelForSequenceClassification.from_pretrained("nixie1981/sem_frames")
|
| 34 |
+
|
| 35 |
+
# Example: Find frame for "sat" in "The cat sat on the mat"
|
| 36 |
+
sentence = "The cat sat on the mat"
|
| 37 |
+
target_word = "sat"
|
| 38 |
+
|
| 39 |
+
# Tokenize
|
| 40 |
+
inputs = tokenizer(sentence, target_word, return_tensors="pt")
|
| 41 |
+
|
| 42 |
+
# Predict
|
| 43 |
+
with torch.no_grad():
|
| 44 |
+
outputs = model(**inputs)
|
| 45 |
+
predicted_frame_id = torch.argmax(outputs.logits, dim=-1).item()
|
| 46 |
+
predicted_frame = model.config.id2label[predicted_frame_id]
|
| 47 |
+
|
| 48 |
+
print(f"Frame for '{target_word}': {predicted_frame}")
|
| 49 |
+
```
|
| 50 |
+
|
| 51 |
+
### Using the inference script
|
| 52 |
+
|
| 53 |
+
```python
|
| 54 |
+
from frame_finder.inference_qa import FrameFinderQA
|
| 55 |
+
|
| 56 |
+
# Initialize
|
| 57 |
+
finder = FrameFinderQA(model_path="nixie1981/sem_frames")
|
| 58 |
+
|
| 59 |
+
# Analyze text
|
| 60 |
+
text = "The cat sat on the mat"
|
| 61 |
+
result = finder.predict_text(text)
|
| 62 |
+
|
| 63 |
+
for token, frame in zip(result['tokens'], result['frames']):
|
| 64 |
+
print(f"{token}: {frame}")
|
| 65 |
+
```
|
| 66 |
+
|
| 67 |
+
## Training Data
|
| 68 |
+
|
| 69 |
+
The model was trained on FrameNet 1.7, which includes:
|
| 70 |
+
- Semantic frame annotations for English text
|
| 71 |
+
- 797 distinct semantic frames
|
| 72 |
+
- Thousands of annotated sentences
|
| 73 |
+
|
| 74 |
+
## Input Format
|
| 75 |
+
|
| 76 |
+
The model expects two inputs:
|
| 77 |
+
1. **Sentence**: The complete sentence containing the target word
|
| 78 |
+
2. **Target word**: The specific word to classify
|
| 79 |
+
|
| 80 |
+
Format: `[CLS] sentence [SEP] target_word [SEP]`
|
| 81 |
+
|
| 82 |
+
## Output
|
| 83 |
+
|
| 84 |
+
The model outputs one of 797 semantic frame labels, or '_' for words without frames.
|
| 85 |
+
|
| 86 |
+
## Performance
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
|
| 90 |
+
## Limitations
|
| 91 |
+
|
| 92 |
+
- Trained only on English text
|
| 93 |
+
- Limited to FrameNet 1.7 frame inventory
|
| 94 |
+
- Performance may vary on domain-specific text
|
| 95 |
+
|
| 96 |
+
## Citation
|
| 97 |
+
|
| 98 |
+
If you use this model, please cite:
|
| 99 |
+
|
| 100 |
+
```bibtex
|
| 101 |
+
@misc{frame-finder-qa,
|
| 102 |
+
title={QA-based Semantic Frame Finder},
|
| 103 |
+
author={Your Name},
|
| 104 |
+
year={2024},
|
| 105 |
+
publisher={HuggingFace}
|
| 106 |
+
}
|
| 107 |
+
```
|
| 108 |
+
|
| 109 |
+
## License
|
| 110 |
+
|
| 111 |
+
Apache 2.0
|
config.json
ADDED
|
@@ -0,0 +1,1626 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_name_or_path": "roberta-base",
|
| 3 |
+
"architectures": [
|
| 4 |
+
"RobertaForSequenceClassification"
|
| 5 |
+
],
|
| 6 |
+
"attention_probs_dropout_prob": 0.1,
|
| 7 |
+
"bos_token_id": 0,
|
| 8 |
+
"classifier_dropout": null,
|
| 9 |
+
"eos_token_id": 2,
|
| 10 |
+
"hidden_act": "gelu",
|
| 11 |
+
"hidden_dropout_prob": 0.1,
|
| 12 |
+
"hidden_size": 768,
|
| 13 |
+
"id2label": {
|
| 14 |
+
"0": "_",
|
| 15 |
+
"1": "Event_instance",
|
| 16 |
+
"2": "Luck",
|
| 17 |
+
"3": "Medical_professionals",
|
| 18 |
+
"4": "Process_stop",
|
| 19 |
+
"5": "Agriculture",
|
| 20 |
+
"6": "Sleep",
|
| 21 |
+
"7": "Request",
|
| 22 |
+
"8": "Come_down_with",
|
| 23 |
+
"9": "Manufacturing",
|
| 24 |
+
"10": "Ingredients",
|
| 25 |
+
"11": "Processing_materials",
|
| 26 |
+
"12": "Intoxicants",
|
| 27 |
+
"13": "Scope",
|
| 28 |
+
"14": "Sociability",
|
| 29 |
+
"15": "Prison",
|
| 30 |
+
"16": "Trust",
|
| 31 |
+
"17": "Intercepting",
|
| 32 |
+
"18": "Take_place_of",
|
| 33 |
+
"19": "Bungling",
|
| 34 |
+
"20": "Leadership",
|
| 35 |
+
"21": "Presence",
|
| 36 |
+
"22": "People_by_morality",
|
| 37 |
+
"23": "Activity_prepare",
|
| 38 |
+
"24": "Political_locales",
|
| 39 |
+
"25": "Cause_harm",
|
| 40 |
+
"26": "Expressing_publicly",
|
| 41 |
+
"27": "Communication_noise",
|
| 42 |
+
"28": "Origin",
|
| 43 |
+
"29": "Opportunity",
|
| 44 |
+
"30": "Objective_influence",
|
| 45 |
+
"31": "Amassing",
|
| 46 |
+
"32": "Margin_of_resolution",
|
| 47 |
+
"33": "Cause_to_wake",
|
| 48 |
+
"34": "Economy",
|
| 49 |
+
"35": "Capacity",
|
| 50 |
+
"36": "Becoming",
|
| 51 |
+
"37": "Forgiveness",
|
| 52 |
+
"38": "Be_in_agreement_on_action",
|
| 53 |
+
"39": "Amounting_to",
|
| 54 |
+
"40": "Departing",
|
| 55 |
+
"41": "Defending",
|
| 56 |
+
"42": "Deserving",
|
| 57 |
+
"43": "Detaining",
|
| 58 |
+
"44": "Communication_manner",
|
| 59 |
+
"45": "Medical_specialties",
|
| 60 |
+
"46": "Evidence",
|
| 61 |
+
"47": "People_along_political_spectrum",
|
| 62 |
+
"48": "Relational_quantity",
|
| 63 |
+
"49": "Transition_to_a_quality",
|
| 64 |
+
"50": "Adopt_selection",
|
| 65 |
+
"51": "Reparation",
|
| 66 |
+
"52": "Amalgamation",
|
| 67 |
+
"53": "Inhibit_movement",
|
| 68 |
+
"54": "Electricity",
|
| 69 |
+
"55": "Topic",
|
| 70 |
+
"56": "Relative_time",
|
| 71 |
+
"57": "Sending",
|
| 72 |
+
"58": "Activity_pause",
|
| 73 |
+
"59": "Military",
|
| 74 |
+
"60": "Expectation",
|
| 75 |
+
"61": "Extradition",
|
| 76 |
+
"62": "Aging",
|
| 77 |
+
"63": "Examination",
|
| 78 |
+
"64": "Have_associated",
|
| 79 |
+
"65": "Ingest_substance",
|
| 80 |
+
"66": "Preventing_or_letting",
|
| 81 |
+
"67": "Extreme_value",
|
| 82 |
+
"68": "Achieving_first",
|
| 83 |
+
"69": "Usefulness",
|
| 84 |
+
"70": "Education_teaching",
|
| 85 |
+
"71": "Becoming_silent",
|
| 86 |
+
"72": "Finish_competition",
|
| 87 |
+
"73": "Accomplishment",
|
| 88 |
+
"74": "Cause_to_make_noise",
|
| 89 |
+
"75": "Fall_asleep",
|
| 90 |
+
"76": "Food",
|
| 91 |
+
"77": "Sign",
|
| 92 |
+
"78": "Telling",
|
| 93 |
+
"79": "Used_up",
|
| 94 |
+
"80": "Undergoing",
|
| 95 |
+
"81": "Colonization",
|
| 96 |
+
"82": "Obscurity",
|
| 97 |
+
"83": "Apply_heat",
|
| 98 |
+
"84": "Being_in_captivity",
|
| 99 |
+
"85": "Eclipse",
|
| 100 |
+
"86": "Killing",
|
| 101 |
+
"87": "Judgment_direct_address",
|
| 102 |
+
"88": "Bail_decision",
|
| 103 |
+
"89": "Manner",
|
| 104 |
+
"90": "Predicament",
|
| 105 |
+
"91": "Delivery",
|
| 106 |
+
"92": "Distributed_position",
|
| 107 |
+
"93": "Robbery",
|
| 108 |
+
"94": "Motion",
|
| 109 |
+
"95": "Turning_out",
|
| 110 |
+
"96": "Location_in_time",
|
| 111 |
+
"97": "Becoming_dry",
|
| 112 |
+
"98": "Cause_to_perceive",
|
| 113 |
+
"99": "Expected_location_of_person",
|
| 114 |
+
"100": "Process_end",
|
| 115 |
+
"101": "Dominate_competitor",
|
| 116 |
+
"102": "Change_of_phase",
|
| 117 |
+
"103": "Being_in_control",
|
| 118 |
+
"104": "Halt",
|
| 119 |
+
"105": "Left_to_do",
|
| 120 |
+
"106": "Project",
|
| 121 |
+
"107": "Cause_impact",
|
| 122 |
+
"108": "Individual_history",
|
| 123 |
+
"109": "Position_on_a_scale",
|
| 124 |
+
"110": "Needing",
|
| 125 |
+
"111": "Destroying",
|
| 126 |
+
"112": "Possession",
|
| 127 |
+
"113": "Connecting_architecture",
|
| 128 |
+
"114": "Thriving",
|
| 129 |
+
"115": "Gathering_up",
|
| 130 |
+
"116": "Piracy",
|
| 131 |
+
"117": "Shapes",
|
| 132 |
+
"118": "Rescuing",
|
| 133 |
+
"119": "Perception_active",
|
| 134 |
+
"120": "Stage_of_progress",
|
| 135 |
+
"121": "Withdraw_from_participation",
|
| 136 |
+
"122": "Accompaniment",
|
| 137 |
+
"123": "Improvement_or_decline",
|
| 138 |
+
"124": "Punctual_perception",
|
| 139 |
+
"125": "Becoming_aware",
|
| 140 |
+
"126": "Rewards_and_punishments",
|
| 141 |
+
"127": "Using",
|
| 142 |
+
"128": "Text",
|
| 143 |
+
"129": "Being_in_effect",
|
| 144 |
+
"130": "Law",
|
| 145 |
+
"131": "Kinship",
|
| 146 |
+
"132": "Change_event_duration",
|
| 147 |
+
"133": "Popularity",
|
| 148 |
+
"134": "Infrastructure",
|
| 149 |
+
"135": "Arrest",
|
| 150 |
+
"136": "Part_whole",
|
| 151 |
+
"137": "Regard",
|
| 152 |
+
"138": "Sound_level",
|
| 153 |
+
"139": "Delimitation_of_diversity",
|
| 154 |
+
"140": "Being_at_risk",
|
| 155 |
+
"141": "Change_post-state",
|
| 156 |
+
"142": "Practice",
|
| 157 |
+
"143": "Endangering",
|
| 158 |
+
"144": "Earnings_and_losses",
|
| 159 |
+
"145": "Body_parts",
|
| 160 |
+
"146": "Cogitation",
|
| 161 |
+
"147": "Contrition",
|
| 162 |
+
"148": "Relation",
|
| 163 |
+
"149": "Taking_time",
|
| 164 |
+
"150": "Ineffability",
|
| 165 |
+
"151": "Process_start",
|
| 166 |
+
"152": "Similarity",
|
| 167 |
+
"153": "Means",
|
| 168 |
+
"154": "Temporal_subregion",
|
| 169 |
+
"155": "Range",
|
| 170 |
+
"156": "System_complexity",
|
| 171 |
+
"157": "Reveal_secret",
|
| 172 |
+
"158": "Daring",
|
| 173 |
+
"159": "Part_ordered_segments",
|
| 174 |
+
"160": "Likelihood",
|
| 175 |
+
"161": "Committing_crime",
|
| 176 |
+
"162": "Exemplar",
|
| 177 |
+
"163": "Memory",
|
| 178 |
+
"164": "Fullness",
|
| 179 |
+
"165": "Dominate_situation",
|
| 180 |
+
"166": "Duration_relation",
|
| 181 |
+
"167": "Making_arrangements",
|
| 182 |
+
"168": "Scarcity",
|
| 183 |
+
"169": "Deciding",
|
| 184 |
+
"170": "Being_in_operation",
|
| 185 |
+
"171": "Catching_fire",
|
| 186 |
+
"172": "Competition",
|
| 187 |
+
"173": "Coming_to_be",
|
| 188 |
+
"174": "Boundary",
|
| 189 |
+
"175": "Typicality",
|
| 190 |
+
"176": "Activity_stop",
|
| 191 |
+
"177": "Wealthiness",
|
| 192 |
+
"178": "Intentionally_create",
|
| 193 |
+
"179": "Serving_in_capacity",
|
| 194 |
+
"180": "Subjective_influence",
|
| 195 |
+
"181": "Being_wet",
|
| 196 |
+
"182": "Buildings",
|
| 197 |
+
"183": "Commerce_sell",
|
| 198 |
+
"184": "Interior_profile_relation",
|
| 199 |
+
"185": "Being_dry",
|
| 200 |
+
"186": "Besieging",
|
| 201 |
+
"187": "Indigenous_origin",
|
| 202 |
+
"188": "Progression",
|
| 203 |
+
"189": "State_of_entity",
|
| 204 |
+
"190": "Architectural_part",
|
| 205 |
+
"191": "Intentional_traversing",
|
| 206 |
+
"192": "Being_necessary",
|
| 207 |
+
"193": "Change_of_leadership",
|
| 208 |
+
"194": "Ammunition",
|
| 209 |
+
"195": "Suitability",
|
| 210 |
+
"196": "Change_operational_state",
|
| 211 |
+
"197": "Abounding_with",
|
| 212 |
+
"198": "Information",
|
| 213 |
+
"199": "Body_movement",
|
| 214 |
+
"200": "Inclination",
|
| 215 |
+
"201": "Part_piece",
|
| 216 |
+
"202": "Supply",
|
| 217 |
+
"203": "Point_of_dispute",
|
| 218 |
+
"204": "Ride_vehicle",
|
| 219 |
+
"205": "Instance",
|
| 220 |
+
"206": "Quitting_a_place",
|
| 221 |
+
"207": "Invading",
|
| 222 |
+
"208": "Candidness",
|
| 223 |
+
"209": "Making_faces",
|
| 224 |
+
"210": "Encoding",
|
| 225 |
+
"211": "Sent_items",
|
| 226 |
+
"212": "Religious_belief",
|
| 227 |
+
"213": "Fastener",
|
| 228 |
+
"214": "Taking_sides",
|
| 229 |
+
"215": "Fairness_evaluation",
|
| 230 |
+
"216": "Assessing",
|
| 231 |
+
"217": "Scouring",
|
| 232 |
+
"218": "Sign_agreement",
|
| 233 |
+
"219": "Soaking_up",
|
| 234 |
+
"220": "Create_physical_artwork",
|
| 235 |
+
"221": "Social_event",
|
| 236 |
+
"222": "Hearsay",
|
| 237 |
+
"223": "Adjusting",
|
| 238 |
+
"224": "Enforcing",
|
| 239 |
+
"225": "Tolerating",
|
| 240 |
+
"226": "Offshoot",
|
| 241 |
+
"227": "Social_interaction_evaluation",
|
| 242 |
+
"228": "Run_risk",
|
| 243 |
+
"229": "People",
|
| 244 |
+
"230": "Create_representation",
|
| 245 |
+
"231": "Operational_testing",
|
| 246 |
+
"232": "Sounds",
|
| 247 |
+
"233": "Biological_area",
|
| 248 |
+
"234": "Heralding",
|
| 249 |
+
"235": "Labor_product",
|
| 250 |
+
"236": "Cause_change_of_position_on_a_scale",
|
| 251 |
+
"237": "Judgment",
|
| 252 |
+
"238": "Undergo_change",
|
| 253 |
+
"239": "Cause_to_make_progress",
|
| 254 |
+
"240": "Being_employed",
|
| 255 |
+
"241": "Speak_on_topic",
|
| 256 |
+
"242": "Bearing_arms",
|
| 257 |
+
"243": "Documents",
|
| 258 |
+
"244": "Catastrophe",
|
| 259 |
+
"245": "Categorization",
|
| 260 |
+
"246": "Disembarking",
|
| 261 |
+
"247": "Evaluative_comparison",
|
| 262 |
+
"248": "Medical_conditions",
|
| 263 |
+
"249": "Judicial_body",
|
| 264 |
+
"250": "Ranked_expectation",
|
| 265 |
+
"251": "Success_or_failure",
|
| 266 |
+
"252": "Cause_to_amalgamate",
|
| 267 |
+
"253": "Rite",
|
| 268 |
+
"254": "Hit_or_miss",
|
| 269 |
+
"255": "Social_connection",
|
| 270 |
+
"256": "Alliance",
|
| 271 |
+
"257": "Measure_linear_extent",
|
| 272 |
+
"258": "Ground_up",
|
| 273 |
+
"259": "Certainty",
|
| 274 |
+
"260": "Transfer",
|
| 275 |
+
"261": "Hiring",
|
| 276 |
+
"262": "Clothing",
|
| 277 |
+
"263": "Cause_motion",
|
| 278 |
+
"264": "Being_attached",
|
| 279 |
+
"265": "Out_of_existence",
|
| 280 |
+
"266": "Reliance",
|
| 281 |
+
"267": "Capability",
|
| 282 |
+
"268": "Memorization",
|
| 283 |
+
"269": "Storing",
|
| 284 |
+
"270": "Offenses",
|
| 285 |
+
"271": "Misdeed",
|
| 286 |
+
"272": "Communication_response",
|
| 287 |
+
"273": "First_experience",
|
| 288 |
+
"274": "Fear",
|
| 289 |
+
"275": "Just_found_out",
|
| 290 |
+
"276": "Foreign_or_domestic_country",
|
| 291 |
+
"277": "Scrutiny",
|
| 292 |
+
"278": "Respond_to_proposal",
|
| 293 |
+
"279": "Mass_motion",
|
| 294 |
+
"280": "Going_back_on_a_commitment",
|
| 295 |
+
"281": "Rate_description",
|
| 296 |
+
"282": "Breathing",
|
| 297 |
+
"283": "Desiring",
|
| 298 |
+
"284": "Using_resource",
|
| 299 |
+
"285": "Intentionally_act",
|
| 300 |
+
"286": "Cure",
|
| 301 |
+
"287": "Having_or_lacking_access",
|
| 302 |
+
"288": "Render_nonfunctional",
|
| 303 |
+
"289": "Representative",
|
| 304 |
+
"290": "Commerce_pay",
|
| 305 |
+
"291": "Notification_of_charges",
|
| 306 |
+
"292": "Prominence",
|
| 307 |
+
"293": "Closure",
|
| 308 |
+
"294": "Preference",
|
| 309 |
+
"295": "Imprisonment",
|
| 310 |
+
"296": "Desirable_event",
|
| 311 |
+
"297": "Ratification",
|
| 312 |
+
"298": "Getting_vehicle_underway",
|
| 313 |
+
"299": "Beyond_compare",
|
| 314 |
+
"300": "History",
|
| 315 |
+
"301": "Attention",
|
| 316 |
+
"302": "Translating",
|
| 317 |
+
"303": "Disgraceful_situation",
|
| 318 |
+
"304": "Noise_makers",
|
| 319 |
+
"305": "Addiction",
|
| 320 |
+
"306": "Attending",
|
| 321 |
+
"307": "Seeking_to_achieve",
|
| 322 |
+
"308": "Measurable_attributes",
|
| 323 |
+
"309": "Attaching",
|
| 324 |
+
"310": "Gizmo",
|
| 325 |
+
"311": "Partiality",
|
| 326 |
+
"312": "Adjacency",
|
| 327 |
+
"313": "Meet_with",
|
| 328 |
+
"314": "Cause_fluidic_motion",
|
| 329 |
+
"315": "Institutionalization",
|
| 330 |
+
"316": "Motion_noise",
|
| 331 |
+
"317": "Make_noise",
|
| 332 |
+
"318": "Perception_experience",
|
| 333 |
+
"319": "Temperature",
|
| 334 |
+
"320": "Criminal_investigation",
|
| 335 |
+
"321": "Completeness",
|
| 336 |
+
"322": "Waiting",
|
| 337 |
+
"323": "Discussion",
|
| 338 |
+
"324": "Reassuring",
|
| 339 |
+
"325": "Be_in_agreement_on_assessment",
|
| 340 |
+
"326": "Vocalizations",
|
| 341 |
+
"327": "Undergo_transformation",
|
| 342 |
+
"328": "Quantity",
|
| 343 |
+
"329": "Quantified_mass",
|
| 344 |
+
"330": "Forgoing",
|
| 345 |
+
"331": "Obviousness",
|
| 346 |
+
"332": "Measure_area",
|
| 347 |
+
"333": "Referring_by_name",
|
| 348 |
+
"334": "Performing_arts",
|
| 349 |
+
"335": "Directional_locative_relation",
|
| 350 |
+
"336": "Cutting",
|
| 351 |
+
"337": "Physical_artworks",
|
| 352 |
+
"338": "Accoutrements",
|
| 353 |
+
"339": "Complaining",
|
| 354 |
+
"340": "Grinding",
|
| 355 |
+
"341": "Being_active",
|
| 356 |
+
"342": "Estimating",
|
| 357 |
+
"343": "Reason",
|
| 358 |
+
"344": "Shoot_projectiles",
|
| 359 |
+
"345": "Fleeing",
|
| 360 |
+
"346": "Cause_expansion",
|
| 361 |
+
"347": "Arraignment",
|
| 362 |
+
"348": "Abandonment",
|
| 363 |
+
"349": "Statement",
|
| 364 |
+
"350": "Verdict",
|
| 365 |
+
"351": "Text_creation",
|
| 366 |
+
"352": "Placing",
|
| 367 |
+
"353": "Biological_urge",
|
| 368 |
+
"354": "Beat_opponent",
|
| 369 |
+
"355": "Activity_start",
|
| 370 |
+
"356": "Filling",
|
| 371 |
+
"357": "Stimulus_focus",
|
| 372 |
+
"358": "Have_as_requirement",
|
| 373 |
+
"359": "Make_acquaintance",
|
| 374 |
+
"360": "Putting_out_fire",
|
| 375 |
+
"361": "Purpose",
|
| 376 |
+
"362": "Mental_stimulus_stimulus_focus",
|
| 377 |
+
"363": "Offering",
|
| 378 |
+
"364": "Agree_or_refuse_to_act",
|
| 379 |
+
"365": "Remembering_experience",
|
| 380 |
+
"366": "Giving_in",
|
| 381 |
+
"367": "Measure_mass",
|
| 382 |
+
"368": "Sidereal_appearance",
|
| 383 |
+
"369": "Linguistic_meaning",
|
| 384 |
+
"370": "Eventive_affecting",
|
| 385 |
+
"371": "Process_completed_state",
|
| 386 |
+
"372": "Emotions_by_stimulus",
|
| 387 |
+
"373": "Prohibiting_or_licensing",
|
| 388 |
+
"374": "Measure_duration",
|
| 389 |
+
"375": "Experience_bodily_harm",
|
| 390 |
+
"376": "Natural_features",
|
| 391 |
+
"377": "Emergency_fire",
|
| 392 |
+
"378": "Frequency",
|
| 393 |
+
"379": "Response",
|
| 394 |
+
"380": "Frugality",
|
| 395 |
+
"381": "Non-gradable_proximity",
|
| 396 |
+
"382": "Estimated_value",
|
| 397 |
+
"383": "Animals",
|
| 398 |
+
"384": "Front_for",
|
| 399 |
+
"385": "Kidnapping",
|
| 400 |
+
"386": "Mental_stimulus_exp_focus",
|
| 401 |
+
"387": "Measure_volume",
|
| 402 |
+
"388": "Work",
|
| 403 |
+
"389": "Adducing",
|
| 404 |
+
"390": "Exchange",
|
| 405 |
+
"391": "Manipulate_into_doing",
|
| 406 |
+
"392": "Giving_birth",
|
| 407 |
+
"393": "Locale_by_event",
|
| 408 |
+
"394": "Evoking",
|
| 409 |
+
"395": "Body_mark",
|
| 410 |
+
"396": "Shopping",
|
| 411 |
+
"397": "Moving_in_place",
|
| 412 |
+
"398": "Version_sequence",
|
| 413 |
+
"399": "Communicate_categorization",
|
| 414 |
+
"400": "Imposing_obligation",
|
| 415 |
+
"401": "Proportion",
|
| 416 |
+
"402": "Trying_out",
|
| 417 |
+
"403": "Bringing",
|
| 418 |
+
"404": "Growing_food",
|
| 419 |
+
"405": "Mining",
|
| 420 |
+
"406": "Participation",
|
| 421 |
+
"407": "Path_shape",
|
| 422 |
+
"408": "Distinctiveness",
|
| 423 |
+
"409": "Rank",
|
| 424 |
+
"410": "Board_vehicle",
|
| 425 |
+
"411": "Interrupt_process",
|
| 426 |
+
"412": "Color_qualities",
|
| 427 |
+
"413": "Performers_and_roles",
|
| 428 |
+
"414": "Expansion",
|
| 429 |
+
"415": "Compliance",
|
| 430 |
+
"416": "Execution",
|
| 431 |
+
"417": "Successful_action",
|
| 432 |
+
"418": "Rotting",
|
| 433 |
+
"419": "Judgment_communication",
|
| 434 |
+
"420": "Partitive",
|
| 435 |
+
"421": "Excreting",
|
| 436 |
+
"422": "Expertise",
|
| 437 |
+
"423": "Existence",
|
| 438 |
+
"424": "Exporting",
|
| 439 |
+
"425": "Give_impression",
|
| 440 |
+
"426": "Experiencer_obj",
|
| 441 |
+
"427": "Activity_resume",
|
| 442 |
+
"428": "Affirm_or_deny",
|
| 443 |
+
"429": "Co-association",
|
| 444 |
+
"430": "Emphasizing",
|
| 445 |
+
"431": "Irregular_combatants",
|
| 446 |
+
"432": "Legality",
|
| 447 |
+
"433": "Money",
|
| 448 |
+
"434": "Guilt_or_innocence",
|
| 449 |
+
"435": "People_by_residence",
|
| 450 |
+
"436": "Tasting",
|
| 451 |
+
"437": "Extreme_point",
|
| 452 |
+
"438": "Degree_of_processing",
|
| 453 |
+
"439": "Cause_to_start",
|
| 454 |
+
"440": "Wearing",
|
| 455 |
+
"441": "Diversity",
|
| 456 |
+
"442": "Historic_event",
|
| 457 |
+
"443": "Public_services",
|
| 458 |
+
"444": "Setting_fire",
|
| 459 |
+
"445": "Cause_change",
|
| 460 |
+
"446": "Actually_occurring_entity",
|
| 461 |
+
"447": "Isolated_places",
|
| 462 |
+
"448": "Member_of_military",
|
| 463 |
+
"449": "Temporary_stay",
|
| 464 |
+
"450": "Abusing",
|
| 465 |
+
"451": "Dispersal",
|
| 466 |
+
"452": "Giving",
|
| 467 |
+
"453": "Dimension",
|
| 468 |
+
"454": "Path_traveled",
|
| 469 |
+
"455": "Direction",
|
| 470 |
+
"456": "Stinginess",
|
| 471 |
+
"457": "Strictness",
|
| 472 |
+
"458": "Behind_the_scenes",
|
| 473 |
+
"459": "Being_obligated",
|
| 474 |
+
"460": "Make_agreement_on_action",
|
| 475 |
+
"461": "Change_posture",
|
| 476 |
+
"462": "Attack",
|
| 477 |
+
"463": "Fields",
|
| 478 |
+
"464": "Billing",
|
| 479 |
+
"465": "Medium",
|
| 480 |
+
"466": "Activity_finish",
|
| 481 |
+
"467": "Research",
|
| 482 |
+
"468": "Cause_bodily_experience",
|
| 483 |
+
"469": "Change_tool",
|
| 484 |
+
"470": "Vehicle",
|
| 485 |
+
"471": "Emotion_directed",
|
| 486 |
+
"472": "Process",
|
| 487 |
+
"473": "Nuclear_process",
|
| 488 |
+
"474": "Control",
|
| 489 |
+
"475": "Level_of_force_resistance",
|
| 490 |
+
"476": "Possibility",
|
| 491 |
+
"477": "Arson",
|
| 492 |
+
"478": "Avoiding",
|
| 493 |
+
"479": "Roadways",
|
| 494 |
+
"480": "Creating",
|
| 495 |
+
"481": "Claim_ownership",
|
| 496 |
+
"482": "Active_substance",
|
| 497 |
+
"483": "Convey_importance",
|
| 498 |
+
"484": "Supporting",
|
| 499 |
+
"485": "Separating",
|
| 500 |
+
"486": "Labeling",
|
| 501 |
+
"487": "Sentencing",
|
| 502 |
+
"488": "Attempt_means",
|
| 503 |
+
"489": "Light_movement",
|
| 504 |
+
"490": "Businesses",
|
| 505 |
+
"491": "Cause_to_continue",
|
| 506 |
+
"492": "Verification",
|
| 507 |
+
"493": "Forging",
|
| 508 |
+
"494": "Fluidic_motion",
|
| 509 |
+
"495": "Team",
|
| 510 |
+
"496": "Grasp",
|
| 511 |
+
"497": "Being_relevant",
|
| 512 |
+
"498": "Travel",
|
| 513 |
+
"499": "Temporal_collocation",
|
| 514 |
+
"500": "State_continue",
|
| 515 |
+
"501": "Volubility",
|
| 516 |
+
"502": "Cause_change_of_phase",
|
| 517 |
+
"503": "Remembering_information",
|
| 518 |
+
"504": "Opinion",
|
| 519 |
+
"505": "Commerce_buy",
|
| 520 |
+
"506": "Part_inner_outer",
|
| 521 |
+
"507": "Launch_process",
|
| 522 |
+
"508": "Destiny",
|
| 523 |
+
"509": "Try_defendant",
|
| 524 |
+
"510": "Execute_plan",
|
| 525 |
+
"511": "Explaining_the_facts",
|
| 526 |
+
"512": "People_by_origin",
|
| 527 |
+
"513": "Age",
|
| 528 |
+
"514": "Confronting_problem",
|
| 529 |
+
"515": "Hostile_encounter",
|
| 530 |
+
"516": "Assistance",
|
| 531 |
+
"517": "Arranging",
|
| 532 |
+
"518": "Mental_property",
|
| 533 |
+
"519": "Abundance",
|
| 534 |
+
"520": "Breaking_out_captive",
|
| 535 |
+
"521": "Manner_of_life",
|
| 536 |
+
"522": "Hit_target",
|
| 537 |
+
"523": "Traversing",
|
| 538 |
+
"524": "Employing",
|
| 539 |
+
"525": "Emanating",
|
| 540 |
+
"526": "Taking",
|
| 541 |
+
"527": "Redirecting",
|
| 542 |
+
"528": "People_by_vocation",
|
| 543 |
+
"529": "People_by_religion",
|
| 544 |
+
"530": "Body_description_holistic",
|
| 545 |
+
"531": "Timespan",
|
| 546 |
+
"532": "Revenge",
|
| 547 |
+
"533": "Medical_intervention",
|
| 548 |
+
"534": "Appointing",
|
| 549 |
+
"535": "Hospitality",
|
| 550 |
+
"536": "Commemorative",
|
| 551 |
+
"537": "Terrorism",
|
| 552 |
+
"538": "Surrendering_possession",
|
| 553 |
+
"539": "Choosing",
|
| 554 |
+
"540": "Entering_of_plea",
|
| 555 |
+
"541": "Come_together",
|
| 556 |
+
"542": "Concessive",
|
| 557 |
+
"543": "System",
|
| 558 |
+
"544": "Building",
|
| 559 |
+
"545": "Awareness_status",
|
| 560 |
+
"546": "Type",
|
| 561 |
+
"547": "Motion_directional",
|
| 562 |
+
"548": "Name_conferral",
|
| 563 |
+
"549": "Sequence",
|
| 564 |
+
"550": "Artificiality",
|
| 565 |
+
"551": "Hunting",
|
| 566 |
+
"552": "Degree",
|
| 567 |
+
"553": "Transition_to_state",
|
| 568 |
+
"554": "Prevent_or_allow_possession",
|
| 569 |
+
"555": "Pattern",
|
| 570 |
+
"556": "Aiming",
|
| 571 |
+
"557": "Quitting",
|
| 572 |
+
"558": "Retaining",
|
| 573 |
+
"559": "Recording",
|
| 574 |
+
"560": "Judgment_of_intensity",
|
| 575 |
+
"561": "Craft",
|
| 576 |
+
"562": "Cardinal_numbers",
|
| 577 |
+
"563": "Membership",
|
| 578 |
+
"564": "Simple_name",
|
| 579 |
+
"565": "Terms_of_agreement",
|
| 580 |
+
"566": "Damaging",
|
| 581 |
+
"567": "Required_event",
|
| 582 |
+
"568": "Source_of_getting",
|
| 583 |
+
"569": "Reading_activity",
|
| 584 |
+
"570": "Death",
|
| 585 |
+
"571": "Secrecy_status",
|
| 586 |
+
"572": "Biological_entity",
|
| 587 |
+
"573": "Probability",
|
| 588 |
+
"574": "Store",
|
| 589 |
+
"575": "Institutions",
|
| 590 |
+
"576": "Unattributed_information",
|
| 591 |
+
"577": "Arriving",
|
| 592 |
+
"578": "Size",
|
| 593 |
+
"579": "Impression",
|
| 594 |
+
"580": "Becoming_a_member",
|
| 595 |
+
"581": "Self_motion",
|
| 596 |
+
"582": "Cooking_creation",
|
| 597 |
+
"583": "Willingness",
|
| 598 |
+
"584": "Cause_to_fragment",
|
| 599 |
+
"585": "Collaboration",
|
| 600 |
+
"586": "Communication",
|
| 601 |
+
"587": "Conduct",
|
| 602 |
+
"588": "Locale_by_use",
|
| 603 |
+
"589": "Cause_emotion",
|
| 604 |
+
"590": "Fame",
|
| 605 |
+
"591": "Ambient_temperature",
|
| 606 |
+
"592": "Locative_relation",
|
| 607 |
+
"593": "Gesture",
|
| 608 |
+
"594": "Rest",
|
| 609 |
+
"595": "Rape",
|
| 610 |
+
"596": "Forming_relationships",
|
| 611 |
+
"597": "Cause_to_resume",
|
| 612 |
+
"598": "Locale_by_ownership",
|
| 613 |
+
"599": "Weather",
|
| 614 |
+
"600": "Inspecting",
|
| 615 |
+
"601": "Installing",
|
| 616 |
+
"602": "Attributed_information",
|
| 617 |
+
"603": "Indicating",
|
| 618 |
+
"604": "Unemployment_rate",
|
| 619 |
+
"605": "First_rank",
|
| 620 |
+
"606": "Activity_ongoing",
|
| 621 |
+
"607": "Attempt_suasion",
|
| 622 |
+
"608": "Being_questionable",
|
| 623 |
+
"609": "Trial",
|
| 624 |
+
"610": "Importing",
|
| 625 |
+
"611": "Be_subset_of",
|
| 626 |
+
"612": "Cause_to_end",
|
| 627 |
+
"613": "Fire_burning",
|
| 628 |
+
"614": "Compatibility",
|
| 629 |
+
"615": "Activity_done_state",
|
| 630 |
+
"616": "Proliferating_in_number",
|
| 631 |
+
"617": "Removing",
|
| 632 |
+
"618": "Accuracy",
|
| 633 |
+
"619": "Emptying",
|
| 634 |
+
"620": "Lively_place",
|
| 635 |
+
"621": "Reading_perception",
|
| 636 |
+
"622": "Part_orientational",
|
| 637 |
+
"623": "Aggregate",
|
| 638 |
+
"624": "Chatting",
|
| 639 |
+
"625": "Spatial_co-location",
|
| 640 |
+
"626": "Locale",
|
| 641 |
+
"627": "Awareness",
|
| 642 |
+
"628": "Commercial_transaction",
|
| 643 |
+
"629": "Sole_instance",
|
| 644 |
+
"630": "Familiarity",
|
| 645 |
+
"631": "Occupy_rank",
|
| 646 |
+
"632": "Process_resume",
|
| 647 |
+
"633": "Suasion",
|
| 648 |
+
"634": "Color",
|
| 649 |
+
"635": "Thwarting",
|
| 650 |
+
"636": "Organization",
|
| 651 |
+
"637": "Coming_to_believe",
|
| 652 |
+
"638": "Theft",
|
| 653 |
+
"639": "Reference_text",
|
| 654 |
+
"640": "Connectors",
|
| 655 |
+
"641": "Hindering",
|
| 656 |
+
"642": "Omen",
|
| 657 |
+
"643": "Containers",
|
| 658 |
+
"644": "Preliminaries",
|
| 659 |
+
"645": "Sufficiency",
|
| 660 |
+
"646": "Facial_expression",
|
| 661 |
+
"647": "Morality_evaluation",
|
| 662 |
+
"648": "Being_located",
|
| 663 |
+
"649": "Justifying",
|
| 664 |
+
"650": "Intentionally_affect",
|
| 665 |
+
"651": "Deny_or_grant_permission",
|
| 666 |
+
"652": "Visiting",
|
| 667 |
+
"653": "Legal_rulings",
|
| 668 |
+
"654": "Posture",
|
| 669 |
+
"655": "Network",
|
| 670 |
+
"656": "People_by_jurisdiction",
|
| 671 |
+
"657": "Proper_reference",
|
| 672 |
+
"658": "Substance",
|
| 673 |
+
"659": "Surviving",
|
| 674 |
+
"660": "Smuggling",
|
| 675 |
+
"661": "Commitment",
|
| 676 |
+
"662": "Weapon",
|
| 677 |
+
"663": "Suspicion",
|
| 678 |
+
"664": "Subversion",
|
| 679 |
+
"665": "Sensation",
|
| 680 |
+
"666": "Ceasing_to_be",
|
| 681 |
+
"667": "Containing",
|
| 682 |
+
"668": "Contacting",
|
| 683 |
+
"669": "Conquering",
|
| 684 |
+
"670": "Importance",
|
| 685 |
+
"671": "Submitting_documents",
|
| 686 |
+
"672": "Firing",
|
| 687 |
+
"673": "Cause_change_of_strength",
|
| 688 |
+
"674": "Correctness",
|
| 689 |
+
"675": "Exchange_currency",
|
| 690 |
+
"676": "Feeling",
|
| 691 |
+
"677": "Temporal_pattern",
|
| 692 |
+
"678": "Causation",
|
| 693 |
+
"679": "Predicting",
|
| 694 |
+
"680": "Protecting",
|
| 695 |
+
"681": "Preserving",
|
| 696 |
+
"682": "Relational_natural_features",
|
| 697 |
+
"683": "Releasing",
|
| 698 |
+
"684": "Reasoning",
|
| 699 |
+
"685": "Residence",
|
| 700 |
+
"686": "Replacing",
|
| 701 |
+
"687": "Receiving",
|
| 702 |
+
"688": "Reshaping",
|
| 703 |
+
"689": "Expensiveness",
|
| 704 |
+
"690": "Reporting",
|
| 705 |
+
"691": "Subordinates_and_superiors",
|
| 706 |
+
"692": "Operate_vehicle",
|
| 707 |
+
"693": "Manipulation",
|
| 708 |
+
"694": "Rebellion",
|
| 709 |
+
"695": "Touring",
|
| 710 |
+
"696": "Location_of_light",
|
| 711 |
+
"697": "Being_operational",
|
| 712 |
+
"698": "Remainder",
|
| 713 |
+
"699": "Chemical-sense_description",
|
| 714 |
+
"700": "Entity",
|
| 715 |
+
"701": "Desirability",
|
| 716 |
+
"702": "Commerce_scenario",
|
| 717 |
+
"703": "Food_gathering",
|
| 718 |
+
"704": "Holding_off_on",
|
| 719 |
+
"705": "Within_distance",
|
| 720 |
+
"706": "Resolve_problem",
|
| 721 |
+
"707": "Questioning",
|
| 722 |
+
"708": "Being_named",
|
| 723 |
+
"709": "Risky_situation",
|
| 724 |
+
"710": "Negation",
|
| 725 |
+
"711": "Calendric_unit",
|
| 726 |
+
"712": "Alternatives",
|
| 727 |
+
"713": "Renting",
|
| 728 |
+
"714": "Reliance_on_expectation",
|
| 729 |
+
"715": "Increment",
|
| 730 |
+
"716": "Simple_naming",
|
| 731 |
+
"717": "Clothing_parts",
|
| 732 |
+
"718": "Simultaneity",
|
| 733 |
+
"719": "Rejuvenation",
|
| 734 |
+
"720": "Precipitation",
|
| 735 |
+
"721": "Renunciation",
|
| 736 |
+
"722": "Prevarication",
|
| 737 |
+
"723": "Attempt",
|
| 738 |
+
"724": "Law_enforcement_agency",
|
| 739 |
+
"725": "Ingestion",
|
| 740 |
+
"726": "Level_of_force_exertion",
|
| 741 |
+
"727": "Inclusion",
|
| 742 |
+
"728": "Spatial_contact",
|
| 743 |
+
"729": "Custom",
|
| 744 |
+
"730": "Hiding_objects",
|
| 745 |
+
"731": "People_by_age",
|
| 746 |
+
"732": "Contingency",
|
| 747 |
+
"733": "Coincidence",
|
| 748 |
+
"734": "Impact",
|
| 749 |
+
"735": "Quarreling",
|
| 750 |
+
"736": "Aesthetics",
|
| 751 |
+
"737": "Cognitive_connection",
|
| 752 |
+
"738": "Getting",
|
| 753 |
+
"739": "Being_incarcerated",
|
| 754 |
+
"740": "Coming_up_with",
|
| 755 |
+
"741": "Change_event_time",
|
| 756 |
+
"742": "Setting_out",
|
| 757 |
+
"743": "Openness",
|
| 758 |
+
"744": "Assemble",
|
| 759 |
+
"745": "Reading_aloud",
|
| 760 |
+
"746": "Difficulty",
|
| 761 |
+
"747": "Change_position_on_a_scale",
|
| 762 |
+
"748": "Planned_trajectory",
|
| 763 |
+
"749": "Becoming_separated",
|
| 764 |
+
"750": "Cause_to_move_in_place",
|
| 765 |
+
"751": "Continued_state_of_affairs",
|
| 766 |
+
"752": "Experiencer_focus",
|
| 767 |
+
"753": "Seeking",
|
| 768 |
+
"754": "Emotions_of_mental_activity",
|
| 769 |
+
"755": "Immobilization",
|
| 770 |
+
"756": "Firefighting",
|
| 771 |
+
"757": "Reforming_a_system",
|
| 772 |
+
"758": "Identicality",
|
| 773 |
+
"759": "Locating",
|
| 774 |
+
"760": "Event",
|
| 775 |
+
"761": "Attitude_description",
|
| 776 |
+
"762": "Personal_relationship",
|
| 777 |
+
"763": "Goal",
|
| 778 |
+
"764": "Artifact",
|
| 779 |
+
"765": "Emotion_active",
|
| 780 |
+
"766": "Recovery",
|
| 781 |
+
"767": "Duration_description",
|
| 782 |
+
"768": "Speed_description",
|
| 783 |
+
"769": "Relational_political_locales",
|
| 784 |
+
"770": "Win_prize",
|
| 785 |
+
"771": "Rate_quantification",
|
| 786 |
+
"772": "Summarizing",
|
| 787 |
+
"773": "Cause_to_experience",
|
| 788 |
+
"774": "Activity_ready_state",
|
| 789 |
+
"775": "Sharpness",
|
| 790 |
+
"776": "Escaping",
|
| 791 |
+
"777": "Waking_up",
|
| 792 |
+
"778": "Toxic_substance",
|
| 793 |
+
"779": "Dead_or_alive",
|
| 794 |
+
"780": "Differentiation",
|
| 795 |
+
"781": "Operating_a_system",
|
| 796 |
+
"782": "Change_direction",
|
| 797 |
+
"783": "Proportional_quantity",
|
| 798 |
+
"784": "Domain",
|
| 799 |
+
"785": "Time_vector",
|
| 800 |
+
"786": "Ordinal_numbers",
|
| 801 |
+
"787": "Trendiness",
|
| 802 |
+
"788": "Idiosyncrasy",
|
| 803 |
+
"789": "Building_subparts",
|
| 804 |
+
"790": "Being_born",
|
| 805 |
+
"791": "Being_in_category",
|
| 806 |
+
"792": "Process_continue",
|
| 807 |
+
"793": "Carry_goods",
|
| 808 |
+
"794": "Duplication",
|
| 809 |
+
"795": "Make_cognitive_connection",
|
| 810 |
+
"796": "Cotheme"
|
| 811 |
+
},
|
| 812 |
+
"initializer_range": 0.02,
|
| 813 |
+
"intermediate_size": 3072,
|
| 814 |
+
"label2id": {
|
| 815 |
+
"Abandonment": 348,
|
| 816 |
+
"Abounding_with": 197,
|
| 817 |
+
"Abundance": 519,
|
| 818 |
+
"Abusing": 450,
|
| 819 |
+
"Accompaniment": 122,
|
| 820 |
+
"Accomplishment": 73,
|
| 821 |
+
"Accoutrements": 338,
|
| 822 |
+
"Accuracy": 618,
|
| 823 |
+
"Achieving_first": 68,
|
| 824 |
+
"Active_substance": 482,
|
| 825 |
+
"Activity_done_state": 615,
|
| 826 |
+
"Activity_finish": 466,
|
| 827 |
+
"Activity_ongoing": 606,
|
| 828 |
+
"Activity_pause": 58,
|
| 829 |
+
"Activity_prepare": 23,
|
| 830 |
+
"Activity_ready_state": 774,
|
| 831 |
+
"Activity_resume": 427,
|
| 832 |
+
"Activity_start": 355,
|
| 833 |
+
"Activity_stop": 176,
|
| 834 |
+
"Actually_occurring_entity": 446,
|
| 835 |
+
"Addiction": 305,
|
| 836 |
+
"Adducing": 389,
|
| 837 |
+
"Adjacency": 312,
|
| 838 |
+
"Adjusting": 223,
|
| 839 |
+
"Adopt_selection": 50,
|
| 840 |
+
"Aesthetics": 736,
|
| 841 |
+
"Affirm_or_deny": 428,
|
| 842 |
+
"Age": 513,
|
| 843 |
+
"Aggregate": 623,
|
| 844 |
+
"Aging": 62,
|
| 845 |
+
"Agree_or_refuse_to_act": 364,
|
| 846 |
+
"Agriculture": 5,
|
| 847 |
+
"Aiming": 556,
|
| 848 |
+
"Alliance": 256,
|
| 849 |
+
"Alternatives": 712,
|
| 850 |
+
"Amalgamation": 52,
|
| 851 |
+
"Amassing": 31,
|
| 852 |
+
"Ambient_temperature": 591,
|
| 853 |
+
"Ammunition": 194,
|
| 854 |
+
"Amounting_to": 39,
|
| 855 |
+
"Animals": 383,
|
| 856 |
+
"Apply_heat": 83,
|
| 857 |
+
"Appointing": 534,
|
| 858 |
+
"Architectural_part": 190,
|
| 859 |
+
"Arraignment": 347,
|
| 860 |
+
"Arranging": 517,
|
| 861 |
+
"Arrest": 135,
|
| 862 |
+
"Arriving": 577,
|
| 863 |
+
"Arson": 477,
|
| 864 |
+
"Artifact": 764,
|
| 865 |
+
"Artificiality": 550,
|
| 866 |
+
"Assemble": 744,
|
| 867 |
+
"Assessing": 216,
|
| 868 |
+
"Assistance": 516,
|
| 869 |
+
"Attaching": 309,
|
| 870 |
+
"Attack": 462,
|
| 871 |
+
"Attempt": 723,
|
| 872 |
+
"Attempt_means": 488,
|
| 873 |
+
"Attempt_suasion": 607,
|
| 874 |
+
"Attending": 306,
|
| 875 |
+
"Attention": 301,
|
| 876 |
+
"Attitude_description": 761,
|
| 877 |
+
"Attributed_information": 602,
|
| 878 |
+
"Avoiding": 478,
|
| 879 |
+
"Awareness": 627,
|
| 880 |
+
"Awareness_status": 545,
|
| 881 |
+
"Bail_decision": 88,
|
| 882 |
+
"Be_in_agreement_on_action": 38,
|
| 883 |
+
"Be_in_agreement_on_assessment": 325,
|
| 884 |
+
"Be_subset_of": 611,
|
| 885 |
+
"Bearing_arms": 242,
|
| 886 |
+
"Beat_opponent": 354,
|
| 887 |
+
"Becoming": 36,
|
| 888 |
+
"Becoming_a_member": 580,
|
| 889 |
+
"Becoming_aware": 125,
|
| 890 |
+
"Becoming_dry": 97,
|
| 891 |
+
"Becoming_separated": 749,
|
| 892 |
+
"Becoming_silent": 71,
|
| 893 |
+
"Behind_the_scenes": 458,
|
| 894 |
+
"Being_active": 341,
|
| 895 |
+
"Being_at_risk": 140,
|
| 896 |
+
"Being_attached": 264,
|
| 897 |
+
"Being_born": 790,
|
| 898 |
+
"Being_dry": 185,
|
| 899 |
+
"Being_employed": 240,
|
| 900 |
+
"Being_in_captivity": 84,
|
| 901 |
+
"Being_in_category": 791,
|
| 902 |
+
"Being_in_control": 103,
|
| 903 |
+
"Being_in_effect": 129,
|
| 904 |
+
"Being_in_operation": 170,
|
| 905 |
+
"Being_incarcerated": 739,
|
| 906 |
+
"Being_located": 648,
|
| 907 |
+
"Being_named": 708,
|
| 908 |
+
"Being_necessary": 192,
|
| 909 |
+
"Being_obligated": 459,
|
| 910 |
+
"Being_operational": 697,
|
| 911 |
+
"Being_questionable": 608,
|
| 912 |
+
"Being_relevant": 497,
|
| 913 |
+
"Being_wet": 181,
|
| 914 |
+
"Besieging": 186,
|
| 915 |
+
"Beyond_compare": 299,
|
| 916 |
+
"Billing": 464,
|
| 917 |
+
"Biological_area": 233,
|
| 918 |
+
"Biological_entity": 572,
|
| 919 |
+
"Biological_urge": 353,
|
| 920 |
+
"Board_vehicle": 410,
|
| 921 |
+
"Body_description_holistic": 530,
|
| 922 |
+
"Body_mark": 395,
|
| 923 |
+
"Body_movement": 199,
|
| 924 |
+
"Body_parts": 145,
|
| 925 |
+
"Boundary": 174,
|
| 926 |
+
"Breaking_out_captive": 520,
|
| 927 |
+
"Breathing": 282,
|
| 928 |
+
"Bringing": 403,
|
| 929 |
+
"Building": 544,
|
| 930 |
+
"Building_subparts": 789,
|
| 931 |
+
"Buildings": 182,
|
| 932 |
+
"Bungling": 19,
|
| 933 |
+
"Businesses": 490,
|
| 934 |
+
"Calendric_unit": 711,
|
| 935 |
+
"Candidness": 208,
|
| 936 |
+
"Capability": 267,
|
| 937 |
+
"Capacity": 35,
|
| 938 |
+
"Cardinal_numbers": 562,
|
| 939 |
+
"Carry_goods": 793,
|
| 940 |
+
"Catastrophe": 244,
|
| 941 |
+
"Catching_fire": 171,
|
| 942 |
+
"Categorization": 245,
|
| 943 |
+
"Causation": 678,
|
| 944 |
+
"Cause_bodily_experience": 468,
|
| 945 |
+
"Cause_change": 445,
|
| 946 |
+
"Cause_change_of_phase": 502,
|
| 947 |
+
"Cause_change_of_position_on_a_scale": 236,
|
| 948 |
+
"Cause_change_of_strength": 673,
|
| 949 |
+
"Cause_emotion": 589,
|
| 950 |
+
"Cause_expansion": 346,
|
| 951 |
+
"Cause_fluidic_motion": 314,
|
| 952 |
+
"Cause_harm": 25,
|
| 953 |
+
"Cause_impact": 107,
|
| 954 |
+
"Cause_motion": 263,
|
| 955 |
+
"Cause_to_amalgamate": 252,
|
| 956 |
+
"Cause_to_continue": 491,
|
| 957 |
+
"Cause_to_end": 612,
|
| 958 |
+
"Cause_to_experience": 773,
|
| 959 |
+
"Cause_to_fragment": 584,
|
| 960 |
+
"Cause_to_make_noise": 74,
|
| 961 |
+
"Cause_to_make_progress": 239,
|
| 962 |
+
"Cause_to_move_in_place": 750,
|
| 963 |
+
"Cause_to_perceive": 98,
|
| 964 |
+
"Cause_to_resume": 597,
|
| 965 |
+
"Cause_to_start": 439,
|
| 966 |
+
"Cause_to_wake": 33,
|
| 967 |
+
"Ceasing_to_be": 666,
|
| 968 |
+
"Certainty": 259,
|
| 969 |
+
"Change_direction": 782,
|
| 970 |
+
"Change_event_duration": 132,
|
| 971 |
+
"Change_event_time": 741,
|
| 972 |
+
"Change_of_leadership": 193,
|
| 973 |
+
"Change_of_phase": 102,
|
| 974 |
+
"Change_operational_state": 196,
|
| 975 |
+
"Change_position_on_a_scale": 747,
|
| 976 |
+
"Change_post-state": 141,
|
| 977 |
+
"Change_posture": 461,
|
| 978 |
+
"Change_tool": 469,
|
| 979 |
+
"Chatting": 624,
|
| 980 |
+
"Chemical-sense_description": 699,
|
| 981 |
+
"Choosing": 539,
|
| 982 |
+
"Claim_ownership": 481,
|
| 983 |
+
"Closure": 293,
|
| 984 |
+
"Clothing": 262,
|
| 985 |
+
"Clothing_parts": 717,
|
| 986 |
+
"Co-association": 429,
|
| 987 |
+
"Cogitation": 146,
|
| 988 |
+
"Cognitive_connection": 737,
|
| 989 |
+
"Coincidence": 733,
|
| 990 |
+
"Collaboration": 585,
|
| 991 |
+
"Colonization": 81,
|
| 992 |
+
"Color": 634,
|
| 993 |
+
"Color_qualities": 412,
|
| 994 |
+
"Come_down_with": 8,
|
| 995 |
+
"Come_together": 541,
|
| 996 |
+
"Coming_to_be": 173,
|
| 997 |
+
"Coming_to_believe": 637,
|
| 998 |
+
"Coming_up_with": 740,
|
| 999 |
+
"Commemorative": 536,
|
| 1000 |
+
"Commerce_buy": 505,
|
| 1001 |
+
"Commerce_pay": 290,
|
| 1002 |
+
"Commerce_scenario": 702,
|
| 1003 |
+
"Commerce_sell": 183,
|
| 1004 |
+
"Commercial_transaction": 628,
|
| 1005 |
+
"Commitment": 661,
|
| 1006 |
+
"Committing_crime": 161,
|
| 1007 |
+
"Communicate_categorization": 399,
|
| 1008 |
+
"Communication": 586,
|
| 1009 |
+
"Communication_manner": 44,
|
| 1010 |
+
"Communication_noise": 27,
|
| 1011 |
+
"Communication_response": 272,
|
| 1012 |
+
"Compatibility": 614,
|
| 1013 |
+
"Competition": 172,
|
| 1014 |
+
"Complaining": 339,
|
| 1015 |
+
"Completeness": 321,
|
| 1016 |
+
"Compliance": 415,
|
| 1017 |
+
"Concessive": 542,
|
| 1018 |
+
"Conduct": 587,
|
| 1019 |
+
"Confronting_problem": 514,
|
| 1020 |
+
"Connecting_architecture": 113,
|
| 1021 |
+
"Connectors": 640,
|
| 1022 |
+
"Conquering": 669,
|
| 1023 |
+
"Contacting": 668,
|
| 1024 |
+
"Containers": 643,
|
| 1025 |
+
"Containing": 667,
|
| 1026 |
+
"Contingency": 732,
|
| 1027 |
+
"Continued_state_of_affairs": 751,
|
| 1028 |
+
"Contrition": 147,
|
| 1029 |
+
"Control": 474,
|
| 1030 |
+
"Convey_importance": 483,
|
| 1031 |
+
"Cooking_creation": 582,
|
| 1032 |
+
"Correctness": 674,
|
| 1033 |
+
"Cotheme": 796,
|
| 1034 |
+
"Craft": 561,
|
| 1035 |
+
"Create_physical_artwork": 220,
|
| 1036 |
+
"Create_representation": 230,
|
| 1037 |
+
"Creating": 480,
|
| 1038 |
+
"Criminal_investigation": 320,
|
| 1039 |
+
"Cure": 286,
|
| 1040 |
+
"Custom": 729,
|
| 1041 |
+
"Cutting": 336,
|
| 1042 |
+
"Damaging": 566,
|
| 1043 |
+
"Daring": 158,
|
| 1044 |
+
"Dead_or_alive": 779,
|
| 1045 |
+
"Death": 570,
|
| 1046 |
+
"Deciding": 169,
|
| 1047 |
+
"Defending": 41,
|
| 1048 |
+
"Degree": 552,
|
| 1049 |
+
"Degree_of_processing": 438,
|
| 1050 |
+
"Delimitation_of_diversity": 139,
|
| 1051 |
+
"Delivery": 91,
|
| 1052 |
+
"Deny_or_grant_permission": 651,
|
| 1053 |
+
"Departing": 40,
|
| 1054 |
+
"Deserving": 42,
|
| 1055 |
+
"Desirability": 701,
|
| 1056 |
+
"Desirable_event": 296,
|
| 1057 |
+
"Desiring": 283,
|
| 1058 |
+
"Destiny": 508,
|
| 1059 |
+
"Destroying": 111,
|
| 1060 |
+
"Detaining": 43,
|
| 1061 |
+
"Differentiation": 780,
|
| 1062 |
+
"Difficulty": 746,
|
| 1063 |
+
"Dimension": 453,
|
| 1064 |
+
"Direction": 455,
|
| 1065 |
+
"Directional_locative_relation": 335,
|
| 1066 |
+
"Discussion": 323,
|
| 1067 |
+
"Disembarking": 246,
|
| 1068 |
+
"Disgraceful_situation": 303,
|
| 1069 |
+
"Dispersal": 451,
|
| 1070 |
+
"Distinctiveness": 408,
|
| 1071 |
+
"Distributed_position": 92,
|
| 1072 |
+
"Diversity": 441,
|
| 1073 |
+
"Documents": 243,
|
| 1074 |
+
"Domain": 784,
|
| 1075 |
+
"Dominate_competitor": 101,
|
| 1076 |
+
"Dominate_situation": 165,
|
| 1077 |
+
"Duplication": 794,
|
| 1078 |
+
"Duration_description": 767,
|
| 1079 |
+
"Duration_relation": 166,
|
| 1080 |
+
"Earnings_and_losses": 144,
|
| 1081 |
+
"Eclipse": 85,
|
| 1082 |
+
"Economy": 34,
|
| 1083 |
+
"Education_teaching": 70,
|
| 1084 |
+
"Electricity": 54,
|
| 1085 |
+
"Emanating": 525,
|
| 1086 |
+
"Emergency_fire": 377,
|
| 1087 |
+
"Emotion_active": 765,
|
| 1088 |
+
"Emotion_directed": 471,
|
| 1089 |
+
"Emotions_by_stimulus": 372,
|
| 1090 |
+
"Emotions_of_mental_activity": 754,
|
| 1091 |
+
"Emphasizing": 430,
|
| 1092 |
+
"Employing": 524,
|
| 1093 |
+
"Emptying": 619,
|
| 1094 |
+
"Encoding": 210,
|
| 1095 |
+
"Endangering": 143,
|
| 1096 |
+
"Enforcing": 224,
|
| 1097 |
+
"Entering_of_plea": 540,
|
| 1098 |
+
"Entity": 700,
|
| 1099 |
+
"Escaping": 776,
|
| 1100 |
+
"Estimated_value": 382,
|
| 1101 |
+
"Estimating": 342,
|
| 1102 |
+
"Evaluative_comparison": 247,
|
| 1103 |
+
"Event": 760,
|
| 1104 |
+
"Event_instance": 1,
|
| 1105 |
+
"Eventive_affecting": 370,
|
| 1106 |
+
"Evidence": 46,
|
| 1107 |
+
"Evoking": 394,
|
| 1108 |
+
"Examination": 63,
|
| 1109 |
+
"Exchange": 390,
|
| 1110 |
+
"Exchange_currency": 675,
|
| 1111 |
+
"Excreting": 421,
|
| 1112 |
+
"Execute_plan": 510,
|
| 1113 |
+
"Execution": 416,
|
| 1114 |
+
"Exemplar": 162,
|
| 1115 |
+
"Existence": 423,
|
| 1116 |
+
"Expansion": 414,
|
| 1117 |
+
"Expectation": 60,
|
| 1118 |
+
"Expected_location_of_person": 99,
|
| 1119 |
+
"Expensiveness": 689,
|
| 1120 |
+
"Experience_bodily_harm": 375,
|
| 1121 |
+
"Experiencer_focus": 752,
|
| 1122 |
+
"Experiencer_obj": 426,
|
| 1123 |
+
"Expertise": 422,
|
| 1124 |
+
"Explaining_the_facts": 511,
|
| 1125 |
+
"Exporting": 424,
|
| 1126 |
+
"Expressing_publicly": 26,
|
| 1127 |
+
"Extradition": 61,
|
| 1128 |
+
"Extreme_point": 437,
|
| 1129 |
+
"Extreme_value": 67,
|
| 1130 |
+
"Facial_expression": 646,
|
| 1131 |
+
"Fairness_evaluation": 215,
|
| 1132 |
+
"Fall_asleep": 75,
|
| 1133 |
+
"Fame": 590,
|
| 1134 |
+
"Familiarity": 630,
|
| 1135 |
+
"Fastener": 213,
|
| 1136 |
+
"Fear": 274,
|
| 1137 |
+
"Feeling": 676,
|
| 1138 |
+
"Fields": 463,
|
| 1139 |
+
"Filling": 356,
|
| 1140 |
+
"Finish_competition": 72,
|
| 1141 |
+
"Fire_burning": 613,
|
| 1142 |
+
"Firefighting": 756,
|
| 1143 |
+
"Firing": 672,
|
| 1144 |
+
"First_experience": 273,
|
| 1145 |
+
"First_rank": 605,
|
| 1146 |
+
"Fleeing": 345,
|
| 1147 |
+
"Fluidic_motion": 494,
|
| 1148 |
+
"Food": 76,
|
| 1149 |
+
"Food_gathering": 703,
|
| 1150 |
+
"Foreign_or_domestic_country": 276,
|
| 1151 |
+
"Forging": 493,
|
| 1152 |
+
"Forgiveness": 37,
|
| 1153 |
+
"Forgoing": 330,
|
| 1154 |
+
"Forming_relationships": 596,
|
| 1155 |
+
"Frequency": 378,
|
| 1156 |
+
"Front_for": 384,
|
| 1157 |
+
"Frugality": 380,
|
| 1158 |
+
"Fullness": 164,
|
| 1159 |
+
"Gathering_up": 115,
|
| 1160 |
+
"Gesture": 593,
|
| 1161 |
+
"Getting": 738,
|
| 1162 |
+
"Getting_vehicle_underway": 298,
|
| 1163 |
+
"Give_impression": 425,
|
| 1164 |
+
"Giving": 452,
|
| 1165 |
+
"Giving_birth": 392,
|
| 1166 |
+
"Giving_in": 366,
|
| 1167 |
+
"Gizmo": 310,
|
| 1168 |
+
"Goal": 763,
|
| 1169 |
+
"Going_back_on_a_commitment": 280,
|
| 1170 |
+
"Grasp": 496,
|
| 1171 |
+
"Grinding": 340,
|
| 1172 |
+
"Ground_up": 258,
|
| 1173 |
+
"Growing_food": 404,
|
| 1174 |
+
"Guilt_or_innocence": 434,
|
| 1175 |
+
"Halt": 104,
|
| 1176 |
+
"Have_as_requirement": 358,
|
| 1177 |
+
"Have_associated": 64,
|
| 1178 |
+
"Having_or_lacking_access": 287,
|
| 1179 |
+
"Hearsay": 222,
|
| 1180 |
+
"Heralding": 234,
|
| 1181 |
+
"Hiding_objects": 730,
|
| 1182 |
+
"Hindering": 641,
|
| 1183 |
+
"Hiring": 261,
|
| 1184 |
+
"Historic_event": 442,
|
| 1185 |
+
"History": 300,
|
| 1186 |
+
"Hit_or_miss": 254,
|
| 1187 |
+
"Hit_target": 522,
|
| 1188 |
+
"Holding_off_on": 704,
|
| 1189 |
+
"Hospitality": 535,
|
| 1190 |
+
"Hostile_encounter": 515,
|
| 1191 |
+
"Hunting": 551,
|
| 1192 |
+
"Identicality": 758,
|
| 1193 |
+
"Idiosyncrasy": 788,
|
| 1194 |
+
"Immobilization": 755,
|
| 1195 |
+
"Impact": 734,
|
| 1196 |
+
"Importance": 670,
|
| 1197 |
+
"Importing": 610,
|
| 1198 |
+
"Imposing_obligation": 400,
|
| 1199 |
+
"Impression": 579,
|
| 1200 |
+
"Imprisonment": 295,
|
| 1201 |
+
"Improvement_or_decline": 123,
|
| 1202 |
+
"Inclination": 200,
|
| 1203 |
+
"Inclusion": 727,
|
| 1204 |
+
"Increment": 715,
|
| 1205 |
+
"Indicating": 603,
|
| 1206 |
+
"Indigenous_origin": 187,
|
| 1207 |
+
"Individual_history": 108,
|
| 1208 |
+
"Ineffability": 150,
|
| 1209 |
+
"Information": 198,
|
| 1210 |
+
"Infrastructure": 134,
|
| 1211 |
+
"Ingest_substance": 65,
|
| 1212 |
+
"Ingestion": 725,
|
| 1213 |
+
"Ingredients": 10,
|
| 1214 |
+
"Inhibit_movement": 53,
|
| 1215 |
+
"Inspecting": 600,
|
| 1216 |
+
"Installing": 601,
|
| 1217 |
+
"Instance": 205,
|
| 1218 |
+
"Institutionalization": 315,
|
| 1219 |
+
"Institutions": 575,
|
| 1220 |
+
"Intentional_traversing": 191,
|
| 1221 |
+
"Intentionally_act": 285,
|
| 1222 |
+
"Intentionally_affect": 650,
|
| 1223 |
+
"Intentionally_create": 178,
|
| 1224 |
+
"Intercepting": 17,
|
| 1225 |
+
"Interior_profile_relation": 184,
|
| 1226 |
+
"Interrupt_process": 411,
|
| 1227 |
+
"Intoxicants": 12,
|
| 1228 |
+
"Invading": 207,
|
| 1229 |
+
"Irregular_combatants": 431,
|
| 1230 |
+
"Isolated_places": 447,
|
| 1231 |
+
"Judgment": 237,
|
| 1232 |
+
"Judgment_communication": 419,
|
| 1233 |
+
"Judgment_direct_address": 87,
|
| 1234 |
+
"Judgment_of_intensity": 560,
|
| 1235 |
+
"Judicial_body": 249,
|
| 1236 |
+
"Just_found_out": 275,
|
| 1237 |
+
"Justifying": 649,
|
| 1238 |
+
"Kidnapping": 385,
|
| 1239 |
+
"Killing": 86,
|
| 1240 |
+
"Kinship": 131,
|
| 1241 |
+
"Labeling": 486,
|
| 1242 |
+
"Labor_product": 235,
|
| 1243 |
+
"Launch_process": 507,
|
| 1244 |
+
"Law": 130,
|
| 1245 |
+
"Law_enforcement_agency": 724,
|
| 1246 |
+
"Leadership": 20,
|
| 1247 |
+
"Left_to_do": 105,
|
| 1248 |
+
"Legal_rulings": 653,
|
| 1249 |
+
"Legality": 432,
|
| 1250 |
+
"Level_of_force_exertion": 726,
|
| 1251 |
+
"Level_of_force_resistance": 475,
|
| 1252 |
+
"Light_movement": 489,
|
| 1253 |
+
"Likelihood": 160,
|
| 1254 |
+
"Linguistic_meaning": 369,
|
| 1255 |
+
"Lively_place": 620,
|
| 1256 |
+
"Locale": 626,
|
| 1257 |
+
"Locale_by_event": 393,
|
| 1258 |
+
"Locale_by_ownership": 598,
|
| 1259 |
+
"Locale_by_use": 588,
|
| 1260 |
+
"Locating": 759,
|
| 1261 |
+
"Location_in_time": 96,
|
| 1262 |
+
"Location_of_light": 696,
|
| 1263 |
+
"Locative_relation": 592,
|
| 1264 |
+
"Luck": 2,
|
| 1265 |
+
"Make_acquaintance": 359,
|
| 1266 |
+
"Make_agreement_on_action": 460,
|
| 1267 |
+
"Make_cognitive_connection": 795,
|
| 1268 |
+
"Make_noise": 317,
|
| 1269 |
+
"Making_arrangements": 167,
|
| 1270 |
+
"Making_faces": 209,
|
| 1271 |
+
"Manipulate_into_doing": 391,
|
| 1272 |
+
"Manipulation": 693,
|
| 1273 |
+
"Manner": 89,
|
| 1274 |
+
"Manner_of_life": 521,
|
| 1275 |
+
"Manufacturing": 9,
|
| 1276 |
+
"Margin_of_resolution": 32,
|
| 1277 |
+
"Mass_motion": 279,
|
| 1278 |
+
"Means": 153,
|
| 1279 |
+
"Measurable_attributes": 308,
|
| 1280 |
+
"Measure_area": 332,
|
| 1281 |
+
"Measure_duration": 374,
|
| 1282 |
+
"Measure_linear_extent": 257,
|
| 1283 |
+
"Measure_mass": 367,
|
| 1284 |
+
"Measure_volume": 387,
|
| 1285 |
+
"Medical_conditions": 248,
|
| 1286 |
+
"Medical_intervention": 533,
|
| 1287 |
+
"Medical_professionals": 3,
|
| 1288 |
+
"Medical_specialties": 45,
|
| 1289 |
+
"Medium": 465,
|
| 1290 |
+
"Meet_with": 313,
|
| 1291 |
+
"Member_of_military": 448,
|
| 1292 |
+
"Membership": 563,
|
| 1293 |
+
"Memorization": 268,
|
| 1294 |
+
"Memory": 163,
|
| 1295 |
+
"Mental_property": 518,
|
| 1296 |
+
"Mental_stimulus_exp_focus": 386,
|
| 1297 |
+
"Mental_stimulus_stimulus_focus": 362,
|
| 1298 |
+
"Military": 59,
|
| 1299 |
+
"Mining": 405,
|
| 1300 |
+
"Misdeed": 271,
|
| 1301 |
+
"Money": 433,
|
| 1302 |
+
"Morality_evaluation": 647,
|
| 1303 |
+
"Motion": 94,
|
| 1304 |
+
"Motion_directional": 547,
|
| 1305 |
+
"Motion_noise": 316,
|
| 1306 |
+
"Moving_in_place": 397,
|
| 1307 |
+
"Name_conferral": 548,
|
| 1308 |
+
"Natural_features": 376,
|
| 1309 |
+
"Needing": 110,
|
| 1310 |
+
"Negation": 710,
|
| 1311 |
+
"Network": 655,
|
| 1312 |
+
"Noise_makers": 304,
|
| 1313 |
+
"Non-gradable_proximity": 381,
|
| 1314 |
+
"Notification_of_charges": 291,
|
| 1315 |
+
"Nuclear_process": 473,
|
| 1316 |
+
"Objective_influence": 30,
|
| 1317 |
+
"Obscurity": 82,
|
| 1318 |
+
"Obviousness": 331,
|
| 1319 |
+
"Occupy_rank": 631,
|
| 1320 |
+
"Offenses": 270,
|
| 1321 |
+
"Offering": 363,
|
| 1322 |
+
"Offshoot": 226,
|
| 1323 |
+
"Omen": 642,
|
| 1324 |
+
"Openness": 743,
|
| 1325 |
+
"Operate_vehicle": 692,
|
| 1326 |
+
"Operating_a_system": 781,
|
| 1327 |
+
"Operational_testing": 231,
|
| 1328 |
+
"Opinion": 504,
|
| 1329 |
+
"Opportunity": 29,
|
| 1330 |
+
"Ordinal_numbers": 786,
|
| 1331 |
+
"Organization": 636,
|
| 1332 |
+
"Origin": 28,
|
| 1333 |
+
"Out_of_existence": 265,
|
| 1334 |
+
"Part_inner_outer": 506,
|
| 1335 |
+
"Part_ordered_segments": 159,
|
| 1336 |
+
"Part_orientational": 622,
|
| 1337 |
+
"Part_piece": 201,
|
| 1338 |
+
"Part_whole": 136,
|
| 1339 |
+
"Partiality": 311,
|
| 1340 |
+
"Participation": 406,
|
| 1341 |
+
"Partitive": 420,
|
| 1342 |
+
"Path_shape": 407,
|
| 1343 |
+
"Path_traveled": 454,
|
| 1344 |
+
"Pattern": 555,
|
| 1345 |
+
"People": 229,
|
| 1346 |
+
"People_along_political_spectrum": 47,
|
| 1347 |
+
"People_by_age": 731,
|
| 1348 |
+
"People_by_jurisdiction": 656,
|
| 1349 |
+
"People_by_morality": 22,
|
| 1350 |
+
"People_by_origin": 512,
|
| 1351 |
+
"People_by_religion": 529,
|
| 1352 |
+
"People_by_residence": 435,
|
| 1353 |
+
"People_by_vocation": 528,
|
| 1354 |
+
"Perception_active": 119,
|
| 1355 |
+
"Perception_experience": 318,
|
| 1356 |
+
"Performers_and_roles": 413,
|
| 1357 |
+
"Performing_arts": 334,
|
| 1358 |
+
"Personal_relationship": 762,
|
| 1359 |
+
"Physical_artworks": 337,
|
| 1360 |
+
"Piracy": 116,
|
| 1361 |
+
"Placing": 352,
|
| 1362 |
+
"Planned_trajectory": 748,
|
| 1363 |
+
"Point_of_dispute": 203,
|
| 1364 |
+
"Political_locales": 24,
|
| 1365 |
+
"Popularity": 133,
|
| 1366 |
+
"Position_on_a_scale": 109,
|
| 1367 |
+
"Possession": 112,
|
| 1368 |
+
"Possibility": 476,
|
| 1369 |
+
"Posture": 654,
|
| 1370 |
+
"Practice": 142,
|
| 1371 |
+
"Precipitation": 720,
|
| 1372 |
+
"Predicament": 90,
|
| 1373 |
+
"Predicting": 679,
|
| 1374 |
+
"Preference": 294,
|
| 1375 |
+
"Preliminaries": 644,
|
| 1376 |
+
"Presence": 21,
|
| 1377 |
+
"Preserving": 681,
|
| 1378 |
+
"Prevarication": 722,
|
| 1379 |
+
"Prevent_or_allow_possession": 554,
|
| 1380 |
+
"Preventing_or_letting": 66,
|
| 1381 |
+
"Prison": 15,
|
| 1382 |
+
"Probability": 573,
|
| 1383 |
+
"Process": 472,
|
| 1384 |
+
"Process_completed_state": 371,
|
| 1385 |
+
"Process_continue": 792,
|
| 1386 |
+
"Process_end": 100,
|
| 1387 |
+
"Process_resume": 632,
|
| 1388 |
+
"Process_start": 151,
|
| 1389 |
+
"Process_stop": 4,
|
| 1390 |
+
"Processing_materials": 11,
|
| 1391 |
+
"Progression": 188,
|
| 1392 |
+
"Prohibiting_or_licensing": 373,
|
| 1393 |
+
"Project": 106,
|
| 1394 |
+
"Proliferating_in_number": 616,
|
| 1395 |
+
"Prominence": 292,
|
| 1396 |
+
"Proper_reference": 657,
|
| 1397 |
+
"Proportion": 401,
|
| 1398 |
+
"Proportional_quantity": 783,
|
| 1399 |
+
"Protecting": 680,
|
| 1400 |
+
"Public_services": 443,
|
| 1401 |
+
"Punctual_perception": 124,
|
| 1402 |
+
"Purpose": 361,
|
| 1403 |
+
"Putting_out_fire": 360,
|
| 1404 |
+
"Quantified_mass": 329,
|
| 1405 |
+
"Quantity": 328,
|
| 1406 |
+
"Quarreling": 735,
|
| 1407 |
+
"Questioning": 707,
|
| 1408 |
+
"Quitting": 557,
|
| 1409 |
+
"Quitting_a_place": 206,
|
| 1410 |
+
"Range": 155,
|
| 1411 |
+
"Rank": 409,
|
| 1412 |
+
"Ranked_expectation": 250,
|
| 1413 |
+
"Rape": 595,
|
| 1414 |
+
"Rate_description": 281,
|
| 1415 |
+
"Rate_quantification": 771,
|
| 1416 |
+
"Ratification": 297,
|
| 1417 |
+
"Reading_activity": 569,
|
| 1418 |
+
"Reading_aloud": 745,
|
| 1419 |
+
"Reading_perception": 621,
|
| 1420 |
+
"Reason": 343,
|
| 1421 |
+
"Reasoning": 684,
|
| 1422 |
+
"Reassuring": 324,
|
| 1423 |
+
"Rebellion": 694,
|
| 1424 |
+
"Receiving": 687,
|
| 1425 |
+
"Recording": 559,
|
| 1426 |
+
"Recovery": 766,
|
| 1427 |
+
"Redirecting": 527,
|
| 1428 |
+
"Reference_text": 639,
|
| 1429 |
+
"Referring_by_name": 333,
|
| 1430 |
+
"Reforming_a_system": 757,
|
| 1431 |
+
"Regard": 137,
|
| 1432 |
+
"Rejuvenation": 719,
|
| 1433 |
+
"Relation": 148,
|
| 1434 |
+
"Relational_natural_features": 682,
|
| 1435 |
+
"Relational_political_locales": 769,
|
| 1436 |
+
"Relational_quantity": 48,
|
| 1437 |
+
"Relative_time": 56,
|
| 1438 |
+
"Releasing": 683,
|
| 1439 |
+
"Reliance": 266,
|
| 1440 |
+
"Reliance_on_expectation": 714,
|
| 1441 |
+
"Religious_belief": 212,
|
| 1442 |
+
"Remainder": 698,
|
| 1443 |
+
"Remembering_experience": 365,
|
| 1444 |
+
"Remembering_information": 503,
|
| 1445 |
+
"Removing": 617,
|
| 1446 |
+
"Render_nonfunctional": 288,
|
| 1447 |
+
"Renting": 713,
|
| 1448 |
+
"Renunciation": 721,
|
| 1449 |
+
"Reparation": 51,
|
| 1450 |
+
"Replacing": 686,
|
| 1451 |
+
"Reporting": 690,
|
| 1452 |
+
"Representative": 289,
|
| 1453 |
+
"Request": 7,
|
| 1454 |
+
"Required_event": 567,
|
| 1455 |
+
"Rescuing": 118,
|
| 1456 |
+
"Research": 467,
|
| 1457 |
+
"Reshaping": 688,
|
| 1458 |
+
"Residence": 685,
|
| 1459 |
+
"Resolve_problem": 706,
|
| 1460 |
+
"Respond_to_proposal": 278,
|
| 1461 |
+
"Response": 379,
|
| 1462 |
+
"Rest": 594,
|
| 1463 |
+
"Retaining": 558,
|
| 1464 |
+
"Reveal_secret": 157,
|
| 1465 |
+
"Revenge": 532,
|
| 1466 |
+
"Rewards_and_punishments": 126,
|
| 1467 |
+
"Ride_vehicle": 204,
|
| 1468 |
+
"Risky_situation": 709,
|
| 1469 |
+
"Rite": 253,
|
| 1470 |
+
"Roadways": 479,
|
| 1471 |
+
"Robbery": 93,
|
| 1472 |
+
"Rotting": 418,
|
| 1473 |
+
"Run_risk": 228,
|
| 1474 |
+
"Scarcity": 168,
|
| 1475 |
+
"Scope": 13,
|
| 1476 |
+
"Scouring": 217,
|
| 1477 |
+
"Scrutiny": 277,
|
| 1478 |
+
"Secrecy_status": 571,
|
| 1479 |
+
"Seeking": 753,
|
| 1480 |
+
"Seeking_to_achieve": 307,
|
| 1481 |
+
"Self_motion": 581,
|
| 1482 |
+
"Sending": 57,
|
| 1483 |
+
"Sensation": 665,
|
| 1484 |
+
"Sent_items": 211,
|
| 1485 |
+
"Sentencing": 487,
|
| 1486 |
+
"Separating": 485,
|
| 1487 |
+
"Sequence": 549,
|
| 1488 |
+
"Serving_in_capacity": 179,
|
| 1489 |
+
"Setting_fire": 444,
|
| 1490 |
+
"Setting_out": 742,
|
| 1491 |
+
"Shapes": 117,
|
| 1492 |
+
"Sharpness": 775,
|
| 1493 |
+
"Shoot_projectiles": 344,
|
| 1494 |
+
"Shopping": 396,
|
| 1495 |
+
"Sidereal_appearance": 368,
|
| 1496 |
+
"Sign": 77,
|
| 1497 |
+
"Sign_agreement": 218,
|
| 1498 |
+
"Similarity": 152,
|
| 1499 |
+
"Simple_name": 564,
|
| 1500 |
+
"Simple_naming": 716,
|
| 1501 |
+
"Simultaneity": 718,
|
| 1502 |
+
"Size": 578,
|
| 1503 |
+
"Sleep": 6,
|
| 1504 |
+
"Smuggling": 660,
|
| 1505 |
+
"Soaking_up": 219,
|
| 1506 |
+
"Sociability": 14,
|
| 1507 |
+
"Social_connection": 255,
|
| 1508 |
+
"Social_event": 221,
|
| 1509 |
+
"Social_interaction_evaluation": 227,
|
| 1510 |
+
"Sole_instance": 629,
|
| 1511 |
+
"Sound_level": 138,
|
| 1512 |
+
"Sounds": 232,
|
| 1513 |
+
"Source_of_getting": 568,
|
| 1514 |
+
"Spatial_co-location": 625,
|
| 1515 |
+
"Spatial_contact": 728,
|
| 1516 |
+
"Speak_on_topic": 241,
|
| 1517 |
+
"Speed_description": 768,
|
| 1518 |
+
"Stage_of_progress": 120,
|
| 1519 |
+
"State_continue": 500,
|
| 1520 |
+
"State_of_entity": 189,
|
| 1521 |
+
"Statement": 349,
|
| 1522 |
+
"Stimulus_focus": 357,
|
| 1523 |
+
"Stinginess": 456,
|
| 1524 |
+
"Store": 574,
|
| 1525 |
+
"Storing": 269,
|
| 1526 |
+
"Strictness": 457,
|
| 1527 |
+
"Suasion": 633,
|
| 1528 |
+
"Subjective_influence": 180,
|
| 1529 |
+
"Submitting_documents": 671,
|
| 1530 |
+
"Subordinates_and_superiors": 691,
|
| 1531 |
+
"Substance": 658,
|
| 1532 |
+
"Subversion": 664,
|
| 1533 |
+
"Success_or_failure": 251,
|
| 1534 |
+
"Successful_action": 417,
|
| 1535 |
+
"Sufficiency": 645,
|
| 1536 |
+
"Suitability": 195,
|
| 1537 |
+
"Summarizing": 772,
|
| 1538 |
+
"Supply": 202,
|
| 1539 |
+
"Supporting": 484,
|
| 1540 |
+
"Surrendering_possession": 538,
|
| 1541 |
+
"Surviving": 659,
|
| 1542 |
+
"Suspicion": 663,
|
| 1543 |
+
"System": 543,
|
| 1544 |
+
"System_complexity": 156,
|
| 1545 |
+
"Take_place_of": 18,
|
| 1546 |
+
"Taking": 526,
|
| 1547 |
+
"Taking_sides": 214,
|
| 1548 |
+
"Taking_time": 149,
|
| 1549 |
+
"Tasting": 436,
|
| 1550 |
+
"Team": 495,
|
| 1551 |
+
"Telling": 78,
|
| 1552 |
+
"Temperature": 319,
|
| 1553 |
+
"Temporal_collocation": 499,
|
| 1554 |
+
"Temporal_pattern": 677,
|
| 1555 |
+
"Temporal_subregion": 154,
|
| 1556 |
+
"Temporary_stay": 449,
|
| 1557 |
+
"Terms_of_agreement": 565,
|
| 1558 |
+
"Terrorism": 537,
|
| 1559 |
+
"Text": 128,
|
| 1560 |
+
"Text_creation": 351,
|
| 1561 |
+
"Theft": 638,
|
| 1562 |
+
"Thriving": 114,
|
| 1563 |
+
"Thwarting": 635,
|
| 1564 |
+
"Time_vector": 785,
|
| 1565 |
+
"Timespan": 531,
|
| 1566 |
+
"Tolerating": 225,
|
| 1567 |
+
"Topic": 55,
|
| 1568 |
+
"Touring": 695,
|
| 1569 |
+
"Toxic_substance": 778,
|
| 1570 |
+
"Transfer": 260,
|
| 1571 |
+
"Transition_to_a_quality": 49,
|
| 1572 |
+
"Transition_to_state": 553,
|
| 1573 |
+
"Translating": 302,
|
| 1574 |
+
"Travel": 498,
|
| 1575 |
+
"Traversing": 523,
|
| 1576 |
+
"Trendiness": 787,
|
| 1577 |
+
"Trial": 609,
|
| 1578 |
+
"Trust": 16,
|
| 1579 |
+
"Try_defendant": 509,
|
| 1580 |
+
"Trying_out": 402,
|
| 1581 |
+
"Turning_out": 95,
|
| 1582 |
+
"Type": 546,
|
| 1583 |
+
"Typicality": 175,
|
| 1584 |
+
"Unattributed_information": 576,
|
| 1585 |
+
"Undergo_change": 238,
|
| 1586 |
+
"Undergo_transformation": 327,
|
| 1587 |
+
"Undergoing": 80,
|
| 1588 |
+
"Unemployment_rate": 604,
|
| 1589 |
+
"Used_up": 79,
|
| 1590 |
+
"Usefulness": 69,
|
| 1591 |
+
"Using": 127,
|
| 1592 |
+
"Using_resource": 284,
|
| 1593 |
+
"Vehicle": 470,
|
| 1594 |
+
"Verdict": 350,
|
| 1595 |
+
"Verification": 492,
|
| 1596 |
+
"Version_sequence": 398,
|
| 1597 |
+
"Visiting": 652,
|
| 1598 |
+
"Vocalizations": 326,
|
| 1599 |
+
"Volubility": 501,
|
| 1600 |
+
"Waiting": 322,
|
| 1601 |
+
"Waking_up": 777,
|
| 1602 |
+
"Wealthiness": 177,
|
| 1603 |
+
"Weapon": 662,
|
| 1604 |
+
"Wearing": 440,
|
| 1605 |
+
"Weather": 599,
|
| 1606 |
+
"Willingness": 583,
|
| 1607 |
+
"Win_prize": 770,
|
| 1608 |
+
"Withdraw_from_participation": 121,
|
| 1609 |
+
"Within_distance": 705,
|
| 1610 |
+
"Work": 388,
|
| 1611 |
+
"_": 0
|
| 1612 |
+
},
|
| 1613 |
+
"layer_norm_eps": 1e-05,
|
| 1614 |
+
"max_position_embeddings": 514,
|
| 1615 |
+
"model_type": "roberta",
|
| 1616 |
+
"num_attention_heads": 12,
|
| 1617 |
+
"num_hidden_layers": 12,
|
| 1618 |
+
"pad_token_id": 1,
|
| 1619 |
+
"position_embedding_type": "absolute",
|
| 1620 |
+
"problem_type": "single_label_classification",
|
| 1621 |
+
"torch_dtype": "float32",
|
| 1622 |
+
"transformers_version": "4.44.2",
|
| 1623 |
+
"type_vocab_size": 1,
|
| 1624 |
+
"use_cache": true,
|
| 1625 |
+
"vocab_size": 50265
|
| 1626 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:893f0af69dd8689f70deb0b695327584dbb29a0f684b47de3af60cbcddb422c8
|
| 3 |
+
size 501058244
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": "<s>",
|
| 3 |
+
"cls_token": "<s>",
|
| 4 |
+
"eos_token": "</s>",
|
| 5 |
+
"mask_token": {
|
| 6 |
+
"content": "<mask>",
|
| 7 |
+
"lstrip": true,
|
| 8 |
+
"normalized": false,
|
| 9 |
+
"rstrip": false,
|
| 10 |
+
"single_word": false
|
| 11 |
+
},
|
| 12 |
+
"pad_token": "<pad>",
|
| 13 |
+
"sep_token": "</s>",
|
| 14 |
+
"unk_token": "<unk>"
|
| 15 |
+
}
|
tokenizer.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": true,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"0": {
|
| 5 |
+
"content": "<s>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": true,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"1": {
|
| 13 |
+
"content": "<pad>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": true,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"2": {
|
| 21 |
+
"content": "</s>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": true,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"3": {
|
| 29 |
+
"content": "<unk>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": true,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"50264": {
|
| 37 |
+
"content": "<mask>",
|
| 38 |
+
"lstrip": true,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
}
|
| 44 |
+
},
|
| 45 |
+
"bos_token": "<s>",
|
| 46 |
+
"clean_up_tokenization_spaces": true,
|
| 47 |
+
"cls_token": "<s>",
|
| 48 |
+
"eos_token": "</s>",
|
| 49 |
+
"errors": "replace",
|
| 50 |
+
"mask_token": "<mask>",
|
| 51 |
+
"model_max_length": 512,
|
| 52 |
+
"pad_token": "<pad>",
|
| 53 |
+
"sep_token": "</s>",
|
| 54 |
+
"tokenizer_class": "RobertaTokenizer",
|
| 55 |
+
"trim_offsets": true,
|
| 56 |
+
"unk_token": "<unk>"
|
| 57 |
+
}
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7fa88be3c5a122e6f8bb870da2a96c81f4bf5fe9269c0706229dc9eba36d574e
|
| 3 |
+
size 5240
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|