зеркало из https://github.com/microsoft/LiST.git
version 0.1
This commit is contained in:
Родитель
d61d36534f
Коммит
5e505fe354
120
README.md
120
README.md
|
@ -1,33 +1,105 @@
|
|||
# Project
|
||||
# LM-BFF (**B**etter **F**ew-shot **F**ine-tuning of **L**anguage **M**odels)
|
||||
|
||||
> This repo has been populated by an initial template to help get you started. Please
|
||||
> make sure to update the content to build a great experience for community-building.
|
||||
This is the implementation of the paper [Making Pre-trained Language Models Better Few-shot Learners](https://arxiv.org/pdf/2012.15723.pdf). LM-BFF is short for **b**etter **f**ew-shot **f**ine-tuning of **l**anguage **m**odels.
|
||||
|
||||
As the maintainer of this project, please make a few updates:
|
||||
## Quick links
|
||||
|
||||
- Improving this README.MD file to provide a great experience
|
||||
- Updating SUPPORT.MD with content about this project's support experience
|
||||
- Understanding the security reporting process in SECURITY.MD
|
||||
- Remove this section from the README
|
||||
* [Overview](#overview)
|
||||
* [Requirements](#requirements)
|
||||
* [Prepare the data](#prepare-the-data)
|
||||
* [Run the model](#run-lm-bff)
|
||||
* [Quick start](#quick-start)
|
||||
* [Citation](#citation)
|
||||
|
||||
## Contributing
|
||||
|
||||
This project welcomes contributions and suggestions. Most contributions require you to agree to a
|
||||
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
|
||||
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
|
||||
## Overview
|
||||
|
||||
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
|
||||
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
|
||||
provided by the bot. You will only need to do this once across all repos using our CLA.
|
||||
![](./figs/lmbff.png)
|
||||
|
||||
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
|
||||
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
|
||||
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
|
||||
In this work we present LM-BFF, a suite of simple and complementary techniques for fine-tuning pre-trained language models on a small number of training examples. Our approach includes:
|
||||
|
||||
## Trademarks
|
||||
1. Prompt-based fine-tuning together with a novel pipeline for automating prompt generation.
|
||||
2. A refined strategy for incorporating demonstrations into context.
|
||||
|
||||
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
|
||||
trademarks or logos is subject to and must follow
|
||||
[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
|
||||
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
|
||||
Any use of third-party trademarks or logos are subject to those third-party's policies.
|
||||
You can find more details of this work in our [paper](https://arxiv.org/pdf/2012.15723.pdf).
|
||||
|
||||
## Requirements
|
||||
|
||||
To run our code, please install all the dependency packages by using the following command and update the transformers package to include Deberta model:
|
||||
|
||||
```
|
||||
pip install -r requirements.txt
|
||||
pip install git+https://github.com/huggingface/transformers
|
||||
```
|
||||
|
||||
**NOTE**: Different versions of packages (like `pytorch`, `transformers`, etc.) may lead to different results from the paper. However, the trend should still hold no matter what versions of packages you use.
|
||||
|
||||
## Prepare the data
|
||||
|
||||
We pack the original datasets (SST-2, SST-5, MR, CR, MPQA, Subj, TREC, CoLA, MNLI, SNLI, QNLI, RTE, MRPC, QQP, STS-B) [here](https://nlp.cs.princeton.edu/projects/lm-bff/datasets.tar). Please download it and extract the files to `./data/original`, or run the following commands:
|
||||
|
||||
```bash
|
||||
cd data
|
||||
bash download_dataset.sh
|
||||
```
|
||||
|
||||
Then use the following command (in the root directory) to generate the few-shot data we need:
|
||||
|
||||
```bash
|
||||
python tools/generate_k_shot_data.py
|
||||
```
|
||||
|
||||
See `tools/generate_k_shot_data.py` for more options. For results in the paper, we use the default options: we take `K=16` and take 5 different seeds of 13, 21, 42, 87, 100. The few-shot data will be generated to `data/k-shot`. In the directory of each dataset, there will be folders named as `$K-$SEED` indicating different dataset samples. You can use the following command to check whether the generated data are exactly the same as ours:
|
||||
|
||||
```bash
|
||||
cd data/k-shot
|
||||
md5sum -c checksum
|
||||
```
|
||||
|
||||
**NOTE**: During training, the model will generate/load cache files in the data folder. If your data have changed, make sure to clean all the cache files (starting with "cache").
|
||||
|
||||
## Run LM-BFF
|
||||
|
||||
### Quick start
|
||||
Our code is built on [transformers](https://github.com/huggingface/transformers).
|
||||
|
||||
Most arguments are inherited from `transformers` and are easy to understand. We further explain some of the LM-BFF's arguments:
|
||||
|
||||
* `few_shot_type`: There are three modes
|
||||
* `finetune`: Standard fine-tuning
|
||||
* `prompt`: Prompt-based fine-tuning.
|
||||
* `prompt-demo`: Prompt-based fine-tuning with demonstrations.
|
||||
* `num_k`: Number of training instances for each class. We take `num_k`=16 in our paper. This argument is mainly used for indexing logs afterwards (because the training example numbers are actually decided by the data split you use).
|
||||
* `template`: Template for prompt-based fine-tuning. We will introduce the template format later.
|
||||
* `mapping`: Label word mapping for prompt-based fine-tuning. It is a string of dictionary indicating the mapping from label names to label words. **NOTE**: For RoBERTa, the model will automatically add space before the word. See the paper appendix for details.
|
||||
* `num_sample`: When using demonstrations during inference, the number of samples for each input query. Say `num_sample`=16, then we sample 16 different sets of demonstrations for one input, do the forward seperately, and average the logits for all 16 samples as the final prediction.
|
||||
* `CT`: Contrasting learning. CT=0 indicates no contrasting learning and 1 indicates contrasting learning for labeled data, 2 indicates contrasting learning for pseudo-labeled data.
|
||||
* `OPT`: Unlabled data selection option. confidence means filter unlabeled data based on confidence values and meta_st is based meat-learning.
|
||||
* `SOFT_LABEL`: Use soft label or not. 1 indicates using soft labeles
|
||||
* `SEMI`:Use semi-supervised learning or not.
|
||||
* `ADV`: Option for adversarial training. 0 indicates no adv training, 1 is using adv training for labeled data and 2 is using adv training for unlabeled data with data selection, 3 is using adv training for both of labeled data and unlabled data.
|
||||
* `hybrid`: Option for using CLS and Prompt-based together. 0 is to turn off hybrid training.
|
||||
|
||||
To easily run our experiments, you can also use `run_MNLI.sh` (this command runs prompt-based fine-tuning with demonstrations, no filtering, manual prompt):
|
||||
|
||||
```bash
|
||||
TAG=exp TYPE=prompt-demo TASK=MNLI BS=4 LR=1e-5 MODEL=roberta-base CT=0 hybrid=0 OPT=confidence SOFT_LABEL=0 SEMI=0 ADV=1 GPU=0 bash run_MNLI.sh
|
||||
```
|
||||
|
||||
|
||||
## Bugs or questions?
|
||||
|
||||
If you have any questions related to the code or the paper, feel free to email Tianyu (`tianyug@cs.princeton.edu`). If you encounter any problems when using the code, or want to report a bug, you can open an issue. Please try to specify the problem with details so we can help you better and quicker!
|
||||
|
||||
## Citation
|
||||
|
||||
Please cite our paper if you use LM-BFF in your work:
|
||||
|
||||
```
|
||||
@article{gao2020making,
|
||||
title={Making Pre-trained Language Models Better Few-shot Learners},
|
||||
author={Gao, Tianyu and Fisch, Adam and Chen, Danqi},
|
||||
journal={arXiv preprint arXiv:2012.15723},
|
||||
year={2020}
|
||||
}
|
||||
```
|
||||
|
|
|
@ -0,0 +1,100 @@
|
|||
0.57266 {"0": "more", "1": "essential"}
|
||||
0.51640 {"0": "so", "1": "depressing"}
|
||||
0.51640 {"0": "funny", "1": "awkward"}
|
||||
0.50395 {"0": "done", "1": "helpful"}
|
||||
0.50000 {"0": "now", "1": "exciting"}
|
||||
0.50000 {"0": "nothing", "1": "epic"}
|
||||
0.50000 {"0": "now", "1": "progress"}
|
||||
0.48653 {"0": "funny", "1": "awesome"}
|
||||
0.46057 {"0": "done", "1": "madness"}
|
||||
0.43301 {"0": "unique", "1": "common"}
|
||||
0.43301 {"0": "priceless", "1": "lovely"}
|
||||
0.37796 {"0": "now", "1": "fascinating"}
|
||||
0.37796 {"0": "irrelevant", "1": "everywhere"}
|
||||
0.37796 {"0": "more", "1": "telling"}
|
||||
0.37500 {"0": "fantastic", "1": "cool"}
|
||||
0.37500 {"0": "fantastic", "1": "epic"}
|
||||
0.34752 {"0": "on", "1": "unsettling"}
|
||||
0.32898 {"0": "now", "1": "crucial"}
|
||||
0.32898 {"0": "over", "1": "beautiful"}
|
||||
0.31814 {"0": "now", "1": "beautiful"}
|
||||
0.31814 {"0": "unacceptable", "1": "natural"}
|
||||
0.31814 {"0": "now", "1": "significant"}
|
||||
0.31814 {"0": "over", "1": "art"}
|
||||
0.31311 {"0": "over", "1": "everywhere"}
|
||||
0.31311 {"0": "unlikely", "1": "common"}
|
||||
0.31311 {"0": "nice", "1": "art"}
|
||||
0.31311 {"0": "unlikely", "1": "natural"}
|
||||
0.31311 {"0": "fake", "1": "England"}
|
||||
0.26968 {"0": "now", "1": "nuts"}
|
||||
0.26968 {"0": "now", "1": "life"}
|
||||
0.26968 {"0": "disappointing", "1": "England"}
|
||||
0.26968 {"0": "nothing", "1": "science"}
|
||||
0.25820 {"0": "over", "1": "cool"}
|
||||
0.25820 {"0": "hysterical", "1": "epic"}
|
||||
0.25820 {"0": "something", "1": "key"}
|
||||
0.25820 {"0": "outrageous", "1": "deliberate"}
|
||||
0.25820 {"0": "one", "1": "cool"}
|
||||
0.25820 {"0": "difficult", "1": "common"}
|
||||
0.25198 {"0": "us", "1": "art"}
|
||||
0.25198 {"0": "nothing", "1": "natural"}
|
||||
0.25198 {"0": "outrageous", "1": "astounding"}
|
||||
0.25198 {"0": "shameful", "1": "natural"}
|
||||
0.25198 {"0": "over", "1": "life"}
|
||||
0.25198 {"0": "done", "1": "natural"}
|
||||
0.25198 {"0": "now", "1": "telling"}
|
||||
0.25000 {"0": "torture", "1": "art"}
|
||||
0.20851 {"0": "now", "1": "natural"}
|
||||
0.20851 {"0": "now", "1": "scary"}
|
||||
0.19739 {"0": "over", "1": "natural"}
|
||||
0.19739 {"0": "now", "1": "unexpected"}
|
||||
0.19739 {"0": "coming", "1": "everywhere"}
|
||||
0.19739 {"0": "sick", "1": "annoying"}
|
||||
0.19089 {"0": "coming", "1": "science"}
|
||||
0.19089 {"0": "now", "1": "key"}
|
||||
0.19089 {"0": "over", "1": "clear"}
|
||||
0.19089 {"0": "nice", "1": "fascinating"}
|
||||
0.19089 {"0": "over", "1": "fascinating"}
|
||||
0.18787 {"0": "irrelevant", "1": "fiction"}
|
||||
0.18787 {"0": "irrelevant", "1": "epic"}
|
||||
0.18787 {"0": "after", "1": "fascinating"}
|
||||
0.18787 {"0": "now", "1": "deliberate"}
|
||||
0.18787 {"0": "official", "1": "natural"}
|
||||
0.18787 {"0": "shocking", "1": "natural"}
|
||||
0.18787 {"0": "correct", "1": "common"}
|
||||
0.18787 {"0": "us", "1": "cool"}
|
||||
0.16013 {"0": "irrelevant", "1": "elementary"}
|
||||
0.14434 {"0": "now", "1": "remarkable"}
|
||||
0.14434 {"0": "one", "1": "confusing"}
|
||||
0.14434 {"0": "unreal", "1": "elementary"}
|
||||
0.13484 {"0": "done", "1": "fiction"}
|
||||
0.12910 {"0": "over", "1": "weird"}
|
||||
0.12599 {"0": "now", "1": "frightening"}
|
||||
0.12599 {"0": "unexpected", "1": "common"}
|
||||
0.12599 {"0": "sick", "1": "science"}
|
||||
0.12500 {"0": "now", "1": "special"}
|
||||
0.12500 {"0": "outrageous", "1": "problematic"}
|
||||
0.08607 {"0": "done", "1": "telling"}
|
||||
0.06950 {"0": "done", "1": "problematic"}
|
||||
0.06950 {"0": "one", "1": "boring"}
|
||||
0.06580 {"0": "over", "1": "OK"}
|
||||
0.06580 {"0": "over", "1": "confusing"}
|
||||
0.06363 {"0": "now", "1": "strange"}
|
||||
0.06363 {"0": "now", "1": "cool"}
|
||||
0.06363 {"0": "on", "1": "mine"}
|
||||
0.06363 {"0": "today", "1": "old"}
|
||||
0.06363 {"0": "done", "1": "common"}
|
||||
0.06363 {"0": "over", "1": "gold"}
|
||||
0.06262 {"0": "unfair", "1": "science"}
|
||||
0.06262 {"0": "now", "1": "intentional"}
|
||||
0.06262 {"0": "nothing", "1": "fiction"}
|
||||
0.06262 {"0": "hysterical", "1": "astounding"}
|
||||
0.00000 {"0": "now", "1": "fiction"}
|
||||
0.00000 {"0": "shocking", "1": "common"}
|
||||
0.00000 {"0": "now", "1": "typical"}
|
||||
0.00000 {"0": "this", "1": "fascinating"}
|
||||
0.00000 {"0": "over", "1": "fiction"}
|
||||
0.00000 {"0": "incredible", "1": "unusual"}
|
||||
-0.06580 {"0": "done", "1": "odd"}
|
||||
-0.06580 {"0": "fake", "1": "fiction"}
|
||||
-0.12500 {"0": "over", "1": "strange"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "more", "1": "essential"}
|
||||
{"0": "so", "1": "depressing"}
|
||||
{"0": "funny", "1": "awkward"}
|
||||
{"0": "done", "1": "helpful"}
|
||||
{"0": "now", "1": "exciting"}
|
||||
{"0": "nothing", "1": "epic"}
|
||||
{"0": "now", "1": "progress"}
|
||||
{"0": "funny", "1": "awesome"}
|
||||
{"0": "done", "1": "madness"}
|
||||
{"0": "unique", "1": "common"}
|
||||
{"0": "priceless", "1": "lovely"}
|
||||
{"0": "now", "1": "fascinating"}
|
||||
{"0": "irrelevant", "1": "everywhere"}
|
||||
{"0": "more", "1": "telling"}
|
||||
{"0": "fantastic", "1": "cool"}
|
||||
{"0": "fantastic", "1": "epic"}
|
||||
{"0": "on", "1": "unsettling"}
|
||||
{"0": "now", "1": "crucial"}
|
||||
{"0": "over", "1": "beautiful"}
|
||||
{"0": "now", "1": "beautiful"}
|
||||
{"0": "unacceptable", "1": "natural"}
|
||||
{"0": "now", "1": "significant"}
|
||||
{"0": "over", "1": "art"}
|
||||
{"0": "over", "1": "everywhere"}
|
||||
{"0": "unlikely", "1": "common"}
|
||||
{"0": "nice", "1": "art"}
|
||||
{"0": "unlikely", "1": "natural"}
|
||||
{"0": "fake", "1": "England"}
|
||||
{"0": "now", "1": "nuts"}
|
||||
{"0": "now", "1": "life"}
|
||||
{"0": "disappointing", "1": "England"}
|
||||
{"0": "nothing", "1": "science"}
|
||||
{"0": "over", "1": "cool"}
|
||||
{"0": "hysterical", "1": "epic"}
|
||||
{"0": "something", "1": "key"}
|
||||
{"0": "outrageous", "1": "deliberate"}
|
||||
{"0": "one", "1": "cool"}
|
||||
{"0": "difficult", "1": "common"}
|
||||
{"0": "us", "1": "art"}
|
||||
{"0": "nothing", "1": "natural"}
|
||||
{"0": "outrageous", "1": "astounding"}
|
||||
{"0": "shameful", "1": "natural"}
|
||||
{"0": "over", "1": "life"}
|
||||
{"0": "done", "1": "natural"}
|
||||
{"0": "now", "1": "telling"}
|
||||
{"0": "torture", "1": "art"}
|
||||
{"0": "now", "1": "natural"}
|
||||
{"0": "now", "1": "scary"}
|
||||
{"0": "over", "1": "natural"}
|
||||
{"0": "now", "1": "unexpected"}
|
||||
{"0": "coming", "1": "everywhere"}
|
||||
{"0": "sick", "1": "annoying"}
|
||||
{"0": "coming", "1": "science"}
|
||||
{"0": "now", "1": "key"}
|
||||
{"0": "over", "1": "clear"}
|
||||
{"0": "nice", "1": "fascinating"}
|
||||
{"0": "over", "1": "fascinating"}
|
||||
{"0": "irrelevant", "1": "fiction"}
|
||||
{"0": "irrelevant", "1": "epic"}
|
||||
{"0": "after", "1": "fascinating"}
|
||||
{"0": "now", "1": "deliberate"}
|
||||
{"0": "official", "1": "natural"}
|
||||
{"0": "shocking", "1": "natural"}
|
||||
{"0": "correct", "1": "common"}
|
||||
{"0": "us", "1": "cool"}
|
||||
{"0": "irrelevant", "1": "elementary"}
|
||||
{"0": "now", "1": "remarkable"}
|
||||
{"0": "one", "1": "confusing"}
|
||||
{"0": "unreal", "1": "elementary"}
|
||||
{"0": "done", "1": "fiction"}
|
||||
{"0": "over", "1": "weird"}
|
||||
{"0": "now", "1": "frightening"}
|
||||
{"0": "unexpected", "1": "common"}
|
||||
{"0": "sick", "1": "science"}
|
||||
{"0": "now", "1": "special"}
|
||||
{"0": "outrageous", "1": "problematic"}
|
||||
{"0": "done", "1": "telling"}
|
||||
{"0": "done", "1": "problematic"}
|
||||
{"0": "one", "1": "boring"}
|
||||
{"0": "over", "1": "OK"}
|
||||
{"0": "over", "1": "confusing"}
|
||||
{"0": "now", "1": "strange"}
|
||||
{"0": "now", "1": "cool"}
|
||||
{"0": "on", "1": "mine"}
|
||||
{"0": "today", "1": "old"}
|
||||
{"0": "done", "1": "common"}
|
||||
{"0": "over", "1": "gold"}
|
||||
{"0": "unfair", "1": "science"}
|
||||
{"0": "now", "1": "intentional"}
|
||||
{"0": "nothing", "1": "fiction"}
|
||||
{"0": "hysterical", "1": "astounding"}
|
||||
{"0": "now", "1": "fiction"}
|
||||
{"0": "shocking", "1": "common"}
|
||||
{"0": "now", "1": "typical"}
|
||||
{"0": "this", "1": "fascinating"}
|
||||
{"0": "over", "1": "fiction"}
|
||||
{"0": "incredible", "1": "unusual"}
|
||||
{"0": "done", "1": "odd"}
|
||||
{"0": "fake", "1": "fiction"}
|
||||
{"0": "over", "1": "strange"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "us", "1": "art"}
|
||||
{"0": "irrelevant", "1": "elementary"}
|
||||
{"0": "over", "1": "cool"}
|
||||
{"0": "unfair", "1": "science"}
|
||||
{"0": "now", "1": "strange"}
|
||||
{"0": "now", "1": "natural"}
|
||||
{"0": "unlikely", "1": "common"}
|
||||
{"0": "over", "1": "everywhere"}
|
||||
{"0": "irrelevant", "1": "fiction"}
|
||||
{"0": "now", "1": "fiction"}
|
||||
{"0": "irrelevant", "1": "epic"}
|
||||
{"0": "unacceptable", "1": "natural"}
|
||||
{"0": "now", "1": "beautiful"}
|
||||
{"0": "unique", "1": "common"}
|
||||
{"0": "after", "1": "fascinating"}
|
||||
{"0": "over", "1": "natural"}
|
||||
{"0": "torture", "1": "art"}
|
||||
{"0": "now", "1": "exciting"}
|
||||
{"0": "now", "1": "deliberate"}
|
||||
{"0": "now", "1": "intentional"}
|
||||
{"0": "done", "1": "problematic"}
|
||||
{"0": "so", "1": "depressing"}
|
||||
{"0": "coming", "1": "science"}
|
||||
{"0": "nothing", "1": "natural"}
|
||||
{"0": "now", "1": "special"}
|
||||
{"0": "now", "1": "cool"}
|
||||
{"0": "now", "1": "fascinating"}
|
||||
{"0": "now", "1": "crucial"}
|
||||
{"0": "hysterical", "1": "epic"}
|
||||
{"0": "outrageous", "1": "astounding"}
|
||||
{"0": "official", "1": "natural"}
|
||||
{"0": "something", "1": "key"}
|
||||
{"0": "shocking", "1": "natural"}
|
||||
{"0": "shocking", "1": "common"}
|
||||
{"0": "done", "1": "fiction"}
|
||||
{"0": "shameful", "1": "natural"}
|
||||
{"0": "over", "1": "strange"}
|
||||
{"0": "done", "1": "odd"}
|
||||
{"0": "nice", "1": "art"}
|
||||
{"0": "funny", "1": "awkward"}
|
||||
{"0": "now", "1": "significant"}
|
||||
{"0": "now", "1": "key"}
|
||||
{"0": "now", "1": "scary"}
|
||||
{"0": "done", "1": "madness"}
|
||||
{"0": "over", "1": "clear"}
|
||||
{"0": "now", "1": "remarkable"}
|
||||
{"0": "now", "1": "frightening"}
|
||||
{"0": "fake", "1": "fiction"}
|
||||
{"0": "nothing", "1": "fiction"}
|
||||
{"0": "irrelevant", "1": "everywhere"}
|
||||
{"0": "more", "1": "essential"}
|
||||
{"0": "nice", "1": "fascinating"}
|
||||
{"0": "unlikely", "1": "natural"}
|
||||
{"0": "now", "1": "nuts"}
|
||||
{"0": "one", "1": "boring"}
|
||||
{"0": "fake", "1": "England"}
|
||||
{"0": "now", "1": "life"}
|
||||
{"0": "done", "1": "helpful"}
|
||||
{"0": "done", "1": "telling"}
|
||||
{"0": "outrageous", "1": "deliberate"}
|
||||
{"0": "outrageous", "1": "problematic"}
|
||||
{"0": "more", "1": "telling"}
|
||||
{"0": "now", "1": "typical"}
|
||||
{"0": "nothing", "1": "epic"}
|
||||
{"0": "unexpected", "1": "common"}
|
||||
{"0": "funny", "1": "awesome"}
|
||||
{"0": "hysterical", "1": "astounding"}
|
||||
{"0": "fantastic", "1": "cool"}
|
||||
{"0": "one", "1": "cool"}
|
||||
{"0": "this", "1": "fascinating"}
|
||||
{"0": "now", "1": "unexpected"}
|
||||
{"0": "one", "1": "confusing"}
|
||||
{"0": "over", "1": "beautiful"}
|
||||
{"0": "over", "1": "fiction"}
|
||||
{"0": "over", "1": "fascinating"}
|
||||
{"0": "on", "1": "mine"}
|
||||
{"0": "over", "1": "life"}
|
||||
{"0": "today", "1": "old"}
|
||||
{"0": "over", "1": "OK"}
|
||||
{"0": "done", "1": "common"}
|
||||
{"0": "over", "1": "gold"}
|
||||
{"0": "done", "1": "natural"}
|
||||
{"0": "difficult", "1": "common"}
|
||||
{"0": "correct", "1": "common"}
|
||||
{"0": "coming", "1": "everywhere"}
|
||||
{"0": "on", "1": "unsettling"}
|
||||
{"0": "disappointing", "1": "England"}
|
||||
{"0": "sick", "1": "science"}
|
||||
{"0": "over", "1": "confusing"}
|
||||
{"0": "sick", "1": "annoying"}
|
||||
{"0": "incredible", "1": "unusual"}
|
||||
{"0": "fantastic", "1": "epic"}
|
||||
{"0": "us", "1": "cool"}
|
||||
{"0": "priceless", "1": "lovely"}
|
||||
{"0": "over", "1": "weird"}
|
||||
{"0": "now", "1": "progress"}
|
||||
{"0": "over", "1": "art"}
|
||||
{"0": "unreal", "1": "elementary"}
|
||||
{"0": "nothing", "1": "science"}
|
||||
{"0": "now", "1": "telling"}
|
|
@ -0,0 +1,100 @@
|
|||
0.25820 {"0": "progress", "1": "priceless"}
|
||||
0.14434 {"0": "next", "1": "this"}
|
||||
0.06950 {"0": "life", "1": "what"}
|
||||
0.06580 {"0": "difficult", "1": "priceless"}
|
||||
0.06580 {"0": "wonderful", "1": "priceless"}
|
||||
0.06363 {"0": "exciting", "1": "priceless"}
|
||||
0.00000 {"0": "expected", "1": "illegal"}
|
||||
0.00000 {"0": "encouraging", "1": "illegal"}
|
||||
0.00000 {"0": "concerning", "1": "intentional"}
|
||||
0.00000 {"0": "another", "1": "recorded"}
|
||||
0.00000 {"0": "frustrating", "1": "mine"}
|
||||
0.00000 {"0": "okay", "1": "this"}
|
||||
0.00000 {"0": "hope", "1": "famous"}
|
||||
0.00000 {"0": "disappointing", "1": "this"}
|
||||
0.00000 {"0": "concerning", "1": "everywhere"}
|
||||
0.00000 {"0": "tough", "1": "them"}
|
||||
0.00000 {"0": "disappointing", "1": "key"}
|
||||
0.00000 {"0": "unprecedented", "1": "remarkable"}
|
||||
0.00000 {"0": "OK", "1": "priceless"}
|
||||
-0.06262 {"0": "frustrating", "1": "this"}
|
||||
-0.06262 {"0": "art", "1": "video"}
|
||||
-0.06262 {"0": "concerning", "1": "illegal"}
|
||||
-0.06262 {"0": "expected", "1": "priceless"}
|
||||
-0.06363 {"0": "predictable", "1": "2011"}
|
||||
-0.06363 {"0": "hard", "1": "them"}
|
||||
-0.06363 {"0": "nuts", "1": "reality"}
|
||||
-0.06363 {"0": "done", "1": "them"}
|
||||
-0.06363 {"0": "tough", "1": "close"}
|
||||
-0.06363 {"0": "predictable", "1": "video"}
|
||||
-0.06580 {"0": "problematic", "1": "irrelevant"}
|
||||
-0.06580 {"0": "bullshit", "1": "illegal"}
|
||||
-0.06580 {"0": "disappointing", "1": "you"}
|
||||
-0.06580 {"0": "nuts", "1": "video"}
|
||||
-0.06580 {"0": "nuts", "1": "gold"}
|
||||
-0.06580 {"0": "ok", "1": "Wikipedia"}
|
||||
-0.06580 {"0": "significant", "1": "priceless"}
|
||||
-0.06580 {"0": "frustrating", "1": "crucial"}
|
||||
-0.06950 {"0": "disappointing", "1": "nothing"}
|
||||
-0.06950 {"0": "disappointing", "1": "priceless"}
|
||||
-0.06950 {"0": "better", "1": "priceless"}
|
||||
-0.07559 {"0": "pathetic", "1": "illegal"}
|
||||
-0.07559 {"0": "personal", "1": "this"}
|
||||
-0.07559 {"0": "frustrating", "1": "missing"}
|
||||
-0.07559 {"0": "disappointing", "1": "missing"}
|
||||
-0.07559 {"0": "perfect", "1": "priceless"}
|
||||
-0.07559 {"0": "fascinating", "1": "priceless"}
|
||||
-0.08607 {"0": "pathetic", "1": "disgusting"}
|
||||
-0.10721 {"0": "okay", "1": "priceless"}
|
||||
-0.10721 {"0": "unprecedented", "1": "history"}
|
||||
-0.12500 {"0": "hard", "1": "this"}
|
||||
-0.12500 {"0": "disappointing", "1": "reality"}
|
||||
-0.12500 {"0": "enough", "1": "reality"}
|
||||
-0.12599 {"0": "excellent", "1": "Wikipedia"}
|
||||
-0.12599 {"0": "concerning", "1": "familiar"}
|
||||
-0.12599 {"0": "on", "1": "Wikipedia"}
|
||||
-0.12599 {"0": "news", "1": "them"}
|
||||
-0.12599 {"0": "encouraging", "1": "official"}
|
||||
-0.12910 {"0": "frustrating", "1": "Wikipedia"}
|
||||
-0.12910 {"0": "annoying", "1": "priceless"}
|
||||
-0.12910 {"0": "worrisome", "1": "surreal"}
|
||||
-0.12910 {"0": "work", "1": "video"}
|
||||
-0.12910 {"0": "2017", "1": "2016"}
|
||||
-0.12910 {"0": "more", "1": "video"}
|
||||
-0.13484 {"0": "hard", "1": "priceless"}
|
||||
-0.13484 {"0": "tough", "1": "priceless"}
|
||||
-0.13484 {"0": "disappointing", "1": "accurate"}
|
||||
-0.13484 {"0": "sad", "1": "incredible"}
|
||||
-0.14434 {"0": "unfair", "1": "correct"}
|
||||
-0.14434 {"0": "his", "1": "recorded"}
|
||||
-0.14434 {"0": "problematic", "1": "correct"}
|
||||
-0.14434 {"0": "frustrating", "1": "here"}
|
||||
-0.16013 {"0": "disappointing", "1": "history"}
|
||||
-0.16013 {"0": "insanity", "1": "famous"}
|
||||
-0.18787 {"0": "best", "1": "video"}
|
||||
-0.18787 {"0": "progress", "1": "them"}
|
||||
-0.19089 {"0": "worrisome", "1": "this"}
|
||||
-0.19089 {"0": "worrisome", "1": "familiar"}
|
||||
-0.19739 {"0": "insanity", "1": "illegal"}
|
||||
-0.19739 {"0": "next", "1": "priceless"}
|
||||
-0.19739 {"0": "best", "1": "Wikipedia"}
|
||||
-0.19739 {"0": "madness", "1": "surreal"}
|
||||
-0.20851 {"0": "best", "1": "missing"}
|
||||
-0.20851 {"0": "worrisome", "1": "missing"}
|
||||
-0.20851 {"0": "disappointing", "1": "fake"}
|
||||
-0.20851 {"0": "annoying", "1": "Wikipedia"}
|
||||
-0.22678 {"0": "depressing", "1": "priceless"}
|
||||
-0.22678 {"0": "boring", "1": "Wikipedia"}
|
||||
-0.22678 {"0": "frustrating", "1": "the"}
|
||||
-0.22678 {"0": "problematic", "1": "illegal"}
|
||||
-0.25000 {"0": "encouraging", "1": "recorded"}
|
||||
-0.25198 {"0": "worse", "1": "this"}
|
||||
-0.25198 {"0": "frustrating", "1": "everything"}
|
||||
-0.25820 {"0": "progress", "1": "history"}
|
||||
-0.25820 {"0": "worrisome", "1": "illegal"}
|
||||
-0.26968 {"0": "encouraging", "1": "video"}
|
||||
-0.26968 {"0": "life", "1": "priceless"}
|
||||
-0.31814 {"0": "disappointing", "1": "correct"}
|
||||
-0.31814 {"0": "frustrating", "1": "nothing"}
|
||||
-0.32026 {"0": "disappointing", "1": "Wikipedia"}
|
||||
-0.43301 {"0": "progress", "1": "video"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "progress", "1": "priceless"}
|
||||
{"0": "next", "1": "this"}
|
||||
{"0": "life", "1": "what"}
|
||||
{"0": "difficult", "1": "priceless"}
|
||||
{"0": "wonderful", "1": "priceless"}
|
||||
{"0": "exciting", "1": "priceless"}
|
||||
{"0": "expected", "1": "illegal"}
|
||||
{"0": "encouraging", "1": "illegal"}
|
||||
{"0": "concerning", "1": "intentional"}
|
||||
{"0": "another", "1": "recorded"}
|
||||
{"0": "frustrating", "1": "mine"}
|
||||
{"0": "okay", "1": "this"}
|
||||
{"0": "hope", "1": "famous"}
|
||||
{"0": "disappointing", "1": "this"}
|
||||
{"0": "concerning", "1": "everywhere"}
|
||||
{"0": "tough", "1": "them"}
|
||||
{"0": "disappointing", "1": "key"}
|
||||
{"0": "unprecedented", "1": "remarkable"}
|
||||
{"0": "OK", "1": "priceless"}
|
||||
{"0": "frustrating", "1": "this"}
|
||||
{"0": "art", "1": "video"}
|
||||
{"0": "concerning", "1": "illegal"}
|
||||
{"0": "expected", "1": "priceless"}
|
||||
{"0": "predictable", "1": "2011"}
|
||||
{"0": "hard", "1": "them"}
|
||||
{"0": "nuts", "1": "reality"}
|
||||
{"0": "done", "1": "them"}
|
||||
{"0": "tough", "1": "close"}
|
||||
{"0": "predictable", "1": "video"}
|
||||
{"0": "problematic", "1": "irrelevant"}
|
||||
{"0": "bullshit", "1": "illegal"}
|
||||
{"0": "disappointing", "1": "you"}
|
||||
{"0": "nuts", "1": "video"}
|
||||
{"0": "nuts", "1": "gold"}
|
||||
{"0": "ok", "1": "Wikipedia"}
|
||||
{"0": "significant", "1": "priceless"}
|
||||
{"0": "frustrating", "1": "crucial"}
|
||||
{"0": "disappointing", "1": "nothing"}
|
||||
{"0": "disappointing", "1": "priceless"}
|
||||
{"0": "better", "1": "priceless"}
|
||||
{"0": "pathetic", "1": "illegal"}
|
||||
{"0": "personal", "1": "this"}
|
||||
{"0": "frustrating", "1": "missing"}
|
||||
{"0": "disappointing", "1": "missing"}
|
||||
{"0": "perfect", "1": "priceless"}
|
||||
{"0": "fascinating", "1": "priceless"}
|
||||
{"0": "pathetic", "1": "disgusting"}
|
||||
{"0": "okay", "1": "priceless"}
|
||||
{"0": "unprecedented", "1": "history"}
|
||||
{"0": "hard", "1": "this"}
|
||||
{"0": "disappointing", "1": "reality"}
|
||||
{"0": "enough", "1": "reality"}
|
||||
{"0": "excellent", "1": "Wikipedia"}
|
||||
{"0": "concerning", "1": "familiar"}
|
||||
{"0": "on", "1": "Wikipedia"}
|
||||
{"0": "news", "1": "them"}
|
||||
{"0": "encouraging", "1": "official"}
|
||||
{"0": "frustrating", "1": "Wikipedia"}
|
||||
{"0": "annoying", "1": "priceless"}
|
||||
{"0": "worrisome", "1": "surreal"}
|
||||
{"0": "work", "1": "video"}
|
||||
{"0": "2017", "1": "2016"}
|
||||
{"0": "more", "1": "video"}
|
||||
{"0": "hard", "1": "priceless"}
|
||||
{"0": "tough", "1": "priceless"}
|
||||
{"0": "disappointing", "1": "accurate"}
|
||||
{"0": "sad", "1": "incredible"}
|
||||
{"0": "unfair", "1": "correct"}
|
||||
{"0": "his", "1": "recorded"}
|
||||
{"0": "problematic", "1": "correct"}
|
||||
{"0": "frustrating", "1": "here"}
|
||||
{"0": "disappointing", "1": "history"}
|
||||
{"0": "insanity", "1": "famous"}
|
||||
{"0": "best", "1": "video"}
|
||||
{"0": "progress", "1": "them"}
|
||||
{"0": "worrisome", "1": "this"}
|
||||
{"0": "worrisome", "1": "familiar"}
|
||||
{"0": "insanity", "1": "illegal"}
|
||||
{"0": "next", "1": "priceless"}
|
||||
{"0": "best", "1": "Wikipedia"}
|
||||
{"0": "madness", "1": "surreal"}
|
||||
{"0": "best", "1": "missing"}
|
||||
{"0": "worrisome", "1": "missing"}
|
||||
{"0": "disappointing", "1": "fake"}
|
||||
{"0": "annoying", "1": "Wikipedia"}
|
||||
{"0": "depressing", "1": "priceless"}
|
||||
{"0": "boring", "1": "Wikipedia"}
|
||||
{"0": "frustrating", "1": "the"}
|
||||
{"0": "problematic", "1": "illegal"}
|
||||
{"0": "encouraging", "1": "recorded"}
|
||||
{"0": "worse", "1": "this"}
|
||||
{"0": "frustrating", "1": "everything"}
|
||||
{"0": "progress", "1": "history"}
|
||||
{"0": "worrisome", "1": "illegal"}
|
||||
{"0": "encouraging", "1": "video"}
|
||||
{"0": "life", "1": "priceless"}
|
||||
{"0": "disappointing", "1": "correct"}
|
||||
{"0": "frustrating", "1": "nothing"}
|
||||
{"0": "disappointing", "1": "Wikipedia"}
|
||||
{"0": "progress", "1": "video"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "hard", "1": "priceless"}
|
||||
{"0": "okay", "1": "priceless"}
|
||||
{"0": "tough", "1": "priceless"}
|
||||
{"0": "excellent", "1": "Wikipedia"}
|
||||
{"0": "disappointing", "1": "accurate"}
|
||||
{"0": "predictable", "1": "2011"}
|
||||
{"0": "insanity", "1": "illegal"}
|
||||
{"0": "disappointing", "1": "nothing"}
|
||||
{"0": "disappointing", "1": "history"}
|
||||
{"0": "progress", "1": "priceless"}
|
||||
{"0": "expected", "1": "illegal"}
|
||||
{"0": "difficult", "1": "priceless"}
|
||||
{"0": "next", "1": "priceless"}
|
||||
{"0": "pathetic", "1": "illegal"}
|
||||
{"0": "hard", "1": "them"}
|
||||
{"0": "hard", "1": "this"}
|
||||
{"0": "encouraging", "1": "illegal"}
|
||||
{"0": "frustrating", "1": "this"}
|
||||
{"0": "frustrating", "1": "Wikipedia"}
|
||||
{"0": "concerning", "1": "familiar"}
|
||||
{"0": "personal", "1": "this"}
|
||||
{"0": "frustrating", "1": "missing"}
|
||||
{"0": "problematic", "1": "irrelevant"}
|
||||
{"0": "best", "1": "missing"}
|
||||
{"0": "concerning", "1": "intentional"}
|
||||
{"0": "nuts", "1": "reality"}
|
||||
{"0": "depressing", "1": "priceless"}
|
||||
{"0": "another", "1": "recorded"}
|
||||
{"0": "bullshit", "1": "illegal"}
|
||||
{"0": "encouraging", "1": "recorded"}
|
||||
{"0": "unfair", "1": "correct"}
|
||||
{"0": "encouraging", "1": "video"}
|
||||
{"0": "worrisome", "1": "missing"}
|
||||
{"0": "disappointing", "1": "you"}
|
||||
{"0": "frustrating", "1": "mine"}
|
||||
{"0": "disappointing", "1": "fake"}
|
||||
{"0": "disappointing", "1": "reality"}
|
||||
{"0": "art", "1": "video"}
|
||||
{"0": "okay", "1": "this"}
|
||||
{"0": "disappointing", "1": "correct"}
|
||||
{"0": "worrisome", "1": "this"}
|
||||
{"0": "pathetic", "1": "disgusting"}
|
||||
{"0": "hope", "1": "famous"}
|
||||
{"0": "disappointing", "1": "missing"}
|
||||
{"0": "perfect", "1": "priceless"}
|
||||
{"0": "annoying", "1": "priceless"}
|
||||
{"0": "disappointing", "1": "priceless"}
|
||||
{"0": "worrisome", "1": "familiar"}
|
||||
{"0": "exciting", "1": "priceless"}
|
||||
{"0": "disappointing", "1": "Wikipedia"}
|
||||
{"0": "worrisome", "1": "surreal"}
|
||||
{"0": "annoying", "1": "Wikipedia"}
|
||||
{"0": "disappointing", "1": "this"}
|
||||
{"0": "done", "1": "them"}
|
||||
{"0": "work", "1": "video"}
|
||||
{"0": "insanity", "1": "famous"}
|
||||
{"0": "life", "1": "what"}
|
||||
{"0": "on", "1": "Wikipedia"}
|
||||
{"0": "better", "1": "priceless"}
|
||||
{"0": "tough", "1": "close"}
|
||||
{"0": "nuts", "1": "video"}
|
||||
{"0": "fascinating", "1": "priceless"}
|
||||
{"0": "enough", "1": "reality"}
|
||||
{"0": "nuts", "1": "gold"}
|
||||
{"0": "concerning", "1": "everywhere"}
|
||||
{"0": "ok", "1": "Wikipedia"}
|
||||
{"0": "best", "1": "video"}
|
||||
{"0": "best", "1": "Wikipedia"}
|
||||
{"0": "tough", "1": "them"}
|
||||
{"0": "concerning", "1": "illegal"}
|
||||
{"0": "news", "1": "them"}
|
||||
{"0": "predictable", "1": "video"}
|
||||
{"0": "disappointing", "1": "key"}
|
||||
{"0": "progress", "1": "them"}
|
||||
{"0": "progress", "1": "history"}
|
||||
{"0": "madness", "1": "surreal"}
|
||||
{"0": "unprecedented", "1": "history"}
|
||||
{"0": "encouraging", "1": "official"}
|
||||
{"0": "2017", "1": "2016"}
|
||||
{"0": "worrisome", "1": "illegal"}
|
||||
{"0": "unprecedented", "1": "remarkable"}
|
||||
{"0": "significant", "1": "priceless"}
|
||||
{"0": "OK", "1": "priceless"}
|
||||
{"0": "life", "1": "priceless"}
|
||||
{"0": "more", "1": "video"}
|
||||
{"0": "worse", "1": "this"}
|
||||
{"0": "sad", "1": "incredible"}
|
||||
{"0": "his", "1": "recorded"}
|
||||
{"0": "progress", "1": "video"}
|
||||
{"0": "next", "1": "this"}
|
||||
{"0": "expected", "1": "priceless"}
|
||||
{"0": "frustrating", "1": "crucial"}
|
||||
{"0": "wonderful", "1": "priceless"}
|
||||
{"0": "problematic", "1": "correct"}
|
||||
{"0": "boring", "1": "Wikipedia"}
|
||||
{"0": "frustrating", "1": "the"}
|
||||
{"0": "frustrating", "1": "here"}
|
||||
{"0": "frustrating", "1": "nothing"}
|
||||
{"0": "frustrating", "1": "everything"}
|
||||
{"0": "problematic", "1": "illegal"}
|
|
@ -0,0 +1,100 @@
|
|||
0.40452 {"0": "here", "1": "OK"}
|
||||
0.37796 {"0": "huge", "1": "predictable"}
|
||||
0.37500 {"0": "huge", "1": "unexpected"}
|
||||
0.34752 {"0": "exciting", "1": "strange"}
|
||||
0.32898 {"0": "exciting", "1": "odd"}
|
||||
0.32898 {"0": "good", "1": "expected"}
|
||||
0.32898 {"0": "ugly", "1": "predictable"}
|
||||
0.32898 {"0": "shocking", "1": "revealing"}
|
||||
0.32026 {"0": "intentional", "1": "fine"}
|
||||
0.31814 {"0": "heartbreaking", "1": "America"}
|
||||
0.31814 {"0": "exciting", "1": "because"}
|
||||
0.26968 {"0": "here", "1": "okay"}
|
||||
0.25820 {"0": "final", "1": "love"}
|
||||
0.25198 {"0": "crucial", "1": "history"}
|
||||
0.25198 {"0": "difficult", "1": "inevitable"}
|
||||
0.25000 {"0": "obvious", "1": "understandable"}
|
||||
0.22678 {"0": "easy", "1": "progress"}
|
||||
0.22678 {"0": "final", "1": "neither"}
|
||||
0.20851 {"0": "difficult", "1": "unlikely"}
|
||||
0.20851 {"0": "fake", "1": "history"}
|
||||
0.20851 {"0": "exciting", "1": "remarkable"}
|
||||
0.20851 {"0": "clear", "1": "surprising"}
|
||||
0.20851 {"0": "painful", "1": "that"}
|
||||
0.20851 {"0": "tricky", "1": "odd"}
|
||||
0.19739 {"0": "difficult", "1": "expected"}
|
||||
0.19739 {"0": "unbelievable", "1": "evidence"}
|
||||
0.19739 {"0": "critical", "1": "expected"}
|
||||
0.19089 {"0": "clear", "1": "that"}
|
||||
0.19089 {"0": "scary", "1": "different"}
|
||||
0.19089 {"0": "helpful", "1": "about"}
|
||||
0.18787 {"0": "illegal", "1": "neither"}
|
||||
0.18787 {"0": "exciting", "1": "America"}
|
||||
0.16013 {"0": "good", "1": "progress"}
|
||||
0.16013 {"0": "good", "1": "that"}
|
||||
0.16013 {"0": "huge", "1": "inevitable"}
|
||||
0.14434 {"0": "bizarre", "1": "odd"}
|
||||
0.14434 {"0": "controversial", "1": "telling"}
|
||||
0.13484 {"0": "crazy", "1": "not"}
|
||||
0.12910 {"0": "clear", "1": "understandable"}
|
||||
0.12910 {"0": "painful", "1": "understandable"}
|
||||
0.12910 {"0": "here", "1": "fine"}
|
||||
0.12910 {"0": "gross", "1": "odd"}
|
||||
0.12910 {"0": "essential", "1": "fiction"}
|
||||
0.12910 {"0": "exciting", "1": "that"}
|
||||
0.12599 {"0": "clear", "1": "history"}
|
||||
0.12599 {"0": "exciting", "1": "telling"}
|
||||
0.12599 {"0": "exciting", "1": "extraordinary"}
|
||||
0.12599 {"0": "old", "1": "predictable"}
|
||||
0.12599 {"0": "unbelievable", "1": "now"}
|
||||
0.12599 {"0": "huge", "1": "America"}
|
||||
0.12500 {"0": "unbelievable", "1": "proof"}
|
||||
0.07559 {"0": "painful", "1": "progress"}
|
||||
0.07559 {"0": "sad", "1": "more"}
|
||||
0.07559 {"0": "unknown", "1": "neither"}
|
||||
0.06950 {"0": "tough", "1": "America"}
|
||||
0.06950 {"0": "difficult", "1": "unexpected"}
|
||||
0.06950 {"0": "us", "1": "that"}
|
||||
0.06950 {"0": "confusing", "1": "history"}
|
||||
0.06950 {"0": "gross", "1": "unclear"}
|
||||
0.06580 {"0": "us", "1": "wrong"}
|
||||
0.06580 {"0": "serious", "1": "progress"}
|
||||
0.06580 {"0": "huge", "1": "remarkable"}
|
||||
0.06363 {"0": "confusing", "1": "understandable"}
|
||||
0.06363 {"0": "old", "1": "love"}
|
||||
0.06262 {"0": "horrible", "1": "America"}
|
||||
0.00000 {"0": "scary", "1": "sad"}
|
||||
0.00000 {"0": "scary", "1": "proof"}
|
||||
0.00000 {"0": "dangerous", "1": "inevitable"}
|
||||
0.00000 {"0": "stunning", "1": "predictable"}
|
||||
0.00000 {"0": "shocking", "1": "something"}
|
||||
0.00000 {"0": "dangerous", "1": "fiction"}
|
||||
0.00000 {"0": "huge", "1": "wonderful"}
|
||||
0.00000 {"0": "crucial", "1": "inevitable"}
|
||||
0.00000 {"0": "problematic", "1": "unexpected"}
|
||||
0.00000 {"0": "crazy", "1": "that"}
|
||||
0.00000 {"0": "nothing", "1": "more"}
|
||||
0.00000 {"0": "unlikely", "1": "fiction"}
|
||||
0.00000 {"0": "correct", "1": "proof"}
|
||||
0.00000 {"0": "frightening", "1": "strange"}
|
||||
0.00000 {"0": "possible", "1": "history"}
|
||||
0.00000 {"0": "serious", "1": "understandable"}
|
||||
0.00000 {"0": "accurate", "1": "astounding"}
|
||||
0.00000 {"0": "tricky", "1": "too"}
|
||||
0.00000 {"0": "exciting", "1": "understandable"}
|
||||
0.00000 {"0": "bizarre", "1": "understandable"}
|
||||
0.00000 {"0": "impossible", "1": "evidence"}
|
||||
-0.06262 {"0": "critical", "1": "us"}
|
||||
-0.06363 {"0": "brilliant", "1": "nice"}
|
||||
-0.06363 {"0": "difficult", "1": "understandable"}
|
||||
-0.06363 {"0": "gross", "1": "love"}
|
||||
-0.06580 {"0": "important", "1": "more"}
|
||||
-0.06580 {"0": "gross", "1": "predictable"}
|
||||
-0.06950 {"0": "close", "1": "predictable"}
|
||||
-0.06950 {"0": "controversial", "1": "unexpected"}
|
||||
-0.06950 {"0": "awesome", "1": "later"}
|
||||
-0.12599 {"0": "disturbing", "1": "more"}
|
||||
-0.12910 {"0": "terrible", "1": "history"}
|
||||
-0.13484 {"0": "scary", "1": "unexpected"}
|
||||
-0.13484 {"0": "illegal", "1": "progress"}
|
||||
-0.18787 {"0": "gross", "1": "wonderful"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "here", "1": "OK"}
|
||||
{"0": "huge", "1": "predictable"}
|
||||
{"0": "huge", "1": "unexpected"}
|
||||
{"0": "exciting", "1": "strange"}
|
||||
{"0": "exciting", "1": "odd"}
|
||||
{"0": "good", "1": "expected"}
|
||||
{"0": "ugly", "1": "predictable"}
|
||||
{"0": "shocking", "1": "revealing"}
|
||||
{"0": "intentional", "1": "fine"}
|
||||
{"0": "heartbreaking", "1": "America"}
|
||||
{"0": "exciting", "1": "because"}
|
||||
{"0": "here", "1": "okay"}
|
||||
{"0": "final", "1": "love"}
|
||||
{"0": "crucial", "1": "history"}
|
||||
{"0": "difficult", "1": "inevitable"}
|
||||
{"0": "obvious", "1": "understandable"}
|
||||
{"0": "easy", "1": "progress"}
|
||||
{"0": "final", "1": "neither"}
|
||||
{"0": "difficult", "1": "unlikely"}
|
||||
{"0": "fake", "1": "history"}
|
||||
{"0": "exciting", "1": "remarkable"}
|
||||
{"0": "clear", "1": "surprising"}
|
||||
{"0": "painful", "1": "that"}
|
||||
{"0": "tricky", "1": "odd"}
|
||||
{"0": "difficult", "1": "expected"}
|
||||
{"0": "unbelievable", "1": "evidence"}
|
||||
{"0": "critical", "1": "expected"}
|
||||
{"0": "clear", "1": "that"}
|
||||
{"0": "scary", "1": "different"}
|
||||
{"0": "helpful", "1": "about"}
|
||||
{"0": "illegal", "1": "neither"}
|
||||
{"0": "exciting", "1": "America"}
|
||||
{"0": "good", "1": "progress"}
|
||||
{"0": "good", "1": "that"}
|
||||
{"0": "huge", "1": "inevitable"}
|
||||
{"0": "bizarre", "1": "odd"}
|
||||
{"0": "controversial", "1": "telling"}
|
||||
{"0": "crazy", "1": "not"}
|
||||
{"0": "clear", "1": "understandable"}
|
||||
{"0": "painful", "1": "understandable"}
|
||||
{"0": "here", "1": "fine"}
|
||||
{"0": "gross", "1": "odd"}
|
||||
{"0": "essential", "1": "fiction"}
|
||||
{"0": "exciting", "1": "that"}
|
||||
{"0": "clear", "1": "history"}
|
||||
{"0": "exciting", "1": "telling"}
|
||||
{"0": "exciting", "1": "extraordinary"}
|
||||
{"0": "old", "1": "predictable"}
|
||||
{"0": "unbelievable", "1": "now"}
|
||||
{"0": "huge", "1": "America"}
|
||||
{"0": "unbelievable", "1": "proof"}
|
||||
{"0": "painful", "1": "progress"}
|
||||
{"0": "sad", "1": "more"}
|
||||
{"0": "unknown", "1": "neither"}
|
||||
{"0": "tough", "1": "America"}
|
||||
{"0": "difficult", "1": "unexpected"}
|
||||
{"0": "us", "1": "that"}
|
||||
{"0": "confusing", "1": "history"}
|
||||
{"0": "gross", "1": "unclear"}
|
||||
{"0": "us", "1": "wrong"}
|
||||
{"0": "serious", "1": "progress"}
|
||||
{"0": "huge", "1": "remarkable"}
|
||||
{"0": "confusing", "1": "understandable"}
|
||||
{"0": "old", "1": "love"}
|
||||
{"0": "horrible", "1": "America"}
|
||||
{"0": "scary", "1": "sad"}
|
||||
{"0": "scary", "1": "proof"}
|
||||
{"0": "dangerous", "1": "inevitable"}
|
||||
{"0": "stunning", "1": "predictable"}
|
||||
{"0": "shocking", "1": "something"}
|
||||
{"0": "dangerous", "1": "fiction"}
|
||||
{"0": "huge", "1": "wonderful"}
|
||||
{"0": "crucial", "1": "inevitable"}
|
||||
{"0": "problematic", "1": "unexpected"}
|
||||
{"0": "crazy", "1": "that"}
|
||||
{"0": "nothing", "1": "more"}
|
||||
{"0": "unlikely", "1": "fiction"}
|
||||
{"0": "correct", "1": "proof"}
|
||||
{"0": "frightening", "1": "strange"}
|
||||
{"0": "possible", "1": "history"}
|
||||
{"0": "serious", "1": "understandable"}
|
||||
{"0": "accurate", "1": "astounding"}
|
||||
{"0": "tricky", "1": "too"}
|
||||
{"0": "exciting", "1": "understandable"}
|
||||
{"0": "bizarre", "1": "understandable"}
|
||||
{"0": "impossible", "1": "evidence"}
|
||||
{"0": "critical", "1": "us"}
|
||||
{"0": "brilliant", "1": "nice"}
|
||||
{"0": "difficult", "1": "understandable"}
|
||||
{"0": "gross", "1": "love"}
|
||||
{"0": "important", "1": "more"}
|
||||
{"0": "gross", "1": "predictable"}
|
||||
{"0": "close", "1": "predictable"}
|
||||
{"0": "controversial", "1": "unexpected"}
|
||||
{"0": "awesome", "1": "later"}
|
||||
{"0": "disturbing", "1": "more"}
|
||||
{"0": "terrible", "1": "history"}
|
||||
{"0": "scary", "1": "unexpected"}
|
||||
{"0": "illegal", "1": "progress"}
|
||||
{"0": "gross", "1": "wonderful"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "crucial", "1": "history"}
|
||||
{"0": "tough", "1": "America"}
|
||||
{"0": "obvious", "1": "understandable"}
|
||||
{"0": "difficult", "1": "expected"}
|
||||
{"0": "scary", "1": "sad"}
|
||||
{"0": "brilliant", "1": "nice"}
|
||||
{"0": "huge", "1": "unexpected"}
|
||||
{"0": "dangerous", "1": "inevitable"}
|
||||
{"0": "scary", "1": "proof"}
|
||||
{"0": "painful", "1": "progress"}
|
||||
{"0": "difficult", "1": "unlikely"}
|
||||
{"0": "exciting", "1": "odd"}
|
||||
{"0": "confusing", "1": "understandable"}
|
||||
{"0": "clear", "1": "that"}
|
||||
{"0": "easy", "1": "progress"}
|
||||
{"0": "stunning", "1": "predictable"}
|
||||
{"0": "huge", "1": "predictable"}
|
||||
{"0": "fake", "1": "history"}
|
||||
{"0": "clear", "1": "understandable"}
|
||||
{"0": "shocking", "1": "something"}
|
||||
{"0": "important", "1": "more"}
|
||||
{"0": "heartbreaking", "1": "America"}
|
||||
{"0": "dangerous", "1": "fiction"}
|
||||
{"0": "unbelievable", "1": "evidence"}
|
||||
{"0": "difficult", "1": "unexpected"}
|
||||
{"0": "close", "1": "predictable"}
|
||||
{"0": "huge", "1": "wonderful"}
|
||||
{"0": "crucial", "1": "inevitable"}
|
||||
{"0": "critical", "1": "us"}
|
||||
{"0": "us", "1": "wrong"}
|
||||
{"0": "horrible", "1": "America"}
|
||||
{"0": "problematic", "1": "unexpected"}
|
||||
{"0": "exciting", "1": "remarkable"}
|
||||
{"0": "terrible", "1": "history"}
|
||||
{"0": "exciting", "1": "strange"}
|
||||
{"0": "painful", "1": "understandable"}
|
||||
{"0": "here", "1": "okay"}
|
||||
{"0": "good", "1": "progress"}
|
||||
{"0": "here", "1": "fine"}
|
||||
{"0": "crazy", "1": "that"}
|
||||
{"0": "good", "1": "expected"}
|
||||
{"0": "good", "1": "that"}
|
||||
{"0": "nothing", "1": "more"}
|
||||
{"0": "here", "1": "OK"}
|
||||
{"0": "crazy", "1": "not"}
|
||||
{"0": "us", "1": "that"}
|
||||
{"0": "unlikely", "1": "fiction"}
|
||||
{"0": "scary", "1": "unexpected"}
|
||||
{"0": "confusing", "1": "history"}
|
||||
{"0": "clear", "1": "surprising"}
|
||||
{"0": "scary", "1": "different"}
|
||||
{"0": "painful", "1": "that"}
|
||||
{"0": "clear", "1": "history"}
|
||||
{"0": "ugly", "1": "predictable"}
|
||||
{"0": "gross", "1": "unclear"}
|
||||
{"0": "exciting", "1": "telling"}
|
||||
{"0": "exciting", "1": "extraordinary"}
|
||||
{"0": "huge", "1": "remarkable"}
|
||||
{"0": "illegal", "1": "neither"}
|
||||
{"0": "serious", "1": "progress"}
|
||||
{"0": "difficult", "1": "understandable"}
|
||||
{"0": "unbelievable", "1": "proof"}
|
||||
{"0": "illegal", "1": "progress"}
|
||||
{"0": "gross", "1": "love"}
|
||||
{"0": "gross", "1": "odd"}
|
||||
{"0": "gross", "1": "predictable"}
|
||||
{"0": "intentional", "1": "fine"}
|
||||
{"0": "old", "1": "love"}
|
||||
{"0": "old", "1": "predictable"}
|
||||
{"0": "correct", "1": "proof"}
|
||||
{"0": "final", "1": "love"}
|
||||
{"0": "helpful", "1": "about"}
|
||||
{"0": "possible", "1": "history"}
|
||||
{"0": "frightening", "1": "strange"}
|
||||
{"0": "disturbing", "1": "more"}
|
||||
{"0": "final", "1": "neither"}
|
||||
{"0": "unbelievable", "1": "now"}
|
||||
{"0": "gross", "1": "wonderful"}
|
||||
{"0": "serious", "1": "understandable"}
|
||||
{"0": "critical", "1": "expected"}
|
||||
{"0": "essential", "1": "fiction"}
|
||||
{"0": "tricky", "1": "odd"}
|
||||
{"0": "bizarre", "1": "odd"}
|
||||
{"0": "accurate", "1": "astounding"}
|
||||
{"0": "tricky", "1": "too"}
|
||||
{"0": "exciting", "1": "America"}
|
||||
{"0": "controversial", "1": "telling"}
|
||||
{"0": "controversial", "1": "unexpected"}
|
||||
{"0": "exciting", "1": "that"}
|
||||
{"0": "sad", "1": "more"}
|
||||
{"0": "exciting", "1": "because"}
|
||||
{"0": "exciting", "1": "understandable"}
|
||||
{"0": "shocking", "1": "revealing"}
|
||||
{"0": "bizarre", "1": "understandable"}
|
||||
{"0": "unknown", "1": "neither"}
|
||||
{"0": "huge", "1": "inevitable"}
|
||||
{"0": "difficult", "1": "inevitable"}
|
||||
{"0": "huge", "1": "America"}
|
||||
{"0": "impossible", "1": "evidence"}
|
||||
{"0": "awesome", "1": "later"}
|
|
@ -0,0 +1,100 @@
|
|||
0.59216 {"0": "proof", "1": "one"}
|
||||
0.53936 {"0": "sad", "1": "wrong"}
|
||||
0.53936 {"0": "disappointing", "1": "misleading"}
|
||||
0.53936 {"0": "ironic", "1": "time"}
|
||||
0.52915 {"0": "this", "1": "unlikely"}
|
||||
0.50395 {"0": "disappointing", "1": "time"}
|
||||
0.50395 {"0": "hysterical", "1": "difficult"}
|
||||
0.50395 {"0": "remarkable", "1": "fiction"}
|
||||
0.46057 {"0": "wonderful", "1": "nonsense"}
|
||||
0.43836 {"0": "creepy", "1": "2017"}
|
||||
0.43836 {"0": "scary", "1": "astonishing"}
|
||||
0.43836 {"0": "horrible", "1": "bullshit"}
|
||||
0.43301 {"0": "best", "1": "Saturday"}
|
||||
0.40452 {"0": "disappointing", "1": "simple"}
|
||||
0.38730 {"0": "creepy", "1": "changing"}
|
||||
0.38730 {"0": "disgusting", "1": "serious"}
|
||||
0.38730 {"0": "lovely", "1": "2014"}
|
||||
0.38730 {"0": "proof", "1": "problematic"}
|
||||
0.38730 {"0": "insane", "1": "happening"}
|
||||
0.38730 {"0": "huge", "1": "happening"}
|
||||
0.37796 {"0": "disgusting", "1": "reality"}
|
||||
0.37796 {"0": "creepy", "1": "2014"}
|
||||
0.37796 {"0": "hysterical", "1": "incorrect"}
|
||||
0.37796 {"0": "fantastic", "1": "false"}
|
||||
0.37796 {"0": "gross", "1": "unavoidable"}
|
||||
0.37500 {"0": "disgusting", "1": "bullshit"}
|
||||
0.34752 {"0": "nice", "1": "changing"}
|
||||
0.34752 {"0": "shameful", "1": "unlikely"}
|
||||
0.32898 {"0": "creepy", "1": "time"}
|
||||
0.32898 {"0": "disappointing", "1": "unavoidable"}
|
||||
0.32898 {"0": "after", "1": "the"}
|
||||
0.32898 {"0": "fantastic", "1": "expected"}
|
||||
0.32898 {"0": "hilarious", "1": "impossible"}
|
||||
0.32898 {"0": "here", "1": "fiction"}
|
||||
0.32898 {"0": "pathetic", "1": "necessary"}
|
||||
0.32898 {"0": "best", "1": "simple"}
|
||||
0.32898 {"0": "gross", "1": "unnecessary"}
|
||||
0.32898 {"0": "disgusting", "1": "necessary"}
|
||||
0.32026 {"0": "everywhere", "1": "close"}
|
||||
0.31814 {"0": "helpful", "1": "simple"}
|
||||
0.31814 {"0": "another", "1": "unlikely"}
|
||||
0.31814 {"0": "gross", "1": "intentional"}
|
||||
0.31814 {"0": "ironic", "1": "2014"}
|
||||
0.31311 {"0": "evidence", "1": "false"}
|
||||
0.31311 {"0": "adorable", "1": "art"}
|
||||
0.31311 {"0": "evidence", "1": "fiction"}
|
||||
0.31311 {"0": "creepy", "1": "2016"}
|
||||
0.31311 {"0": "hysterical", "1": "simple"}
|
||||
0.31311 {"0": "ironic", "1": "changing"}
|
||||
0.28868 {"0": "OK", "1": "time"}
|
||||
0.26968 {"0": "evidence", "1": "incorrect"}
|
||||
0.26968 {"0": "huge", "1": "simple"}
|
||||
0.26968 {"0": "lovely", "1": "official"}
|
||||
0.26968 {"0": "hysterical", "1": "inexplicable"}
|
||||
0.25820 {"0": "another", "1": "unclear"}
|
||||
0.25820 {"0": "hilarious", "1": "madness"}
|
||||
0.25820 {"0": "what", "1": "possible"}
|
||||
0.25820 {"0": "delicious", "1": "2015"}
|
||||
0.25820 {"0": "disgusting", "1": "the"}
|
||||
0.25820 {"0": "ironic", "1": "simple"}
|
||||
0.25198 {"0": "priceless", "1": "them"}
|
||||
0.25198 {"0": "pathetic", "1": "official"}
|
||||
0.25198 {"0": "this", "1": "his"}
|
||||
0.25198 {"0": "hilarious", "1": "not"}
|
||||
0.25198 {"0": "pathetic", "1": "possible"}
|
||||
0.25198 {"0": "home", "1": "unavoidable"}
|
||||
0.25000 {"0": "priceless", "1": "simple"}
|
||||
0.25000 {"0": "what", "1": "crucial"}
|
||||
0.25000 {"0": "ironic", "1": "controversial"}
|
||||
0.25000 {"0": "lovely", "1": "on"}
|
||||
0.25000 {"0": "ironic", "1": "unavoidable"}
|
||||
0.22678 {"0": "frightening", "1": "unavoidable"}
|
||||
0.22678 {"0": "huge", "1": "clear"}
|
||||
0.20851 {"0": "big", "1": "difficult"}
|
||||
0.20851 {"0": "evidence", "1": "official"}
|
||||
0.20851 {"0": "wonderful", "1": "false"}
|
||||
0.20851 {"0": "creepy", "1": "controversial"}
|
||||
0.19739 {"0": "what", "1": "simple"}
|
||||
0.19089 {"0": "priceless", "1": "essential"}
|
||||
0.19089 {"0": "unbelievable", "1": "nonsense"}
|
||||
0.19089 {"0": "hilarious", "1": "simple"}
|
||||
0.19089 {"0": "disgusting", "1": "unusual"}
|
||||
0.18787 {"0": "rich", "1": "official"}
|
||||
0.18787 {"0": "adorable", "1": "unavoidable"}
|
||||
0.18787 {"0": "sweet", "1": "Saturday"}
|
||||
0.18787 {"0": "wonderful", "1": "absurd"}
|
||||
0.18787 {"0": "priceless", "1": "inevitable"}
|
||||
0.14434 {"0": "now", "1": "over"}
|
||||
0.14434 {"0": "pathetic", "1": "impossible"}
|
||||
0.13484 {"0": "everywhere", "1": "unavoidable"}
|
||||
0.12910 {"0": "unfortunate", "1": "unlikely"}
|
||||
0.12599 {"0": "disgusting", "1": "possible"}
|
||||
0.06363 {"0": "beautiful", "1": "fiction"}
|
||||
0.06363 {"0": "where", "1": "simple"}
|
||||
0.06363 {"0": "this", "1": "simple"}
|
||||
0.06262 {"0": "priceless", "1": "difficult"}
|
||||
0.06262 {"0": "everywhere", "1": "predictable"}
|
||||
0.00000 {"0": "gross", "1": "predictable"}
|
||||
0.00000 {"0": "priceless", "1": "2014"}
|
||||
0.00000 {"0": "creepy", "1": "inexplicable"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "proof", "1": "one"}
|
||||
{"0": "sad", "1": "wrong"}
|
||||
{"0": "disappointing", "1": "misleading"}
|
||||
{"0": "ironic", "1": "time"}
|
||||
{"0": "this", "1": "unlikely"}
|
||||
{"0": "disappointing", "1": "time"}
|
||||
{"0": "hysterical", "1": "difficult"}
|
||||
{"0": "remarkable", "1": "fiction"}
|
||||
{"0": "wonderful", "1": "nonsense"}
|
||||
{"0": "creepy", "1": "2017"}
|
||||
{"0": "scary", "1": "astonishing"}
|
||||
{"0": "horrible", "1": "bullshit"}
|
||||
{"0": "best", "1": "Saturday"}
|
||||
{"0": "disappointing", "1": "simple"}
|
||||
{"0": "creepy", "1": "changing"}
|
||||
{"0": "disgusting", "1": "serious"}
|
||||
{"0": "lovely", "1": "2014"}
|
||||
{"0": "proof", "1": "problematic"}
|
||||
{"0": "insane", "1": "happening"}
|
||||
{"0": "huge", "1": "happening"}
|
||||
{"0": "disgusting", "1": "reality"}
|
||||
{"0": "creepy", "1": "2014"}
|
||||
{"0": "hysterical", "1": "incorrect"}
|
||||
{"0": "fantastic", "1": "false"}
|
||||
{"0": "gross", "1": "unavoidable"}
|
||||
{"0": "disgusting", "1": "bullshit"}
|
||||
{"0": "nice", "1": "changing"}
|
||||
{"0": "shameful", "1": "unlikely"}
|
||||
{"0": "creepy", "1": "time"}
|
||||
{"0": "disappointing", "1": "unavoidable"}
|
||||
{"0": "after", "1": "the"}
|
||||
{"0": "fantastic", "1": "expected"}
|
||||
{"0": "hilarious", "1": "impossible"}
|
||||
{"0": "here", "1": "fiction"}
|
||||
{"0": "pathetic", "1": "necessary"}
|
||||
{"0": "best", "1": "simple"}
|
||||
{"0": "gross", "1": "unnecessary"}
|
||||
{"0": "disgusting", "1": "necessary"}
|
||||
{"0": "everywhere", "1": "close"}
|
||||
{"0": "helpful", "1": "simple"}
|
||||
{"0": "another", "1": "unlikely"}
|
||||
{"0": "gross", "1": "intentional"}
|
||||
{"0": "ironic", "1": "2014"}
|
||||
{"0": "evidence", "1": "false"}
|
||||
{"0": "adorable", "1": "art"}
|
||||
{"0": "evidence", "1": "fiction"}
|
||||
{"0": "creepy", "1": "2016"}
|
||||
{"0": "hysterical", "1": "simple"}
|
||||
{"0": "ironic", "1": "changing"}
|
||||
{"0": "OK", "1": "time"}
|
||||
{"0": "evidence", "1": "incorrect"}
|
||||
{"0": "huge", "1": "simple"}
|
||||
{"0": "lovely", "1": "official"}
|
||||
{"0": "hysterical", "1": "inexplicable"}
|
||||
{"0": "another", "1": "unclear"}
|
||||
{"0": "hilarious", "1": "madness"}
|
||||
{"0": "what", "1": "possible"}
|
||||
{"0": "delicious", "1": "2015"}
|
||||
{"0": "disgusting", "1": "the"}
|
||||
{"0": "ironic", "1": "simple"}
|
||||
{"0": "priceless", "1": "them"}
|
||||
{"0": "pathetic", "1": "official"}
|
||||
{"0": "this", "1": "his"}
|
||||
{"0": "hilarious", "1": "not"}
|
||||
{"0": "pathetic", "1": "possible"}
|
||||
{"0": "home", "1": "unavoidable"}
|
||||
{"0": "priceless", "1": "simple"}
|
||||
{"0": "what", "1": "crucial"}
|
||||
{"0": "ironic", "1": "controversial"}
|
||||
{"0": "lovely", "1": "on"}
|
||||
{"0": "ironic", "1": "unavoidable"}
|
||||
{"0": "frightening", "1": "unavoidable"}
|
||||
{"0": "huge", "1": "clear"}
|
||||
{"0": "big", "1": "difficult"}
|
||||
{"0": "evidence", "1": "official"}
|
||||
{"0": "wonderful", "1": "false"}
|
||||
{"0": "creepy", "1": "controversial"}
|
||||
{"0": "what", "1": "simple"}
|
||||
{"0": "priceless", "1": "essential"}
|
||||
{"0": "unbelievable", "1": "nonsense"}
|
||||
{"0": "hilarious", "1": "simple"}
|
||||
{"0": "disgusting", "1": "unusual"}
|
||||
{"0": "rich", "1": "official"}
|
||||
{"0": "adorable", "1": "unavoidable"}
|
||||
{"0": "sweet", "1": "Saturday"}
|
||||
{"0": "wonderful", "1": "absurd"}
|
||||
{"0": "priceless", "1": "inevitable"}
|
||||
{"0": "now", "1": "over"}
|
||||
{"0": "pathetic", "1": "impossible"}
|
||||
{"0": "everywhere", "1": "unavoidable"}
|
||||
{"0": "unfortunate", "1": "unlikely"}
|
||||
{"0": "disgusting", "1": "possible"}
|
||||
{"0": "beautiful", "1": "fiction"}
|
||||
{"0": "where", "1": "simple"}
|
||||
{"0": "this", "1": "simple"}
|
||||
{"0": "priceless", "1": "difficult"}
|
||||
{"0": "everywhere", "1": "predictable"}
|
||||
{"0": "gross", "1": "predictable"}
|
||||
{"0": "priceless", "1": "2014"}
|
||||
{"0": "creepy", "1": "inexplicable"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "creepy", "1": "2014"}
|
||||
{"0": "rich", "1": "official"}
|
||||
{"0": "everywhere", "1": "unavoidable"}
|
||||
{"0": "helpful", "1": "simple"}
|
||||
{"0": "evidence", "1": "incorrect"}
|
||||
{"0": "priceless", "1": "simple"}
|
||||
{"0": "creepy", "1": "time"}
|
||||
{"0": "evidence", "1": "false"}
|
||||
{"0": "disappointing", "1": "unavoidable"}
|
||||
{"0": "sad", "1": "wrong"}
|
||||
{"0": "creepy", "1": "2017"}
|
||||
{"0": "hilarious", "1": "madness"}
|
||||
{"0": "adorable", "1": "unavoidable"}
|
||||
{"0": "huge", "1": "simple"}
|
||||
{"0": "big", "1": "difficult"}
|
||||
{"0": "nice", "1": "changing"}
|
||||
{"0": "sweet", "1": "Saturday"}
|
||||
{"0": "everywhere", "1": "close"}
|
||||
{"0": "frightening", "1": "unavoidable"}
|
||||
{"0": "priceless", "1": "them"}
|
||||
{"0": "after", "1": "the"}
|
||||
{"0": "priceless", "1": "essential"}
|
||||
{"0": "creepy", "1": "changing"}
|
||||
{"0": "scary", "1": "astonishing"}
|
||||
{"0": "what", "1": "simple"}
|
||||
{"0": "beautiful", "1": "fiction"}
|
||||
{"0": "gross", "1": "predictable"}
|
||||
{"0": "another", "1": "unlikely"}
|
||||
{"0": "disgusting", "1": "serious"}
|
||||
{"0": "pathetic", "1": "official"}
|
||||
{"0": "adorable", "1": "art"}
|
||||
{"0": "unfortunate", "1": "unlikely"}
|
||||
{"0": "unbelievable", "1": "nonsense"}
|
||||
{"0": "where", "1": "simple"}
|
||||
{"0": "horrible", "1": "bullshit"}
|
||||
{"0": "wonderful", "1": "nonsense"}
|
||||
{"0": "priceless", "1": "difficult"}
|
||||
{"0": "now", "1": "over"}
|
||||
{"0": "evidence", "1": "fiction"}
|
||||
{"0": "lovely", "1": "2014"}
|
||||
{"0": "priceless", "1": "2014"}
|
||||
{"0": "evidence", "1": "official"}
|
||||
{"0": "what", "1": "possible"}
|
||||
{"0": "wonderful", "1": "absurd"}
|
||||
{"0": "lovely", "1": "official"}
|
||||
{"0": "this", "1": "simple"}
|
||||
{"0": "proof", "1": "problematic"}
|
||||
{"0": "creepy", "1": "2016"}
|
||||
{"0": "insane", "1": "happening"}
|
||||
{"0": "disappointing", "1": "time"}
|
||||
{"0": "this", "1": "unlikely"}
|
||||
{"0": "hilarious", "1": "simple"}
|
||||
{"0": "another", "1": "unclear"}
|
||||
{"0": "OK", "1": "time"}
|
||||
{"0": "this", "1": "his"}
|
||||
{"0": "pathetic", "1": "impossible"}
|
||||
{"0": "hysterical", "1": "difficult"}
|
||||
{"0": "fantastic", "1": "expected"}
|
||||
{"0": "hilarious", "1": "impossible"}
|
||||
{"0": "disappointing", "1": "simple"}
|
||||
{"0": "hysterical", "1": "incorrect"}
|
||||
{"0": "delicious", "1": "2015"}
|
||||
{"0": "what", "1": "crucial"}
|
||||
{"0": "hysterical", "1": "inexplicable"}
|
||||
{"0": "priceless", "1": "inevitable"}
|
||||
{"0": "fantastic", "1": "false"}
|
||||
{"0": "hysterical", "1": "simple"}
|
||||
{"0": "remarkable", "1": "fiction"}
|
||||
{"0": "proof", "1": "one"}
|
||||
{"0": "disgusting", "1": "bullshit"}
|
||||
{"0": "everywhere", "1": "predictable"}
|
||||
{"0": "huge", "1": "happening"}
|
||||
{"0": "creepy", "1": "inexplicable"}
|
||||
{"0": "ironic", "1": "controversial"}
|
||||
{"0": "lovely", "1": "on"}
|
||||
{"0": "disappointing", "1": "misleading"}
|
||||
{"0": "here", "1": "fiction"}
|
||||
{"0": "huge", "1": "clear"}
|
||||
{"0": "pathetic", "1": "necessary"}
|
||||
{"0": "gross", "1": "intentional"}
|
||||
{"0": "best", "1": "simple"}
|
||||
{"0": "wonderful", "1": "false"}
|
||||
{"0": "gross", "1": "unnecessary"}
|
||||
{"0": "ironic", "1": "time"}
|
||||
{"0": "ironic", "1": "2014"}
|
||||
{"0": "ironic", "1": "changing"}
|
||||
{"0": "creepy", "1": "controversial"}
|
||||
{"0": "disgusting", "1": "possible"}
|
||||
{"0": "ironic", "1": "unavoidable"}
|
||||
{"0": "disgusting", "1": "the"}
|
||||
{"0": "ironic", "1": "simple"}
|
||||
{"0": "shameful", "1": "unlikely"}
|
||||
{"0": "gross", "1": "unavoidable"}
|
||||
{"0": "best", "1": "Saturday"}
|
||||
{"0": "disgusting", "1": "necessary"}
|
||||
{"0": "hilarious", "1": "not"}
|
||||
{"0": "disgusting", "1": "unusual"}
|
||||
{"0": "pathetic", "1": "possible"}
|
||||
{"0": "disgusting", "1": "reality"}
|
||||
{"0": "home", "1": "unavoidable"}
|
|
@ -0,0 +1,100 @@
|
|||
0.37796 {"0": "known", "1": "untrue"}
|
||||
0.31814 {"0": "back", "1": "untrue"}
|
||||
0.28868 {"0": "alarming", "1": "ludicrous"}
|
||||
0.25820 {"0": "more", "1": "heartbreaking"}
|
||||
0.25198 {"0": "close", "1": "work"}
|
||||
0.22678 {"0": "another", "1": "inevitable"}
|
||||
0.20851 {"0": "tricky", "1": "business"}
|
||||
0.19739 {"0": "close", "1": "outrageous"}
|
||||
0.19089 {"0": "about", "1": "private"}
|
||||
0.19089 {"0": "troubling", "1": "unavoidable"}
|
||||
0.19089 {"0": "one", "1": "simple"}
|
||||
0.18898 {"0": "close", "1": "forever"}
|
||||
0.18787 {"0": "scary", "1": "ridiculous"}
|
||||
0.18787 {"0": "here", "1": "depressing"}
|
||||
0.14434 {"0": "notable", "1": "outrageous"}
|
||||
0.14434 {"0": "frightening", "1": "outrageous"}
|
||||
0.13484 {"0": "common", "1": "dumb"}
|
||||
0.13484 {"0": "evidence", "1": "madness"}
|
||||
0.12910 {"0": "another", "1": "gross"}
|
||||
0.12910 {"0": "first", "1": "business"}
|
||||
0.12910 {"0": "more", "1": "sad"}
|
||||
0.12599 {"0": "tricky", "1": "silly"}
|
||||
0.12599 {"0": "close", "1": "silly"}
|
||||
0.12599 {"0": "close", "1": "embarrassing"}
|
||||
0.12599 {"0": "unclear", "1": "unsettling"}
|
||||
0.12599 {"0": "close", "1": "shocking"}
|
||||
0.12599 {"0": "the", "1": "business"}
|
||||
0.07559 {"0": "unclear", "1": "love"}
|
||||
0.07559 {"0": "close", "1": "dumb"}
|
||||
0.07559 {"0": "close", "1": "brilliant"}
|
||||
0.06950 {"0": "familiar", "1": "predictable"}
|
||||
0.06950 {"0": "similar", "1": "predictable"}
|
||||
0.06580 {"0": "dramatic", "1": "outrageous"}
|
||||
0.06580 {"0": "similar", "1": "forever"}
|
||||
0.06580 {"0": "close", "1": "inevitable"}
|
||||
0.06580 {"0": "close", "1": "business"}
|
||||
0.06363 {"0": "fascinating", "1": "life"}
|
||||
0.06262 {"0": "back", "1": "private"}
|
||||
0.00000 {"0": "tricky", "1": "boring"}
|
||||
0.00000 {"0": "back", "1": "public"}
|
||||
0.00000 {"0": "key", "1": "embarrassing"}
|
||||
0.00000 {"0": "close", "1": "Christmas"}
|
||||
0.00000 {"0": "worse", "1": "insanity"}
|
||||
0.00000 {"0": "more", "1": "tragic"}
|
||||
0.00000 {"0": "here", "1": "private"}
|
||||
0.00000 {"0": "close", "1": "creepy"}
|
||||
0.00000 {"0": "more", "1": "private"}
|
||||
0.00000 {"0": "ours", "1": "forever"}
|
||||
0.00000 {"0": "one", "1": "America"}
|
||||
0.00000 {"0": "similar", "1": "Christmas"}
|
||||
0.00000 {"0": "helpful", "1": "painful"}
|
||||
0.00000 {"0": "coming", "1": "business"}
|
||||
0.00000 {"0": "key", "1": "simple"}
|
||||
-0.06262 {"0": "progress", "1": "embarrassing"}
|
||||
-0.06262 {"0": "close", "1": "personal"}
|
||||
-0.06262 {"0": "done", "1": "business"}
|
||||
-0.06262 {"0": "difficult", "1": "embarrassing"}
|
||||
-0.06262 {"0": "another", "1": "tragic"}
|
||||
-0.06262 {"0": "close", "1": "painful"}
|
||||
-0.06262 {"0": "one", "1": "wonderful"}
|
||||
-0.06262 {"0": "expected", "1": "inevitable"}
|
||||
-0.06262 {"0": "tricky", "1": "forever"}
|
||||
-0.06262 {"0": "unclear", "1": "Christmas"}
|
||||
-0.06363 {"0": "similar", "1": "love"}
|
||||
-0.06363 {"0": "another", "1": "private"}
|
||||
-0.06363 {"0": "common", "1": "evil"}
|
||||
-0.06363 {"0": "one", "1": "personal"}
|
||||
-0.06363 {"0": "worse", "1": "embarrassing"}
|
||||
-0.06580 {"0": "close", "1": "love"}
|
||||
-0.06580 {"0": "known", "1": "boring"}
|
||||
-0.06580 {"0": "familiar", "1": "perfect"}
|
||||
-0.06580 {"0": "evidence", "1": "stupid"}
|
||||
-0.06580 {"0": "massive", "1": "love"}
|
||||
-0.06950 {"0": "about", "1": "love"}
|
||||
-0.06950 {"0": "another", "1": "silly"}
|
||||
-0.12599 {"0": "similar", "1": "private"}
|
||||
-0.12599 {"0": "unclear", "1": "life"}
|
||||
-0.12910 {"0": "notable", "1": "forever"}
|
||||
-0.12910 {"0": "unclear", "1": "war"}
|
||||
-0.12910 {"0": "unclear", "1": "business"}
|
||||
-0.12910 {"0": "one", "1": "life"}
|
||||
-0.14434 {"0": "more", "1": "personal"}
|
||||
-0.18787 {"0": "one", "1": "love"}
|
||||
-0.18787 {"0": "here", "1": "love"}
|
||||
-0.18787 {"0": "after", "1": "private"}
|
||||
-0.18787 {"0": "the", "1": "private"}
|
||||
-0.19089 {"0": "tricky", "1": "love"}
|
||||
-0.19089 {"0": "the", "1": "love"}
|
||||
-0.19089 {"0": "another", "1": "love"}
|
||||
-0.19089 {"0": "missing", "1": "love"}
|
||||
-0.25198 {"0": "close", "1": "boring"}
|
||||
-0.25198 {"0": "first", "1": "Christmas"}
|
||||
-0.25198 {"0": "necessary", "1": "love"}
|
||||
-0.25820 {"0": "done", "1": "love"}
|
||||
-0.26968 {"0": "on", "1": "love"}
|
||||
-0.31311 {"0": "back", "1": "love"}
|
||||
-0.31311 {"0": "old", "1": "love"}
|
||||
-0.31311 {"0": "ours", "1": "love"}
|
||||
-0.31814 {"0": "information", "1": "love"}
|
||||
-0.31814 {"0": "known", "1": "private"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "known", "1": "untrue"}
|
||||
{"0": "back", "1": "untrue"}
|
||||
{"0": "alarming", "1": "ludicrous"}
|
||||
{"0": "more", "1": "heartbreaking"}
|
||||
{"0": "close", "1": "work"}
|
||||
{"0": "another", "1": "inevitable"}
|
||||
{"0": "tricky", "1": "business"}
|
||||
{"0": "close", "1": "outrageous"}
|
||||
{"0": "about", "1": "private"}
|
||||
{"0": "troubling", "1": "unavoidable"}
|
||||
{"0": "one", "1": "simple"}
|
||||
{"0": "close", "1": "forever"}
|
||||
{"0": "scary", "1": "ridiculous"}
|
||||
{"0": "here", "1": "depressing"}
|
||||
{"0": "notable", "1": "outrageous"}
|
||||
{"0": "frightening", "1": "outrageous"}
|
||||
{"0": "common", "1": "dumb"}
|
||||
{"0": "evidence", "1": "madness"}
|
||||
{"0": "another", "1": "gross"}
|
||||
{"0": "first", "1": "business"}
|
||||
{"0": "more", "1": "sad"}
|
||||
{"0": "tricky", "1": "silly"}
|
||||
{"0": "close", "1": "silly"}
|
||||
{"0": "close", "1": "embarrassing"}
|
||||
{"0": "unclear", "1": "unsettling"}
|
||||
{"0": "close", "1": "shocking"}
|
||||
{"0": "the", "1": "business"}
|
||||
{"0": "unclear", "1": "love"}
|
||||
{"0": "close", "1": "dumb"}
|
||||
{"0": "close", "1": "brilliant"}
|
||||
{"0": "familiar", "1": "predictable"}
|
||||
{"0": "similar", "1": "predictable"}
|
||||
{"0": "dramatic", "1": "outrageous"}
|
||||
{"0": "similar", "1": "forever"}
|
||||
{"0": "close", "1": "inevitable"}
|
||||
{"0": "close", "1": "business"}
|
||||
{"0": "fascinating", "1": "life"}
|
||||
{"0": "back", "1": "private"}
|
||||
{"0": "tricky", "1": "boring"}
|
||||
{"0": "back", "1": "public"}
|
||||
{"0": "key", "1": "embarrassing"}
|
||||
{"0": "close", "1": "Christmas"}
|
||||
{"0": "worse", "1": "insanity"}
|
||||
{"0": "more", "1": "tragic"}
|
||||
{"0": "here", "1": "private"}
|
||||
{"0": "close", "1": "creepy"}
|
||||
{"0": "more", "1": "private"}
|
||||
{"0": "ours", "1": "forever"}
|
||||
{"0": "one", "1": "America"}
|
||||
{"0": "similar", "1": "Christmas"}
|
||||
{"0": "helpful", "1": "painful"}
|
||||
{"0": "coming", "1": "business"}
|
||||
{"0": "key", "1": "simple"}
|
||||
{"0": "progress", "1": "embarrassing"}
|
||||
{"0": "close", "1": "personal"}
|
||||
{"0": "done", "1": "business"}
|
||||
{"0": "difficult", "1": "embarrassing"}
|
||||
{"0": "another", "1": "tragic"}
|
||||
{"0": "close", "1": "painful"}
|
||||
{"0": "one", "1": "wonderful"}
|
||||
{"0": "expected", "1": "inevitable"}
|
||||
{"0": "tricky", "1": "forever"}
|
||||
{"0": "unclear", "1": "Christmas"}
|
||||
{"0": "similar", "1": "love"}
|
||||
{"0": "another", "1": "private"}
|
||||
{"0": "common", "1": "evil"}
|
||||
{"0": "one", "1": "personal"}
|
||||
{"0": "worse", "1": "embarrassing"}
|
||||
{"0": "close", "1": "love"}
|
||||
{"0": "known", "1": "boring"}
|
||||
{"0": "familiar", "1": "perfect"}
|
||||
{"0": "evidence", "1": "stupid"}
|
||||
{"0": "massive", "1": "love"}
|
||||
{"0": "about", "1": "love"}
|
||||
{"0": "another", "1": "silly"}
|
||||
{"0": "similar", "1": "private"}
|
||||
{"0": "unclear", "1": "life"}
|
||||
{"0": "notable", "1": "forever"}
|
||||
{"0": "unclear", "1": "war"}
|
||||
{"0": "unclear", "1": "business"}
|
||||
{"0": "one", "1": "life"}
|
||||
{"0": "more", "1": "personal"}
|
||||
{"0": "one", "1": "love"}
|
||||
{"0": "here", "1": "love"}
|
||||
{"0": "after", "1": "private"}
|
||||
{"0": "the", "1": "private"}
|
||||
{"0": "tricky", "1": "love"}
|
||||
{"0": "the", "1": "love"}
|
||||
{"0": "another", "1": "love"}
|
||||
{"0": "missing", "1": "love"}
|
||||
{"0": "close", "1": "boring"}
|
||||
{"0": "first", "1": "Christmas"}
|
||||
{"0": "necessary", "1": "love"}
|
||||
{"0": "done", "1": "love"}
|
||||
{"0": "on", "1": "love"}
|
||||
{"0": "back", "1": "love"}
|
||||
{"0": "old", "1": "love"}
|
||||
{"0": "ours", "1": "love"}
|
||||
{"0": "information", "1": "love"}
|
||||
{"0": "known", "1": "private"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "back", "1": "love"}
|
||||
{"0": "close", "1": "outrageous"}
|
||||
{"0": "back", "1": "private"}
|
||||
{"0": "similar", "1": "love"}
|
||||
{"0": "tricky", "1": "boring"}
|
||||
{"0": "another", "1": "private"}
|
||||
{"0": "close", "1": "silly"}
|
||||
{"0": "tricky", "1": "silly"}
|
||||
{"0": "on", "1": "love"}
|
||||
{"0": "similar", "1": "private"}
|
||||
{"0": "tricky", "1": "love"}
|
||||
{"0": "progress", "1": "embarrassing"}
|
||||
{"0": "close", "1": "forever"}
|
||||
{"0": "about", "1": "private"}
|
||||
{"0": "the", "1": "love"}
|
||||
{"0": "close", "1": "embarrassing"}
|
||||
{"0": "close", "1": "love"}
|
||||
{"0": "close", "1": "personal"}
|
||||
{"0": "common", "1": "evil"}
|
||||
{"0": "done", "1": "business"}
|
||||
{"0": "old", "1": "love"}
|
||||
{"0": "unclear", "1": "love"}
|
||||
{"0": "more", "1": "personal"}
|
||||
{"0": "notable", "1": "outrageous"}
|
||||
{"0": "back", "1": "public"}
|
||||
{"0": "information", "1": "love"}
|
||||
{"0": "fascinating", "1": "life"}
|
||||
{"0": "close", "1": "boring"}
|
||||
{"0": "key", "1": "embarrassing"}
|
||||
{"0": "unclear", "1": "unsettling"}
|
||||
{"0": "about", "1": "love"}
|
||||
{"0": "close", "1": "Christmas"}
|
||||
{"0": "worse", "1": "insanity"}
|
||||
{"0": "close", "1": "shocking"}
|
||||
{"0": "done", "1": "love"}
|
||||
{"0": "known", "1": "boring"}
|
||||
{"0": "unclear", "1": "life"}
|
||||
{"0": "more", "1": "tragic"}
|
||||
{"0": "the", "1": "business"}
|
||||
{"0": "another", "1": "love"}
|
||||
{"0": "notable", "1": "forever"}
|
||||
{"0": "one", "1": "love"}
|
||||
{"0": "difficult", "1": "embarrassing"}
|
||||
{"0": "more", "1": "heartbreaking"}
|
||||
{"0": "here", "1": "private"}
|
||||
{"0": "known", "1": "private"}
|
||||
{"0": "dramatic", "1": "outrageous"}
|
||||
{"0": "close", "1": "creepy"}
|
||||
{"0": "here", "1": "love"}
|
||||
{"0": "scary", "1": "ridiculous"}
|
||||
{"0": "tricky", "1": "business"}
|
||||
{"0": "familiar", "1": "perfect"}
|
||||
{"0": "familiar", "1": "predictable"}
|
||||
{"0": "close", "1": "brilliant"}
|
||||
{"0": "close", "1": "dumb"}
|
||||
{"0": "another", "1": "inevitable"}
|
||||
{"0": "another", "1": "gross"}
|
||||
{"0": "another", "1": "silly"}
|
||||
{"0": "close", "1": "work"}
|
||||
{"0": "unclear", "1": "war"}
|
||||
{"0": "alarming", "1": "ludicrous"}
|
||||
{"0": "common", "1": "dumb"}
|
||||
{"0": "another", "1": "tragic"}
|
||||
{"0": "frightening", "1": "outrageous"}
|
||||
{"0": "close", "1": "painful"}
|
||||
{"0": "evidence", "1": "stupid"}
|
||||
{"0": "after", "1": "private"}
|
||||
{"0": "troubling", "1": "unavoidable"}
|
||||
{"0": "missing", "1": "love"}
|
||||
{"0": "more", "1": "private"}
|
||||
{"0": "one", "1": "wonderful"}
|
||||
{"0": "necessary", "1": "love"}
|
||||
{"0": "first", "1": "Christmas"}
|
||||
{"0": "ours", "1": "forever"}
|
||||
{"0": "unclear", "1": "business"}
|
||||
{"0": "one", "1": "America"}
|
||||
{"0": "one", "1": "simple"}
|
||||
{"0": "one", "1": "life"}
|
||||
{"0": "first", "1": "business"}
|
||||
{"0": "similar", "1": "Christmas"}
|
||||
{"0": "similar", "1": "predictable"}
|
||||
{"0": "the", "1": "private"}
|
||||
{"0": "similar", "1": "forever"}
|
||||
{"0": "expected", "1": "inevitable"}
|
||||
{"0": "more", "1": "sad"}
|
||||
{"0": "close", "1": "inevitable"}
|
||||
{"0": "tricky", "1": "forever"}
|
||||
{"0": "helpful", "1": "painful"}
|
||||
{"0": "one", "1": "personal"}
|
||||
{"0": "ours", "1": "love"}
|
||||
{"0": "here", "1": "depressing"}
|
||||
{"0": "unclear", "1": "Christmas"}
|
||||
{"0": "coming", "1": "business"}
|
||||
{"0": "key", "1": "simple"}
|
||||
{"0": "close", "1": "business"}
|
||||
{"0": "known", "1": "untrue"}
|
||||
{"0": "evidence", "1": "madness"}
|
||||
{"0": "worse", "1": "embarrassing"}
|
||||
{"0": "massive", "1": "love"}
|
||||
{"0": "back", "1": "untrue"}
|
|
@ -0,0 +1,100 @@
|
|||
0.77083 {"contradiction": "Next", "entailment": "Exactly", "neutral": "indeed"}
|
||||
0.75000 {"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Probably"}
|
||||
0.72917 {"contradiction": "Personally", "entailment": "Meaning", "neutral": "Probably"}
|
||||
0.72917 {"contradiction": "Personally", "entailment": "Exactly", "neutral": "Probably"}
|
||||
0.72917 {"contradiction": "Only", "entailment": "indeed", "neutral": "Perhaps"}
|
||||
0.72917 {"contradiction": "no", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
0.72917 {"contradiction": "Worse", "entailment": "Right", "neutral": "Probably"}
|
||||
0.72917 {"contradiction": "Nope", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
0.70833 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Maybe"}
|
||||
0.70833 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Interestingly"}
|
||||
0.70833 {"contradiction": "But", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
0.70833 {"contradiction": "Personally", "entailment": "Yep", "neutral": "Probably"}
|
||||
0.70833 {"contradiction": "But", "entailment": "Yeah", "neutral": "Interestingly"}
|
||||
0.70833 {"contradiction": "But", "entailment": "Yep", "neutral": "Apparently"}
|
||||
0.70833 {"contradiction": "Personally", "entailment": "Right", "neutral": "Probably"}
|
||||
0.70833 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Naturally"}
|
||||
0.70833 {"contradiction": "Yet", "entailment": "Definitely", "neutral": "Interestingly"}
|
||||
0.70833 {"contradiction": "Personally", "entailment": "indeed", "neutral": "Probably"}
|
||||
0.70833 {"contradiction": "Still", "entailment": "Basically", "neutral": "And"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Ultimately"}
|
||||
0.70833 {"contradiction": "Except", "entailment": "Right", "neutral": "Probably"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Basically"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Yeah", "neutral": "Obviously"}
|
||||
0.70833 {"contradiction": "Yet", "entailment": "Yeah", "neutral": "Obviously"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "Honestly"}
|
||||
0.68750 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Presumably"}
|
||||
0.68750 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Overall"}
|
||||
0.68750 {"contradiction": "Except", "entailment": "Seriously", "neutral": "True"}
|
||||
0.68750 {"contradiction": "Except", "entailment": "indeed", "neutral": "Maybe"}
|
||||
0.68750 {"contradiction": "But", "entailment": "Right", "neutral": "Essentially"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Initially"}
|
||||
0.68750 {"contradiction": "But", "entailment": "Right", "neutral": "Interestingly"}
|
||||
0.68750 {"contradiction": "Except", "entailment": "Meaning", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "Wait", "entailment": "Yep", "neutral": "Probably"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
0.66667 {"contradiction": "Personally", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
0.66667 {"contradiction": "Wait", "entailment": "Nope", "neutral": "Maybe"}
|
||||
0.66667 {"contradiction": "But", "entailment": "Also", "neutral": "Naturally"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Right", "neutral": "True"}
|
||||
0.66667 {"contradiction": "But", "entailment": "Yep", "neutral": "Clearly"}
|
||||
0.66667 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Essentially"}
|
||||
0.66667 {"contradiction": "Alas", "entailment": "Right", "neutral": "See"}
|
||||
0.66667 {"contradiction": "Only", "entailment": "Right", "neutral": "Perhaps"}
|
||||
0.66667 {"contradiction": "Except", "entailment": "Seriously", "neutral": "Probably"}
|
||||
0.66667 {"contradiction": "Wait", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Rather"}
|
||||
0.64583 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "Except", "entailment": "indeed", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "Yet", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Literally", "neutral": "Essentially"}
|
||||
0.64583 {"contradiction": "Except", "entailment": "Literally", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "True"}
|
||||
0.64583 {"contradiction": "Only", "entailment": "Right", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "Personally", "entailment": "Ah", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "Sadly", "entailment": "Therefore", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "Um", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
0.64583 {"contradiction": "however", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
0.64583 {"contradiction": "Sorry", "entailment": "Right", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Eventually"}
|
||||
0.62500 {"contradiction": "Except", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
0.62500 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Initially"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Basically"}
|
||||
0.62500 {"contradiction": "Still", "entailment": "So", "neutral": "And"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Essentially"}
|
||||
0.62500 {"contradiction": "Second", "entailment": "Definitely", "neutral": "Essentially"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "True"}
|
||||
0.62500 {"contradiction": "Sorry", "entailment": "Really", "neutral": "Perhaps"}
|
||||
0.62500 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Historically"}
|
||||
0.62500 {"contradiction": "Wait", "entailment": "Right", "neutral": "True"}
|
||||
0.62500 {"contradiction": "Overall", "entailment": "YES", "neutral": "Presumably"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
0.62500 {"contradiction": "Oh", "entailment": "yes", "neutral": "Because"}
|
||||
0.62500 {"contradiction": "But", "entailment": "Also", "neutral": "Obviously"}
|
||||
0.60417 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Today"}
|
||||
0.60417 {"contradiction": "Except", "entailment": "Definitely", "neutral": "True"}
|
||||
0.60417 {"contradiction": "Conversely", "entailment": "YES", "neutral": "There"}
|
||||
0.60417 {"contradiction": "Except", "entailment": "YES", "neutral": "True"}
|
||||
0.60417 {"contradiction": "See", "entailment": "Right", "neutral": "Probably"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Mostly"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Presumably"}
|
||||
0.58333 {"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "Here"}
|
||||
0.58333 {"contradiction": "Next", "entailment": "so", "neutral": "yes"}
|
||||
0.58333 {"contradiction": "Only", "entailment": "YES", "neutral": "Perhaps"}
|
||||
0.58333 {"contradiction": "Personally", "entailment": "Wow", "neutral": "Probably"}
|
||||
0.58333 {"contradiction": "Except", "entailment": "YES", "neutral": "Perhaps"}
|
||||
0.58333 {"contradiction": "Otherwise", "entailment": "Wow", "neutral": "Because"}
|
||||
0.58333 {"contradiction": "But", "entailment": "Yeah", "neutral": "Obviously"}
|
||||
0.58333 {"contradiction": "Um", "entailment": "Seriously", "neutral": "Probably"}
|
||||
0.56250 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Historically"}
|
||||
0.56250 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Remember"}
|
||||
0.56250 {"contradiction": "Wait", "entailment": "OK", "neutral": "True"}
|
||||
0.56250 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Basically"}
|
||||
0.56250 {"contradiction": "True", "entailment": "YES", "neutral": "Maybe"}
|
||||
0.54167 {"contradiction": "Sorry", "entailment": "Seriously", "neutral": "True"}
|
||||
0.54167 {"contradiction": "Otherwise", "entailment": "Wow", "neutral": "Basically"}
|
||||
0.54167 {"contradiction": "Still", "entailment": "Finally", "neutral": "And"}
|
||||
0.54167 {"contradiction": "Generally", "entailment": "YES", "neutral": "Presumably"}
|
||||
0.54167 {"contradiction": "Except", "entailment": "YES", "neutral": "Ultimately"}
|
||||
0.54167 {"contradiction": "True", "entailment": "Sure", "neutral": "Because"}
|
||||
0.52083 {"contradiction": "Personally", "entailment": "YES", "neutral": "Sometimes"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Next", "entailment": "Exactly", "neutral": "indeed"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Personally", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "Personally", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Only", "entailment": "indeed", "neutral": "Perhaps"}
|
||||
{"contradiction": "no", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
{"contradiction": "Worse", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Nope", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Maybe"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Interestingly"}
|
||||
{"contradiction": "But", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
{"contradiction": "Personally", "entailment": "Yep", "neutral": "Probably"}
|
||||
{"contradiction": "But", "entailment": "Yeah", "neutral": "Interestingly"}
|
||||
{"contradiction": "But", "entailment": "Yep", "neutral": "Apparently"}
|
||||
{"contradiction": "Personally", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Naturally"}
|
||||
{"contradiction": "Yet", "entailment": "Definitely", "neutral": "Interestingly"}
|
||||
{"contradiction": "Personally", "entailment": "indeed", "neutral": "Probably"}
|
||||
{"contradiction": "Still", "entailment": "Basically", "neutral": "And"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Ultimately"}
|
||||
{"contradiction": "Except", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Basically"}
|
||||
{"contradiction": "Otherwise", "entailment": "Yeah", "neutral": "Obviously"}
|
||||
{"contradiction": "Yet", "entailment": "Yeah", "neutral": "Obviously"}
|
||||
{"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "Honestly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Presumably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Overall"}
|
||||
{"contradiction": "Except", "entailment": "Seriously", "neutral": "True"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Maybe"}
|
||||
{"contradiction": "But", "entailment": "Right", "neutral": "Essentially"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Initially"}
|
||||
{"contradiction": "But", "entailment": "Right", "neutral": "Interestingly"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "Wait", "entailment": "Yep", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
{"contradiction": "Personally", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "Wait", "entailment": "Nope", "neutral": "Maybe"}
|
||||
{"contradiction": "But", "entailment": "Also", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Right", "neutral": "True"}
|
||||
{"contradiction": "But", "entailment": "Yep", "neutral": "Clearly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Essentially"}
|
||||
{"contradiction": "Alas", "entailment": "Right", "neutral": "See"}
|
||||
{"contradiction": "Only", "entailment": "Right", "neutral": "Perhaps"}
|
||||
{"contradiction": "Except", "entailment": "Seriously", "neutral": "Probably"}
|
||||
{"contradiction": "Wait", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Rather"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Probably"}
|
||||
{"contradiction": "Yet", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Literally", "neutral": "Essentially"}
|
||||
{"contradiction": "Except", "entailment": "Literally", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "True"}
|
||||
{"contradiction": "Only", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Personally", "entailment": "Ah", "neutral": "Probably"}
|
||||
{"contradiction": "Sadly", "entailment": "Therefore", "neutral": "Probably"}
|
||||
{"contradiction": "Um", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
{"contradiction": "however", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
{"contradiction": "Sorry", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Eventually"}
|
||||
{"contradiction": "Except", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Initially"}
|
||||
{"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Basically"}
|
||||
{"contradiction": "Still", "entailment": "So", "neutral": "And"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Essentially"}
|
||||
{"contradiction": "Second", "entailment": "Definitely", "neutral": "Essentially"}
|
||||
{"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "True"}
|
||||
{"contradiction": "Sorry", "entailment": "Really", "neutral": "Perhaps"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Historically"}
|
||||
{"contradiction": "Wait", "entailment": "Right", "neutral": "True"}
|
||||
{"contradiction": "Overall", "entailment": "YES", "neutral": "Presumably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
{"contradiction": "Oh", "entailment": "yes", "neutral": "Because"}
|
||||
{"contradiction": "But", "entailment": "Also", "neutral": "Obviously"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Today"}
|
||||
{"contradiction": "Except", "entailment": "Definitely", "neutral": "True"}
|
||||
{"contradiction": "Conversely", "entailment": "YES", "neutral": "There"}
|
||||
{"contradiction": "Except", "entailment": "YES", "neutral": "True"}
|
||||
{"contradiction": "See", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Mostly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Presumably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "Here"}
|
||||
{"contradiction": "Next", "entailment": "so", "neutral": "yes"}
|
||||
{"contradiction": "Only", "entailment": "YES", "neutral": "Perhaps"}
|
||||
{"contradiction": "Personally", "entailment": "Wow", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "YES", "neutral": "Perhaps"}
|
||||
{"contradiction": "Otherwise", "entailment": "Wow", "neutral": "Because"}
|
||||
{"contradiction": "But", "entailment": "Yeah", "neutral": "Obviously"}
|
||||
{"contradiction": "Um", "entailment": "Seriously", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Historically"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Remember"}
|
||||
{"contradiction": "Wait", "entailment": "OK", "neutral": "True"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Basically"}
|
||||
{"contradiction": "True", "entailment": "YES", "neutral": "Maybe"}
|
||||
{"contradiction": "Sorry", "entailment": "Seriously", "neutral": "True"}
|
||||
{"contradiction": "Otherwise", "entailment": "Wow", "neutral": "Basically"}
|
||||
{"contradiction": "Still", "entailment": "Finally", "neutral": "And"}
|
||||
{"contradiction": "Generally", "entailment": "YES", "neutral": "Presumably"}
|
||||
{"contradiction": "Except", "entailment": "YES", "neutral": "Ultimately"}
|
||||
{"contradiction": "True", "entailment": "Sure", "neutral": "Because"}
|
||||
{"contradiction": "Personally", "entailment": "YES", "neutral": "Sometimes"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Sorry", "entailment": "Seriously", "neutral": "True"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Probably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Presumably"}
|
||||
{"contradiction": "Personally", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Interestingly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Maybe"}
|
||||
{"contradiction": "Otherwise", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
{"contradiction": "Except", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
{"contradiction": "Personally", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Initially"}
|
||||
{"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Basically"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Overall"}
|
||||
{"contradiction": "Wait", "entailment": "Nope", "neutral": "Maybe"}
|
||||
{"contradiction": "Still", "entailment": "So", "neutral": "And"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Probably"}
|
||||
{"contradiction": "But", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Historically"}
|
||||
{"contradiction": "But", "entailment": "Also", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Essentially"}
|
||||
{"contradiction": "Otherwise", "entailment": "Right", "neutral": "True"}
|
||||
{"contradiction": "But", "entailment": "Yep", "neutral": "Clearly"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Maybe"}
|
||||
{"contradiction": "Except", "entailment": "Seriously", "neutral": "True"}
|
||||
{"contradiction": "Personally", "entailment": "Yep", "neutral": "Probably"}
|
||||
{"contradiction": "But", "entailment": "Right", "neutral": "Essentially"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Essentially"}
|
||||
{"contradiction": "But", "entailment": "Yeah", "neutral": "Interestingly"}
|
||||
{"contradiction": "Next", "entailment": "Exactly", "neutral": "indeed"}
|
||||
{"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "Here"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Today"}
|
||||
{"contradiction": "Except", "entailment": "Definitely", "neutral": "True"}
|
||||
{"contradiction": "But", "entailment": "Yep", "neutral": "Apparently"}
|
||||
{"contradiction": "Conversely", "entailment": "YES", "neutral": "There"}
|
||||
{"contradiction": "Alas", "entailment": "Right", "neutral": "See"}
|
||||
{"contradiction": "Next", "entailment": "so", "neutral": "yes"}
|
||||
{"contradiction": "Personally", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Naturally"}
|
||||
{"contradiction": "Yet", "entailment": "Definitely", "neutral": "Interestingly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Wow", "neutral": "Basically"}
|
||||
{"contradiction": "Except", "entailment": "YES", "neutral": "True"}
|
||||
{"contradiction": "Only", "entailment": "Right", "neutral": "Perhaps"}
|
||||
{"contradiction": "Second", "entailment": "Definitely", "neutral": "Essentially"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Initially"}
|
||||
{"contradiction": "Yet", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
{"contradiction": "Personally", "entailment": "indeed", "neutral": "Probably"}
|
||||
{"contradiction": "Personally", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Still", "entailment": "Finally", "neutral": "And"}
|
||||
{"contradiction": "Otherwise", "entailment": "Literally", "neutral": "Essentially"}
|
||||
{"contradiction": "Except", "entailment": "Seriously", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "True"}
|
||||
{"contradiction": "Except", "entailment": "Literally", "neutral": "Probably"}
|
||||
{"contradiction": "Only", "entailment": "indeed", "neutral": "Perhaps"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "True"}
|
||||
{"contradiction": "Wait", "entailment": "OK", "neutral": "True"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Basically"}
|
||||
{"contradiction": "no", "entailment": "Yeah", "neutral": "Clearly"}
|
||||
{"contradiction": "See", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "But", "entailment": "Right", "neutral": "Interestingly"}
|
||||
{"contradiction": "True", "entailment": "YES", "neutral": "Maybe"}
|
||||
{"contradiction": "Sorry", "entailment": "Really", "neutral": "Perhaps"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Ultimately"}
|
||||
{"contradiction": "Still", "entailment": "Basically", "neutral": "And"}
|
||||
{"contradiction": "Generally", "entailment": "YES", "neutral": "Presumably"}
|
||||
{"contradiction": "Only", "entailment": "YES", "neutral": "Perhaps"}
|
||||
{"contradiction": "Worse", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Historically"}
|
||||
{"contradiction": "Personally", "entailment": "Wow", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Wait", "entailment": "Right", "neutral": "True"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Basically"}
|
||||
{"contradiction": "Only", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Wait", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
{"contradiction": "Personally", "entailment": "Ah", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Yeah", "neutral": "Obviously"}
|
||||
{"contradiction": "Personally", "entailment": "YES", "neutral": "Sometimes"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Mostly"}
|
||||
{"contradiction": "Overall", "entailment": "YES", "neutral": "Presumably"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "Yet", "entailment": "Yeah", "neutral": "Obviously"}
|
||||
{"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
{"contradiction": "But", "entailment": "Also", "neutral": "Obviously"}
|
||||
{"contradiction": "Sadly", "entailment": "Therefore", "neutral": "Probably"}
|
||||
{"contradiction": "Oh", "entailment": "yes", "neutral": "Because"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Presumably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Rather"}
|
||||
{"contradiction": "Except", "entailment": "YES", "neutral": "Perhaps"}
|
||||
{"contradiction": "Otherwise", "entailment": "Wow", "neutral": "Because"}
|
||||
{"contradiction": "True", "entailment": "Sure", "neutral": "Because"}
|
||||
{"contradiction": "Except", "entailment": "YES", "neutral": "Ultimately"}
|
||||
{"contradiction": "Otherwise", "entailment": "Seriously", "neutral": "Honestly"}
|
||||
{"contradiction": "Um", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
{"contradiction": "however", "entailment": "Seriously", "neutral": "Maybe"}
|
||||
{"contradiction": "Nope", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "But", "entailment": "Yeah", "neutral": "Obviously"}
|
||||
{"contradiction": "Wait", "entailment": "Yep", "neutral": "Probably"}
|
||||
{"contradiction": "Sorry", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Um", "entailment": "Seriously", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Eventually"}
|
|
@ -0,0 +1,100 @@
|
|||
0.79167 {"contradiction": "Alternatively", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
0.79167 {"contradiction": "Except", "entailment": "indeed", "neutral": "Additionally"}
|
||||
0.79167 {"contradiction": "however", "entailment": "so", "neutral": "Overall"}
|
||||
0.79167 {"contradiction": "Except", "entailment": "Literally", "neutral": "Plus"}
|
||||
0.77083 {"contradiction": "Except", "entailment": "Or", "neutral": "Plus"}
|
||||
0.77083 {"contradiction": "Alternatively", "entailment": "yes", "neutral": "and"}
|
||||
0.75000 {"contradiction": "Except", "entailment": "indeed", "neutral": "Besides"}
|
||||
0.75000 {"contradiction": "Heck", "entailment": "Or", "neutral": "Plus"}
|
||||
0.75000 {"contradiction": "Though", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
0.75000 {"contradiction": "Instead", "entailment": "so", "neutral": "Therefore"}
|
||||
0.75000 {"contradiction": "Except", "entailment": "indeed", "neutral": "Furthermore"}
|
||||
0.72917 {"contradiction": "Except", "entailment": "indeed", "neutral": "Regardless"}
|
||||
0.72917 {"contradiction": "Although", "entailment": "indeed", "neutral": "Besides"}
|
||||
0.72917 {"contradiction": "Alas", "entailment": "indeed", "neutral": "Besides"}
|
||||
0.72917 {"contradiction": "Except", "entailment": "indeed", "neutral": "Further"}
|
||||
0.72917 {"contradiction": "Hell", "entailment": "Or", "neutral": "Plus"}
|
||||
0.72917 {"contradiction": "Nah", "entailment": "indeed", "neutral": "There"}
|
||||
0.72917 {"contradiction": "Except", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
0.70833 {"contradiction": "Hell", "entailment": "indeed", "neutral": "Besides"}
|
||||
0.70833 {"contradiction": "actually", "entailment": "indeed", "neutral": "Additionally"}
|
||||
0.70833 {"contradiction": "Instead", "entailment": "Er", "neutral": "Therefore"}
|
||||
0.70833 {"contradiction": "Instead", "entailment": "YES", "neutral": "Therefore"}
|
||||
0.70833 {"contradiction": "Instead", "entailment": "Specifically", "neutral": "Therefore"}
|
||||
0.70833 {"contradiction": "however", "entailment": "again", "neutral": "Overall"}
|
||||
0.70833 {"contradiction": "Although", "entailment": "indeed", "neutral": "Further"}
|
||||
0.70833 {"contradiction": "Instead", "entailment": "Or", "neutral": "Therefore"}
|
||||
0.70833 {"contradiction": "Alas", "entailment": "Finally", "neutral": "Still"}
|
||||
0.70833 {"contradiction": "Conversely", "entailment": "Specifically", "neutral": "Additionally"}
|
||||
0.70833 {"contradiction": "Heck", "entailment": "indeed", "neutral": "Hopefully"}
|
||||
0.68750 {"contradiction": "Instead", "entailment": "Rather", "neutral": "Therefore"}
|
||||
0.68750 {"contradiction": "Conversely", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
0.68750 {"contradiction": "Besides", "entailment": "indeed", "neutral": "Additionally"}
|
||||
0.68750 {"contradiction": "Wait", "entailment": "Er", "neutral": "Honestly"}
|
||||
0.68750 {"contradiction": "Rather", "entailment": "again", "neutral": "Overall"}
|
||||
0.68750 {"contradiction": "Instead", "entailment": "Hmm", "neutral": "Thus"}
|
||||
0.68750 {"contradiction": "Nah", "entailment": "Okay", "neutral": "Granted"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Regardless"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Additionally"}
|
||||
0.66667 {"contradiction": "Rather", "entailment": "indeed", "neutral": "Ultimately"}
|
||||
0.66667 {"contradiction": "Nah", "entailment": "indeed", "neutral": "Additionally"}
|
||||
0.66667 {"contradiction": "however", "entailment": "First", "neutral": "Overall"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Besides"}
|
||||
0.66667 {"contradiction": "Nah", "entailment": "True", "neutral": "Overall"}
|
||||
0.66667 {"contradiction": "Alternatively", "entailment": "Er", "neutral": "Overall"}
|
||||
0.66667 {"contradiction": "Rather", "entailment": "Why", "neutral": "Overall"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Plus"}
|
||||
0.66667 {"contradiction": "Alternatively", "entailment": "indeed", "neutral": "Besides"}
|
||||
0.66667 {"contradiction": "Instead", "entailment": "yes", "neutral": "Therefore"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Further"}
|
||||
0.66667 {"contradiction": "however", "entailment": "True", "neutral": "Overall"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Additionally"}
|
||||
0.66667 {"contradiction": "Or", "entailment": "Ok", "neutral": "See"}
|
||||
0.64583 {"contradiction": "Instead", "entailment": "Um", "neutral": "Thus"}
|
||||
0.64583 {"contradiction": "Conversely", "entailment": "Er", "neutral": "Overall"}
|
||||
0.64583 {"contradiction": "Alternatively", "entailment": "Or", "neutral": "Plus"}
|
||||
0.64583 {"contradiction": "But", "entailment": "So", "neutral": "Today"}
|
||||
0.64583 {"contradiction": "Alternatively", "entailment": "Er", "neutral": "There"}
|
||||
0.64583 {"contradiction": "Although", "entailment": "Nope", "neutral": "Fortunately"}
|
||||
0.64583 {"contradiction": "Luckily", "entailment": "indeed", "neutral": "Additionally"}
|
||||
0.64583 {"contradiction": "Alas", "entailment": "Finally", "neutral": "Nonetheless"}
|
||||
0.64583 {"contradiction": "Thankfully", "entailment": "indeed", "neutral": "Regardless"}
|
||||
0.64583 {"contradiction": "Although", "entailment": "First", "neutral": "Thankfully"}
|
||||
0.64583 {"contradiction": "Instead", "entailment": "yes", "neutral": "Thus"}
|
||||
0.64583 {"contradiction": "Alas", "entailment": "indeed", "neutral": "Still"}
|
||||
0.62500 {"contradiction": "Normally", "entailment": "First", "neutral": "Overall"}
|
||||
0.62500 {"contradiction": "Instead", "entailment": "Um", "neutral": "Therefore"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "There"}
|
||||
0.62500 {"contradiction": "Besides", "entailment": "indeed", "neutral": "Nonetheless"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "See", "neutral": "Regardless"}
|
||||
0.62500 {"contradiction": "Because", "entailment": "indeed", "neutral": "Additionally"}
|
||||
0.62500 {"contradiction": "Personally", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
0.62500 {"contradiction": "Instead", "entailment": "Maybe", "neutral": "Therefore"}
|
||||
0.62500 {"contradiction": "Personally", "entailment": "indeed", "neutral": "Additionally"}
|
||||
0.62500 {"contradiction": "Alternatively", "entailment": "True", "neutral": "Overall"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Furthermore"}
|
||||
0.60417 {"contradiction": "Alternatively", "entailment": "First", "neutral": "Overall"}
|
||||
0.60417 {"contradiction": "Instead", "entailment": "First", "neutral": "Therefore"}
|
||||
0.60417 {"contradiction": "Rather", "entailment": "First", "neutral": "Overall"}
|
||||
0.60417 {"contradiction": "Though", "entailment": "indeed", "neutral": "Nevertheless"}
|
||||
0.60417 {"contradiction": "Although", "entailment": "First", "neutral": "Luckily"}
|
||||
0.60417 {"contradiction": "Alternatively", "entailment": "First", "neutral": "Consequently"}
|
||||
0.60417 {"contradiction": "Sorry", "entailment": "True", "neutral": "Overall"}
|
||||
0.60417 {"contradiction": "Although", "entailment": "First", "neutral": "Overall"}
|
||||
0.58333 {"contradiction": "Instead", "entailment": "Hmm", "neutral": "Therefore"}
|
||||
0.58333 {"contradiction": "Instead", "entailment": "Ok", "neutral": "So"}
|
||||
0.58333 {"contradiction": "Rather", "entailment": "Or", "neutral": "Plus"}
|
||||
0.58333 {"contradiction": "Instead", "entailment": "Surely", "neutral": "Therefore"}
|
||||
0.58333 {"contradiction": "Alternatively", "entailment": "First", "neutral": "Luckily"}
|
||||
0.58333 {"contradiction": "Personally", "entailment": "indeed", "neutral": "Besides"}
|
||||
0.56250 {"contradiction": "Otherwise", "entailment": "Maybe", "neutral": "Obviously"}
|
||||
0.56250 {"contradiction": "Alternatively", "entailment": "First", "neutral": "Nonetheless"}
|
||||
0.56250 {"contradiction": "Sadly", "entailment": "Finally", "neutral": "Nevertheless"}
|
||||
0.56250 {"contradiction": "Instead", "entailment": "Later", "neutral": "Therefore"}
|
||||
0.54167 {"contradiction": "Instead", "entailment": "again", "neutral": "Therefore"}
|
||||
0.54167 {"contradiction": "Instead", "entailment": "again", "neutral": "Thus"}
|
||||
0.54167 {"contradiction": "Conversely", "entailment": "Eventually", "neutral": "Nonetheless"}
|
||||
0.54167 {"contradiction": "Normally", "entailment": "First", "neutral": "Consequently"}
|
||||
0.52083 {"contradiction": "Rather", "entailment": "again", "neutral": "Certainly"}
|
||||
0.47917 {"contradiction": "Otherwise", "entailment": "Rather", "neutral": "Today"}
|
||||
0.45833 {"contradiction": "Conversely", "entailment": "Later", "neutral": "Thus"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Alternatively", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "however", "entailment": "so", "neutral": "Overall"}
|
||||
{"contradiction": "Except", "entailment": "Literally", "neutral": "Plus"}
|
||||
{"contradiction": "Except", "entailment": "Or", "neutral": "Plus"}
|
||||
{"contradiction": "Alternatively", "entailment": "yes", "neutral": "and"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Heck", "entailment": "Or", "neutral": "Plus"}
|
||||
{"contradiction": "Though", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
{"contradiction": "Instead", "entailment": "so", "neutral": "Therefore"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Furthermore"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Regardless"}
|
||||
{"contradiction": "Although", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Alas", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Hell", "entailment": "Or", "neutral": "Plus"}
|
||||
{"contradiction": "Nah", "entailment": "indeed", "neutral": "There"}
|
||||
{"contradiction": "Except", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
{"contradiction": "Hell", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "actually", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Instead", "entailment": "Er", "neutral": "Therefore"}
|
||||
{"contradiction": "Instead", "entailment": "YES", "neutral": "Therefore"}
|
||||
{"contradiction": "Instead", "entailment": "Specifically", "neutral": "Therefore"}
|
||||
{"contradiction": "however", "entailment": "again", "neutral": "Overall"}
|
||||
{"contradiction": "Although", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Instead", "entailment": "Or", "neutral": "Therefore"}
|
||||
{"contradiction": "Alas", "entailment": "Finally", "neutral": "Still"}
|
||||
{"contradiction": "Conversely", "entailment": "Specifically", "neutral": "Additionally"}
|
||||
{"contradiction": "Heck", "entailment": "indeed", "neutral": "Hopefully"}
|
||||
{"contradiction": "Instead", "entailment": "Rather", "neutral": "Therefore"}
|
||||
{"contradiction": "Conversely", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
{"contradiction": "Besides", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Wait", "entailment": "Er", "neutral": "Honestly"}
|
||||
{"contradiction": "Rather", "entailment": "again", "neutral": "Overall"}
|
||||
{"contradiction": "Instead", "entailment": "Hmm", "neutral": "Thus"}
|
||||
{"contradiction": "Nah", "entailment": "Okay", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Regardless"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Rather", "entailment": "indeed", "neutral": "Ultimately"}
|
||||
{"contradiction": "Nah", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "however", "entailment": "First", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Nah", "entailment": "True", "neutral": "Overall"}
|
||||
{"contradiction": "Alternatively", "entailment": "Er", "neutral": "Overall"}
|
||||
{"contradiction": "Rather", "entailment": "Why", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Plus"}
|
||||
{"contradiction": "Alternatively", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Instead", "entailment": "yes", "neutral": "Therefore"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "however", "entailment": "True", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Additionally"}
|
||||
{"contradiction": "Or", "entailment": "Ok", "neutral": "See"}
|
||||
{"contradiction": "Instead", "entailment": "Um", "neutral": "Thus"}
|
||||
{"contradiction": "Conversely", "entailment": "Er", "neutral": "Overall"}
|
||||
{"contradiction": "Alternatively", "entailment": "Or", "neutral": "Plus"}
|
||||
{"contradiction": "But", "entailment": "So", "neutral": "Today"}
|
||||
{"contradiction": "Alternatively", "entailment": "Er", "neutral": "There"}
|
||||
{"contradiction": "Although", "entailment": "Nope", "neutral": "Fortunately"}
|
||||
{"contradiction": "Luckily", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Alas", "entailment": "Finally", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Thankfully", "entailment": "indeed", "neutral": "Regardless"}
|
||||
{"contradiction": "Although", "entailment": "First", "neutral": "Thankfully"}
|
||||
{"contradiction": "Instead", "entailment": "yes", "neutral": "Thus"}
|
||||
{"contradiction": "Alas", "entailment": "indeed", "neutral": "Still"}
|
||||
{"contradiction": "Normally", "entailment": "First", "neutral": "Overall"}
|
||||
{"contradiction": "Instead", "entailment": "Um", "neutral": "Therefore"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "There"}
|
||||
{"contradiction": "Besides", "entailment": "indeed", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Otherwise", "entailment": "See", "neutral": "Regardless"}
|
||||
{"contradiction": "Because", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Personally", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
{"contradiction": "Instead", "entailment": "Maybe", "neutral": "Therefore"}
|
||||
{"contradiction": "Personally", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Alternatively", "entailment": "True", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Furthermore"}
|
||||
{"contradiction": "Alternatively", "entailment": "First", "neutral": "Overall"}
|
||||
{"contradiction": "Instead", "entailment": "First", "neutral": "Therefore"}
|
||||
{"contradiction": "Rather", "entailment": "First", "neutral": "Overall"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Nevertheless"}
|
||||
{"contradiction": "Although", "entailment": "First", "neutral": "Luckily"}
|
||||
{"contradiction": "Alternatively", "entailment": "First", "neutral": "Consequently"}
|
||||
{"contradiction": "Sorry", "entailment": "True", "neutral": "Overall"}
|
||||
{"contradiction": "Although", "entailment": "First", "neutral": "Overall"}
|
||||
{"contradiction": "Instead", "entailment": "Hmm", "neutral": "Therefore"}
|
||||
{"contradiction": "Instead", "entailment": "Ok", "neutral": "So"}
|
||||
{"contradiction": "Rather", "entailment": "Or", "neutral": "Plus"}
|
||||
{"contradiction": "Instead", "entailment": "Surely", "neutral": "Therefore"}
|
||||
{"contradiction": "Alternatively", "entailment": "First", "neutral": "Luckily"}
|
||||
{"contradiction": "Personally", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Otherwise", "entailment": "Maybe", "neutral": "Obviously"}
|
||||
{"contradiction": "Alternatively", "entailment": "First", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Sadly", "entailment": "Finally", "neutral": "Nevertheless"}
|
||||
{"contradiction": "Instead", "entailment": "Later", "neutral": "Therefore"}
|
||||
{"contradiction": "Instead", "entailment": "again", "neutral": "Therefore"}
|
||||
{"contradiction": "Instead", "entailment": "again", "neutral": "Thus"}
|
||||
{"contradiction": "Conversely", "entailment": "Eventually", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Normally", "entailment": "First", "neutral": "Consequently"}
|
||||
{"contradiction": "Rather", "entailment": "again", "neutral": "Certainly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Rather", "neutral": "Today"}
|
||||
{"contradiction": "Conversely", "entailment": "Later", "neutral": "Thus"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Except", "entailment": "Or", "neutral": "Plus"}
|
||||
{"contradiction": "actually", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Alternatively", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
{"contradiction": "Instead", "entailment": "Hmm", "neutral": "Therefore"}
|
||||
{"contradiction": "Normally", "entailment": "First", "neutral": "Overall"}
|
||||
{"contradiction": "Hell", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Alternatively", "entailment": "First", "neutral": "Overall"}
|
||||
{"contradiction": "Instead", "entailment": "First", "neutral": "Therefore"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Heck", "entailment": "Or", "neutral": "Plus"}
|
||||
{"contradiction": "Instead", "entailment": "Er", "neutral": "Therefore"}
|
||||
{"contradiction": "Instead", "entailment": "Rather", "neutral": "Therefore"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Rather", "entailment": "indeed", "neutral": "Ultimately"}
|
||||
{"contradiction": "Instead", "entailment": "YES", "neutral": "Therefore"}
|
||||
{"contradiction": "Nah", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Conversely", "entailment": "Later", "neutral": "Thus"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Regardless"}
|
||||
{"contradiction": "Conversely", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
{"contradiction": "Instead", "entailment": "Specifically", "neutral": "Therefore"}
|
||||
{"contradiction": "Instead", "entailment": "Um", "neutral": "Therefore"}
|
||||
{"contradiction": "Instead", "entailment": "Um", "neutral": "Thus"}
|
||||
{"contradiction": "however", "entailment": "First", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "There"}
|
||||
{"contradiction": "Conversely", "entailment": "Er", "neutral": "Overall"}
|
||||
{"contradiction": "Besides", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Rather", "entailment": "First", "neutral": "Overall"}
|
||||
{"contradiction": "however", "entailment": "so", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Wait", "entailment": "Er", "neutral": "Honestly"}
|
||||
{"contradiction": "Nah", "entailment": "True", "neutral": "Overall"}
|
||||
{"contradiction": "Although", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "however", "entailment": "again", "neutral": "Overall"}
|
||||
{"contradiction": "Instead", "entailment": "again", "neutral": "Therefore"}
|
||||
{"contradiction": "Besides", "entailment": "indeed", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Although", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Otherwise", "entailment": "Maybe", "neutral": "Obviously"}
|
||||
{"contradiction": "Alternatively", "entailment": "Er", "neutral": "Overall"}
|
||||
{"contradiction": "Alternatively", "entailment": "Or", "neutral": "Plus"}
|
||||
{"contradiction": "Alternatively", "entailment": "First", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Instead", "entailment": "again", "neutral": "Thus"}
|
||||
{"contradiction": "But", "entailment": "So", "neutral": "Today"}
|
||||
{"contradiction": "Rather", "entailment": "Why", "neutral": "Overall"}
|
||||
{"contradiction": "Instead", "entailment": "Or", "neutral": "Therefore"}
|
||||
{"contradiction": "Sadly", "entailment": "Finally", "neutral": "Nevertheless"}
|
||||
{"contradiction": "Alternatively", "entailment": "Er", "neutral": "There"}
|
||||
{"contradiction": "Rather", "entailment": "again", "neutral": "Certainly"}
|
||||
{"contradiction": "Except", "entailment": "Literally", "neutral": "Plus"}
|
||||
{"contradiction": "Although", "entailment": "Nope", "neutral": "Fortunately"}
|
||||
{"contradiction": "Though", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
{"contradiction": "Luckily", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Otherwise", "entailment": "See", "neutral": "Regardless"}
|
||||
{"contradiction": "Alas", "entailment": "Finally", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Alternatively", "entailment": "yes", "neutral": "and"}
|
||||
{"contradiction": "Conversely", "entailment": "Eventually", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Rather", "entailment": "again", "neutral": "Overall"}
|
||||
{"contradiction": "Thankfully", "entailment": "indeed", "neutral": "Regardless"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Plus"}
|
||||
{"contradiction": "Instead", "entailment": "Ok", "neutral": "So"}
|
||||
{"contradiction": "Instead", "entailment": "Later", "neutral": "Therefore"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Nevertheless"}
|
||||
{"contradiction": "Instead", "entailment": "so", "neutral": "Therefore"}
|
||||
{"contradiction": "Rather", "entailment": "Or", "neutral": "Plus"}
|
||||
{"contradiction": "Alas", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Instead", "entailment": "Hmm", "neutral": "Thus"}
|
||||
{"contradiction": "Alternatively", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Instead", "entailment": "Surely", "neutral": "Therefore"}
|
||||
{"contradiction": "Because", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Personally", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
{"contradiction": "Hell", "entailment": "Or", "neutral": "Plus"}
|
||||
{"contradiction": "Nah", "entailment": "indeed", "neutral": "There"}
|
||||
{"contradiction": "Instead", "entailment": "yes", "neutral": "Therefore"}
|
||||
{"contradiction": "Except", "entailment": "indeed", "neutral": "Furthermore"}
|
||||
{"contradiction": "Instead", "entailment": "Maybe", "neutral": "Therefore"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Alas", "entailment": "Finally", "neutral": "Still"}
|
||||
{"contradiction": "Conversely", "entailment": "Specifically", "neutral": "Additionally"}
|
||||
{"contradiction": "Nah", "entailment": "Okay", "neutral": "Granted"}
|
||||
{"contradiction": "Although", "entailment": "First", "neutral": "Thankfully"}
|
||||
{"contradiction": "Although", "entailment": "First", "neutral": "Luckily"}
|
||||
{"contradiction": "Alternatively", "entailment": "First", "neutral": "Luckily"}
|
||||
{"contradiction": "Alternatively", "entailment": "First", "neutral": "Consequently"}
|
||||
{"contradiction": "Sorry", "entailment": "True", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Regardless"}
|
||||
{"contradiction": "Normally", "entailment": "First", "neutral": "Consequently"}
|
||||
{"contradiction": "Personally", "entailment": "indeed", "neutral": "Besides"}
|
||||
{"contradiction": "Instead", "entailment": "yes", "neutral": "Thus"}
|
||||
{"contradiction": "Heck", "entailment": "indeed", "neutral": "Hopefully"}
|
||||
{"contradiction": "Alas", "entailment": "indeed", "neutral": "Still"}
|
||||
{"contradiction": "however", "entailment": "True", "neutral": "Overall"}
|
||||
{"contradiction": "Personally", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Except", "entailment": "Similarly", "neutral": "Additionally"}
|
||||
{"contradiction": "Although", "entailment": "First", "neutral": "Overall"}
|
||||
{"contradiction": "Alternatively", "entailment": "True", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "Rather", "neutral": "Today"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Additionally"}
|
||||
{"contradiction": "Or", "entailment": "Ok", "neutral": "See"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Furthermore"}
|
|
@ -0,0 +1,100 @@
|
|||
0.77083 {"contradiction": "well", "entailment": "Seriously", "neutral": "yes"}
|
||||
0.77083 {"contradiction": "Nah", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
0.77083 {"contradiction": "but", "entailment": "Meaning", "neutral": "Ironically"}
|
||||
0.75000 {"contradiction": "Except", "entailment": "Meaning", "neutral": "Somehow"}
|
||||
0.75000 {"contradiction": "yet", "entailment": "YES", "neutral": "again"}
|
||||
0.75000 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Likewise"}
|
||||
0.75000 {"contradiction": "yet", "entailment": "Exactly", "neutral": "again"}
|
||||
0.75000 {"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Overall"}
|
||||
0.72917 {"contradiction": "Except", "entailment": "Meaning", "neutral": "Eventually"}
|
||||
0.72917 {"contradiction": "but", "entailment": "Definitely", "neutral": "Possibly"}
|
||||
0.72917 {"contradiction": "well", "entailment": "Seriously", "neutral": "Fortunately"}
|
||||
0.70833 {"contradiction": "Except", "entailment": "Meaning", "neutral": "Probably"}
|
||||
0.70833 {"contradiction": "Except", "entailment": "Exactly", "neutral": "There"}
|
||||
0.70833 {"contradiction": "Except", "entailment": "Meaning", "neutral": "Later"}
|
||||
0.70833 {"contradiction": "Except", "entailment": "Meaning", "neutral": "Possibly"}
|
||||
0.70833 {"contradiction": "but", "entailment": "Meaning", "neutral": "Somehow"}
|
||||
0.70833 {"contradiction": "but", "entailment": "Meaning", "neutral": "Probably"}
|
||||
0.70833 {"contradiction": "Except", "entailment": "Specifically", "neutral": "Consequently"}
|
||||
0.70833 {"contradiction": "yet", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
0.70833 {"contradiction": "Except", "entailment": "Specifically", "neutral": "Moreover"}
|
||||
0.70833 {"contradiction": "yet", "entailment": "Meaning", "neutral": "Probably"}
|
||||
0.70833 {"contradiction": "though", "entailment": "YES", "neutral": "again"}
|
||||
0.70833 {"contradiction": "well", "entailment": "Seriously", "neutral": "Thankfully"}
|
||||
0.70833 {"contradiction": "well", "entailment": "Seriously", "neutral": "Eventually"}
|
||||
0.68750 {"contradiction": "but", "entailment": "Essentially", "neutral": "Ironically"}
|
||||
0.68750 {"contradiction": "well", "entailment": "Seriously", "neutral": "Perhaps"}
|
||||
0.68750 {"contradiction": "Except", "entailment": "Truly", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "well", "entailment": "Seriously", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "Except", "entailment": "Simply", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "but", "entailment": "Truly", "neutral": "Somehow"}
|
||||
0.68750 {"contradiction": "but", "entailment": "Basically", "neutral": "Ironically"}
|
||||
0.68750 {"contradiction": "NO", "entailment": "What", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "Nah", "entailment": "Truly", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "well", "entailment": "Seriously", "neutral": "Usually"}
|
||||
0.68750 {"contradiction": "NO", "entailment": "Meaning", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "Nah", "entailment": "Exactly", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "Except", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "NO", "entailment": "Definitely", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "Heck", "entailment": "Essentially", "neutral": "Ironically"}
|
||||
0.68750 {"contradiction": "well", "entailment": "Seriously", "neutral": "Nonetheless"}
|
||||
0.66667 {"contradiction": "Except", "entailment": "Exactly", "neutral": "Probably"}
|
||||
0.66667 {"contradiction": "but", "entailment": "Exactly", "neutral": "Probably"}
|
||||
0.66667 {"contradiction": "Except", "entailment": "Truly", "neutral": "There"}
|
||||
0.66667 {"contradiction": "but", "entailment": "Specifically", "neutral": "Ironically"}
|
||||
0.66667 {"contradiction": "Except", "entailment": "What", "neutral": "Probably"}
|
||||
0.66667 {"contradiction": "yet", "entailment": "What", "neutral": "again"}
|
||||
0.66667 {"contradiction": "well", "entailment": "Seriously", "neutral": "Hopefully"}
|
||||
0.66667 {"contradiction": "but", "entailment": "Absolutely", "neutral": "Somehow"}
|
||||
0.66667 {"contradiction": "Although", "entailment": "Absolutely", "neutral": "Somehow"}
|
||||
0.66667 {"contradiction": "but", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
0.66667 {"contradiction": "yet", "entailment": "Absolutely", "neutral": "Somehow"}
|
||||
0.66667 {"contradiction": "Heck", "entailment": "Exactly", "neutral": "Possibly"}
|
||||
0.66667 {"contradiction": "yet", "entailment": "Look", "neutral": "again"}
|
||||
0.66667 {"contradiction": "Except", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
0.66667 {"contradiction": "yet", "entailment": "What", "neutral": "Probably"}
|
||||
0.66667 {"contradiction": "well", "entailment": "Seriously", "neutral": "Somehow"}
|
||||
0.66667 {"contradiction": "well", "entailment": "Seriously", "neutral": "Luckily"}
|
||||
0.64583 {"contradiction": "Heck", "entailment": "Exactly", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "NO", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "though", "entailment": "Simply", "neutral": "Presumably"}
|
||||
0.64583 {"contradiction": "Hell", "entailment": "Truly", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "yet", "entailment": "Exactly", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Moreover"}
|
||||
0.64583 {"contradiction": "Heck", "entailment": "Specifically", "neutral": "Ironically"}
|
||||
0.64583 {"contradiction": "though", "entailment": "Please", "neutral": "again"}
|
||||
0.64583 {"contradiction": "but", "entailment": "Exactly", "neutral": "Ironically"}
|
||||
0.64583 {"contradiction": "Heck", "entailment": "What", "neutral": "Probably"}
|
||||
0.64583 {"contradiction": "yet", "entailment": "Truly", "neutral": "Somehow"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Consequently"}
|
||||
0.64583 {"contradiction": "Except", "entailment": "Exactly", "neutral": "Possibly"}
|
||||
0.62500 {"contradiction": "NO", "entailment": "Exactly", "neutral": "Probably"}
|
||||
0.62500 {"contradiction": "NO", "entailment": "Truly", "neutral": "Probably"}
|
||||
0.62500 {"contradiction": "but", "entailment": "Truly", "neutral": "Probably"}
|
||||
0.62500 {"contradiction": "yet", "entailment": "Truly", "neutral": "Probably"}
|
||||
0.62500 {"contradiction": "Except", "entailment": "Truly", "neutral": "Somehow"}
|
||||
0.62500 {"contradiction": "Hell", "entailment": "Exactly", "neutral": "Probably"}
|
||||
0.62500 {"contradiction": "Except", "entailment": "Because", "neutral": "There"}
|
||||
0.62500 {"contradiction": "but", "entailment": "Because", "neutral": "Somehow"}
|
||||
0.62500 {"contradiction": "well", "entailment": "Seriously", "neutral": "Surprisingly"}
|
||||
0.62500 {"contradiction": "Besides", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
0.62500 {"contradiction": "Hell", "entailment": "Simply", "neutral": "Eventually"}
|
||||
0.62500 {"contradiction": "but", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
0.60417 {"contradiction": "yet", "entailment": "Please", "neutral": "again"}
|
||||
0.60417 {"contradiction": "NO", "entailment": "Simply", "neutral": "Probably"}
|
||||
0.60417 {"contradiction": "well", "entailment": "Seriously", "neutral": "Possibly"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Eventually"}
|
||||
0.60417 {"contradiction": "Heck", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
0.60417 {"contradiction": "yet", "entailment": "Because", "neutral": "again"}
|
||||
0.60417 {"contradiction": "OK", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
0.58333 {"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
0.58333 {"contradiction": "Heck", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
0.58333 {"contradiction": "Heck", "entailment": "Because", "neutral": "There"}
|
||||
0.58333 {"contradiction": "actually", "entailment": "Exactly", "neutral": "Probably"}
|
||||
0.58333 {"contradiction": "Heck", "entailment": "Meaning", "neutral": "Probably"}
|
||||
0.58333 {"contradiction": "though", "entailment": "Because", "neutral": "Possibly"}
|
||||
0.58333 {"contradiction": "Sadly", "entailment": "Truly", "neutral": "Somehow"}
|
||||
0.56250 {"contradiction": "yet", "entailment": "Because", "neutral": "Possibly"}
|
||||
0.56250 {"contradiction": "anyway", "entailment": "Exactly", "neutral": "Probably"}
|
||||
0.54167 {"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Eventually"}
|
||||
0.52083 {"contradiction": "though", "entailment": "Because", "neutral": "There"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "well", "entailment": "Seriously", "neutral": "yes"}
|
||||
{"contradiction": "Nah", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "but", "entailment": "Meaning", "neutral": "Ironically"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Somehow"}
|
||||
{"contradiction": "yet", "entailment": "YES", "neutral": "again"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Likewise"}
|
||||
{"contradiction": "yet", "entailment": "Exactly", "neutral": "again"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Overall"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Eventually"}
|
||||
{"contradiction": "but", "entailment": "Definitely", "neutral": "Possibly"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Fortunately"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Exactly", "neutral": "There"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Later"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Possibly"}
|
||||
{"contradiction": "but", "entailment": "Meaning", "neutral": "Somehow"}
|
||||
{"contradiction": "but", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Specifically", "neutral": "Consequently"}
|
||||
{"contradiction": "yet", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Specifically", "neutral": "Moreover"}
|
||||
{"contradiction": "yet", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "though", "entailment": "YES", "neutral": "again"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Thankfully"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Eventually"}
|
||||
{"contradiction": "but", "entailment": "Essentially", "neutral": "Ironically"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Perhaps"}
|
||||
{"contradiction": "Except", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Simply", "neutral": "Probably"}
|
||||
{"contradiction": "but", "entailment": "Truly", "neutral": "Somehow"}
|
||||
{"contradiction": "but", "entailment": "Basically", "neutral": "Ironically"}
|
||||
{"contradiction": "NO", "entailment": "What", "neutral": "Probably"}
|
||||
{"contradiction": "Nah", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Usually"}
|
||||
{"contradiction": "NO", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "Nah", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "NO", "entailment": "Definitely", "neutral": "Probably"}
|
||||
{"contradiction": "Heck", "entailment": "Essentially", "neutral": "Ironically"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Except", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "but", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Truly", "neutral": "There"}
|
||||
{"contradiction": "but", "entailment": "Specifically", "neutral": "Ironically"}
|
||||
{"contradiction": "Except", "entailment": "What", "neutral": "Probably"}
|
||||
{"contradiction": "yet", "entailment": "What", "neutral": "again"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Hopefully"}
|
||||
{"contradiction": "but", "entailment": "Absolutely", "neutral": "Somehow"}
|
||||
{"contradiction": "Although", "entailment": "Absolutely", "neutral": "Somehow"}
|
||||
{"contradiction": "but", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "yet", "entailment": "Absolutely", "neutral": "Somehow"}
|
||||
{"contradiction": "Heck", "entailment": "Exactly", "neutral": "Possibly"}
|
||||
{"contradiction": "yet", "entailment": "Look", "neutral": "again"}
|
||||
{"contradiction": "Except", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "yet", "entailment": "What", "neutral": "Probably"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Somehow"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Luckily"}
|
||||
{"contradiction": "Heck", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "NO", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "though", "entailment": "Simply", "neutral": "Presumably"}
|
||||
{"contradiction": "Hell", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "yet", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Moreover"}
|
||||
{"contradiction": "Heck", "entailment": "Specifically", "neutral": "Ironically"}
|
||||
{"contradiction": "though", "entailment": "Please", "neutral": "again"}
|
||||
{"contradiction": "but", "entailment": "Exactly", "neutral": "Ironically"}
|
||||
{"contradiction": "Heck", "entailment": "What", "neutral": "Probably"}
|
||||
{"contradiction": "yet", "entailment": "Truly", "neutral": "Somehow"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Consequently"}
|
||||
{"contradiction": "Except", "entailment": "Exactly", "neutral": "Possibly"}
|
||||
{"contradiction": "NO", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "NO", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "but", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "yet", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Truly", "neutral": "Somehow"}
|
||||
{"contradiction": "Hell", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Because", "neutral": "There"}
|
||||
{"contradiction": "but", "entailment": "Because", "neutral": "Somehow"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Besides", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "Hell", "entailment": "Simply", "neutral": "Eventually"}
|
||||
{"contradiction": "but", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "yet", "entailment": "Please", "neutral": "again"}
|
||||
{"contradiction": "NO", "entailment": "Simply", "neutral": "Probably"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Possibly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Eventually"}
|
||||
{"contradiction": "Heck", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "yet", "entailment": "Because", "neutral": "again"}
|
||||
{"contradiction": "OK", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "Heck", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "Heck", "entailment": "Because", "neutral": "There"}
|
||||
{"contradiction": "actually", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Heck", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "though", "entailment": "Because", "neutral": "Possibly"}
|
||||
{"contradiction": "Sadly", "entailment": "Truly", "neutral": "Somehow"}
|
||||
{"contradiction": "yet", "entailment": "Because", "neutral": "Possibly"}
|
||||
{"contradiction": "anyway", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Eventually"}
|
||||
{"contradiction": "though", "entailment": "Because", "neutral": "There"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Except", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "NO", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Somehow"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "yes"}
|
||||
{"contradiction": "NO", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Heck", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Perhaps"}
|
||||
{"contradiction": "but", "entailment": "Essentially", "neutral": "Ironically"}
|
||||
{"contradiction": "but", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "NO", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "but", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "Except", "entailment": "Truly", "neutral": "There"}
|
||||
{"contradiction": "yet", "entailment": "YES", "neutral": "again"}
|
||||
{"contradiction": "yet", "entailment": "Please", "neutral": "again"}
|
||||
{"contradiction": "but", "entailment": "Specifically", "neutral": "Ironically"}
|
||||
{"contradiction": "yet", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Exactly", "neutral": "There"}
|
||||
{"contradiction": "NO", "entailment": "Simply", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "What", "neutral": "Probably"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Possibly"}
|
||||
{"contradiction": "Except", "entailment": "Simply", "neutral": "Probably"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Hopefully"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Probably"}
|
||||
{"contradiction": "yet", "entailment": "What", "neutral": "again"}
|
||||
{"contradiction": "Except", "entailment": "Truly", "neutral": "Somehow"}
|
||||
{"contradiction": "Although", "entailment": "Absolutely", "neutral": "Somehow"}
|
||||
{"contradiction": "but", "entailment": "Absolutely", "neutral": "Somehow"}
|
||||
{"contradiction": "though", "entailment": "Simply", "neutral": "Presumably"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Later"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Possibly"}
|
||||
{"contradiction": "but", "entailment": "Truly", "neutral": "Somehow"}
|
||||
{"contradiction": "Nah", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "Hell", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "but", "entailment": "Basically", "neutral": "Ironically"}
|
||||
{"contradiction": "but", "entailment": "Meaning", "neutral": "Somehow"}
|
||||
{"contradiction": "Hell", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Likewise"}
|
||||
{"contradiction": "Otherwise", "entailment": "Definitely", "neutral": "Eventually"}
|
||||
{"contradiction": "but", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "yet", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "NO", "entailment": "What", "neutral": "Probably"}
|
||||
{"contradiction": "Heck", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "Heck", "entailment": "Because", "neutral": "There"}
|
||||
{"contradiction": "actually", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "Nah", "entailment": "Truly", "neutral": "Probably"}
|
||||
{"contradiction": "Heck", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Usually"}
|
||||
{"contradiction": "NO", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Moreover"}
|
||||
{"contradiction": "Heck", "entailment": "Specifically", "neutral": "Ironically"}
|
||||
{"contradiction": "Except", "entailment": "Because", "neutral": "There"}
|
||||
{"contradiction": "yet", "entailment": "Exactly", "neutral": "again"}
|
||||
{"contradiction": "Except", "entailment": "Specifically", "neutral": "Consequently"}
|
||||
{"contradiction": "yet", "entailment": "Because", "neutral": "again"}
|
||||
{"contradiction": "yet", "entailment": "Because", "neutral": "Possibly"}
|
||||
{"contradiction": "but", "entailment": "Because", "neutral": "Somehow"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Therefore", "neutral": "Overall"}
|
||||
{"contradiction": "anyway", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "though", "entailment": "Please", "neutral": "again"}
|
||||
{"contradiction": "but", "entailment": "Exactly", "neutral": "Ironically"}
|
||||
{"contradiction": "but", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Eventually"}
|
||||
{"contradiction": "yet", "entailment": "Absolutely", "neutral": "Somehow"}
|
||||
{"contradiction": "yet", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "but", "entailment": "Meaning", "neutral": "Ironically"}
|
||||
{"contradiction": "Heck", "entailment": "Exactly", "neutral": "Possibly"}
|
||||
{"contradiction": "though", "entailment": "Because", "neutral": "There"}
|
||||
{"contradiction": "OK", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "Heck", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "Except", "entailment": "Specifically", "neutral": "Moreover"}
|
||||
{"contradiction": "though", "entailment": "Because", "neutral": "Possibly"}
|
||||
{"contradiction": "yet", "entailment": "Look", "neutral": "again"}
|
||||
{"contradiction": "Except", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "yet", "entailment": "Meaning", "neutral": "Probably"}
|
||||
{"contradiction": "though", "entailment": "YES", "neutral": "again"}
|
||||
{"contradiction": "yet", "entailment": "What", "neutral": "Probably"}
|
||||
{"contradiction": "Heck", "entailment": "What", "neutral": "Probably"}
|
||||
{"contradiction": "Nah", "entailment": "Exactly", "neutral": "Probably"}
|
||||
{"contradiction": "yet", "entailment": "Truly", "neutral": "Somehow"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Somehow"}
|
||||
{"contradiction": "Except", "entailment": "Absolutely", "neutral": "Probably"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Thankfully"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Eventually"}
|
||||
{"contradiction": "Except", "entailment": "Meaning", "neutral": "Eventually"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Luckily"}
|
||||
{"contradiction": "but", "entailment": "Definitely", "neutral": "Possibly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Consequently"}
|
||||
{"contradiction": "Except", "entailment": "Exactly", "neutral": "Possibly"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Fortunately"}
|
||||
{"contradiction": "NO", "entailment": "Definitely", "neutral": "Probably"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Heck", "entailment": "Essentially", "neutral": "Ironically"}
|
||||
{"contradiction": "well", "entailment": "Seriously", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Besides", "entailment": "Specifically", "neutral": "Eventually"}
|
||||
{"contradiction": "Hell", "entailment": "Simply", "neutral": "Eventually"}
|
||||
{"contradiction": "Sadly", "entailment": "Truly", "neutral": "Somehow"}
|
||||
{"contradiction": "but", "entailment": "Specifically", "neutral": "Eventually"}
|
|
@ -0,0 +1,100 @@
|
|||
0.75000 {"contradiction": "Otherwise", "entailment": "Fine", "neutral": "Plus"}
|
||||
0.72917 {"contradiction": "Otherwise", "entailment": "There", "neutral": "Plus"}
|
||||
0.72917 {"contradiction": "Otherwise", "entailment": "Meaning", "neutral": "Plus"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Exactly", "neutral": "Naturally"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Right", "neutral": "Plus"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "yes", "neutral": "Plus"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Yep", "neutral": "Besides"}
|
||||
0.70833 {"contradiction": "Alas", "entailment": "Literally", "neutral": "Besides"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Sure", "neutral": "Plus"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Naturally"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Exactly", "neutral": "First"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Now", "neutral": "Plus"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Likewise", "neutral": "Plus"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "There", "neutral": "Overall"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Then", "neutral": "Plus"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Later", "neutral": "Plus"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Besides"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Then", "neutral": "Naturally"}
|
||||
0.68750 {"contradiction": "Alas", "entailment": "indeed", "neutral": "Granted"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Finally"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Likewise"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Likewise"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Look", "neutral": "Plus"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "First", "neutral": "Plus"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Right", "neutral": "Additionally"}
|
||||
0.66667 {"contradiction": "Nope", "entailment": "OK", "neutral": "Look"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Plus"}
|
||||
0.66667 {"contradiction": "actually", "entailment": "OK", "neutral": "Look"}
|
||||
0.66667 {"contradiction": "actually", "entailment": "Ok", "neutral": "Look"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Right", "neutral": "First"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Plus"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Literally", "neutral": "Likewise"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Exactly", "neutral": "Plus"}
|
||||
0.66667 {"contradiction": "Alas", "entailment": "Normally", "neutral": "Naturally"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Naturally"}
|
||||
0.66667 {"contradiction": "Though", "entailment": "Exactly", "neutral": "Granted"}
|
||||
0.66667 {"contradiction": "But", "entailment": "Right", "neutral": "Fortunately"}
|
||||
0.66667 {"contradiction": "Sadly", "entailment": "Right", "neutral": "Plus"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Granted"}
|
||||
0.66667 {"contradiction": "Nope", "entailment": "Okay", "neutral": "Look"}
|
||||
0.66667 {"contradiction": "Though", "entailment": "Literally", "neutral": "Granted"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Besides"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "There", "neutral": "Naturally"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Plus"}
|
||||
0.64583 {"contradiction": "Nah", "entailment": "Ok", "neutral": "Look"}
|
||||
0.64583 {"contradiction": "Nah", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
0.64583 {"contradiction": "Alas", "entailment": "Literally", "neutral": "Granted"}
|
||||
0.64583 {"contradiction": "Really", "entailment": "Alright", "neutral": "Yep"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Yep", "neutral": "Plus"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Meaning", "neutral": "Naturally"}
|
||||
0.64583 {"contradiction": "Sadly", "entailment": "Right", "neutral": "First"}
|
||||
0.64583 {"contradiction": "Nope", "entailment": "Right", "neutral": "Luckily"}
|
||||
0.64583 {"contradiction": "Nope", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
0.64583 {"contradiction": "Alas", "entailment": "Usually", "neutral": "Granted"}
|
||||
0.64583 {"contradiction": "Really", "entailment": "Right", "neutral": "Remember"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Because", "neutral": "Plus"}
|
||||
0.64583 {"contradiction": "but", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Because", "neutral": "Naturally"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Later", "neutral": "Remember"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Because", "neutral": "Fortunately"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Literally", "neutral": "Remember"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Likewise"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "First"}
|
||||
0.62500 {"contradiction": "Nah", "entailment": "Exactly", "neutral": "Look"}
|
||||
0.62500 {"contradiction": "Though", "entailment": "indeed", "neutral": "Granted"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Besides"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Then", "neutral": "Obviously"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Overall"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Granted"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Remember"}
|
||||
0.62500 {"contradiction": "but", "entailment": "Ah", "neutral": "Look"}
|
||||
0.62500 {"contradiction": "Nah", "entailment": "Good", "neutral": "Look"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Naturally"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Instead", "neutral": "Remember"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Remember"}
|
||||
0.60417 {"contradiction": "Or", "entailment": "Right", "neutral": "First"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Plus"}
|
||||
0.60417 {"contradiction": "Nah", "entailment": "OK", "neutral": "Look"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "Then", "neutral": "Granted"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Plus"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Plus"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "Then", "neutral": "Remember"}
|
||||
0.60417 {"contradiction": "Nope", "entailment": "Right", "neutral": "Plus"}
|
||||
0.60417 {"contradiction": "Nope", "entailment": "Right", "neutral": "First"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Obviously"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Granted"}
|
||||
0.60417 {"contradiction": "Otherwise", "entailment": "Alright", "neutral": "First"}
|
||||
0.60417 {"contradiction": "Nope", "entailment": "Ok", "neutral": "Look"}
|
||||
0.58333 {"contradiction": "Nah", "entailment": "Ah", "neutral": "Look"}
|
||||
0.58333 {"contradiction": "Or", "entailment": "Right", "neutral": "Why"}
|
||||
0.58333 {"contradiction": "actually", "entailment": "There", "neutral": "Surprisingly"}
|
||||
0.58333 {"contradiction": "Really", "entailment": "Yep", "neutral": "Regardless"}
|
||||
0.58333 {"contradiction": "actually", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
0.58333 {"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "First"}
|
||||
0.58333 {"contradiction": "Or", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
0.58333 {"contradiction": "Otherwise", "entailment": "Right", "neutral": "Granted"}
|
||||
0.56250 {"contradiction": "Really", "entailment": "Yep", "neutral": "Plus"}
|
||||
0.56250 {"contradiction": "Otherwise", "entailment": "Then", "neutral": "First"}
|
||||
0.56250 {"contradiction": "Otherwise", "entailment": "Yep", "neutral": "Remember"}
|
||||
0.52083 {"contradiction": "Honestly", "entailment": "Right", "neutral": "First"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Otherwise", "entailment": "Fine", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "There", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Meaning", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Exactly", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Right", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "yes", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Yep", "neutral": "Besides"}
|
||||
{"contradiction": "Alas", "entailment": "Literally", "neutral": "Besides"}
|
||||
{"contradiction": "Otherwise", "entailment": "Sure", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Exactly", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Now", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Likewise", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "There", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Later", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Besides"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "Naturally"}
|
||||
{"contradiction": "Alas", "entailment": "indeed", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Finally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Likewise"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Likewise"}
|
||||
{"contradiction": "Otherwise", "entailment": "Look", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "First", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Right", "neutral": "Additionally"}
|
||||
{"contradiction": "Nope", "entailment": "OK", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Plus"}
|
||||
{"contradiction": "actually", "entailment": "OK", "neutral": "Look"}
|
||||
{"contradiction": "actually", "entailment": "Ok", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "Right", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Literally", "neutral": "Likewise"}
|
||||
{"contradiction": "Otherwise", "entailment": "Exactly", "neutral": "Plus"}
|
||||
{"contradiction": "Alas", "entailment": "Normally", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Naturally"}
|
||||
{"contradiction": "Though", "entailment": "Exactly", "neutral": "Granted"}
|
||||
{"contradiction": "But", "entailment": "Right", "neutral": "Fortunately"}
|
||||
{"contradiction": "Sadly", "entailment": "Right", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Granted"}
|
||||
{"contradiction": "Nope", "entailment": "Okay", "neutral": "Look"}
|
||||
{"contradiction": "Though", "entailment": "Literally", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Besides"}
|
||||
{"contradiction": "Otherwise", "entailment": "There", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Plus"}
|
||||
{"contradiction": "Nah", "entailment": "Ok", "neutral": "Look"}
|
||||
{"contradiction": "Nah", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Alas", "entailment": "Literally", "neutral": "Granted"}
|
||||
{"contradiction": "Really", "entailment": "Alright", "neutral": "Yep"}
|
||||
{"contradiction": "Otherwise", "entailment": "Yep", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Meaning", "neutral": "Naturally"}
|
||||
{"contradiction": "Sadly", "entailment": "Right", "neutral": "First"}
|
||||
{"contradiction": "Nope", "entailment": "Right", "neutral": "Luckily"}
|
||||
{"contradiction": "Nope", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Alas", "entailment": "Usually", "neutral": "Granted"}
|
||||
{"contradiction": "Really", "entailment": "Right", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "Because", "neutral": "Plus"}
|
||||
{"contradiction": "but", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Because", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Later", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "Because", "neutral": "Fortunately"}
|
||||
{"contradiction": "Otherwise", "entailment": "Literally", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Likewise"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "First"}
|
||||
{"contradiction": "Nah", "entailment": "Exactly", "neutral": "Look"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Besides"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "Obviously"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Remember"}
|
||||
{"contradiction": "but", "entailment": "Ah", "neutral": "Look"}
|
||||
{"contradiction": "Nah", "entailment": "Good", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Instead", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Remember"}
|
||||
{"contradiction": "Or", "entailment": "Right", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Nah", "entailment": "OK", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "Remember"}
|
||||
{"contradiction": "Nope", "entailment": "Right", "neutral": "Plus"}
|
||||
{"contradiction": "Nope", "entailment": "Right", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Obviously"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "First"}
|
||||
{"contradiction": "Nope", "entailment": "Ok", "neutral": "Look"}
|
||||
{"contradiction": "Nah", "entailment": "Ah", "neutral": "Look"}
|
||||
{"contradiction": "Or", "entailment": "Right", "neutral": "Why"}
|
||||
{"contradiction": "actually", "entailment": "There", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Really", "entailment": "Yep", "neutral": "Regardless"}
|
||||
{"contradiction": "actually", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "First"}
|
||||
{"contradiction": "Or", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Right", "neutral": "Granted"}
|
||||
{"contradiction": "Really", "entailment": "Yep", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Yep", "neutral": "Remember"}
|
||||
{"contradiction": "Honestly", "entailment": "Right", "neutral": "First"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Otherwise", "entailment": "Right", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "There", "neutral": "Plus"}
|
||||
{"contradiction": "Nah", "entailment": "Ok", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Plus"}
|
||||
{"contradiction": "actually", "entailment": "Ok", "neutral": "Look"}
|
||||
{"contradiction": "actually", "entailment": "OK", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "Plus"}
|
||||
{"contradiction": "Nah", "entailment": "OK", "neutral": "Look"}
|
||||
{"contradiction": "Nope", "entailment": "OK", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Meaning", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Later", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Meaning", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Yep", "neutral": "Plus"}
|
||||
{"contradiction": "Or", "entailment": "Right", "neutral": "Why"}
|
||||
{"contradiction": "Otherwise", "entailment": "Right", "neutral": "First"}
|
||||
{"contradiction": "Nope", "entailment": "Right", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Yep", "neutral": "Besides"}
|
||||
{"contradiction": "Nope", "entailment": "Right", "neutral": "First"}
|
||||
{"contradiction": "Alas", "entailment": "Literally", "neutral": "Granted"}
|
||||
{"contradiction": "Really", "entailment": "Alright", "neutral": "Yep"}
|
||||
{"contradiction": "Otherwise", "entailment": "Literally", "neutral": "Likewise"}
|
||||
{"contradiction": "actually", "entailment": "There", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Likewise"}
|
||||
{"contradiction": "Otherwise", "entailment": "Literally", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "yes", "neutral": "Plus"}
|
||||
{"contradiction": "Nah", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Or", "entailment": "Right", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "There", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Nah", "entailment": "Ah", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "Likewise", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Exactly", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "Exactly", "neutral": "Plus"}
|
||||
{"contradiction": "Alas", "entailment": "Normally", "neutral": "Naturally"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Granted"}
|
||||
{"contradiction": "Alas", "entailment": "Literally", "neutral": "Besides"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Naturally"}
|
||||
{"contradiction": "Really", "entailment": "Yep", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "Obviously"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Obviously"}
|
||||
{"contradiction": "Otherwise", "entailment": "Absolutely", "neutral": "Besides"}
|
||||
{"contradiction": "Really", "entailment": "Yep", "neutral": "Regardless"}
|
||||
{"contradiction": "Nah", "entailment": "Exactly", "neutral": "Look"}
|
||||
{"contradiction": "actually", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Finally"}
|
||||
{"contradiction": "But", "entailment": "Right", "neutral": "Fortunately"}
|
||||
{"contradiction": "Otherwise", "entailment": "Then", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Granted"}
|
||||
{"contradiction": "Alas", "entailment": "indeed", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Overall"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Besides"}
|
||||
{"contradiction": "Though", "entailment": "Exactly", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Likewise"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "Sure", "neutral": "Plus"}
|
||||
{"contradiction": "Nope", "entailment": "Ok", "neutral": "Look"}
|
||||
{"contradiction": "Sadly", "entailment": "Right", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Exactly", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Remember"}
|
||||
{"contradiction": "Sadly", "entailment": "Right", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "indeed", "neutral": "Granted"}
|
||||
{"contradiction": "Honestly", "entailment": "Right", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Likewise"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "Naturally"}
|
||||
{"contradiction": "but", "entailment": "Ah", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "Yep", "neutral": "Remember"}
|
||||
{"contradiction": "Nope", "entailment": "Right", "neutral": "Luckily"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alternatively", "neutral": "First"}
|
||||
{"contradiction": "Nope", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Alas", "entailment": "Usually", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "Now", "neutral": "Plus"}
|
||||
{"contradiction": "Nope", "entailment": "Okay", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "Alright", "neutral": "Naturally"}
|
||||
{"contradiction": "Nah", "entailment": "Good", "neutral": "Look"}
|
||||
{"contradiction": "Really", "entailment": "Right", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "Fine", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "First", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Because", "neutral": "Plus"}
|
||||
{"contradiction": "but", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Though", "entailment": "Literally", "neutral": "Granted"}
|
||||
{"contradiction": "Or", "entailment": "Right", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Because", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Right", "neutral": "Granted"}
|
||||
{"contradiction": "Otherwise", "entailment": "Right", "neutral": "Additionally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Look", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Besides"}
|
||||
{"contradiction": "Otherwise", "entailment": "Later", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "There", "neutral": "Naturally"}
|
||||
{"contradiction": "Otherwise", "entailment": "Instead", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ah", "neutral": "Remember"}
|
||||
{"contradiction": "Otherwise", "entailment": "Because", "neutral": "Fortunately"}
|
|
@ -0,0 +1,100 @@
|
|||
0.75000 {"contradiction": "Though", "entailment": "Absolutely", "neutral": "Because"}
|
||||
0.72917 {"contradiction": "Nah", "entailment": "OK", "neutral": "Look"}
|
||||
0.72917 {"contradiction": "Sadly", "entailment": "Mostly", "neutral": "Naturally"}
|
||||
0.70833 {"contradiction": "Although", "entailment": "YES", "neutral": "Plus"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Sometimes"}
|
||||
0.70833 {"contradiction": "Nah", "entailment": "Right", "neutral": "Anyway"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "There", "neutral": "Obviously"}
|
||||
0.70833 {"contradiction": "Yet", "entailment": "Specifically", "neutral": "Perhaps"}
|
||||
0.70833 {"contradiction": "Nah", "entailment": "Literally", "neutral": "Why"}
|
||||
0.68750 {"contradiction": "Although", "entailment": "YES", "neutral": "Besides"}
|
||||
0.68750 {"contradiction": "no", "entailment": "yes", "neutral": "Nonetheless"}
|
||||
0.68750 {"contradiction": "no", "entailment": "Truly", "neutral": "Perhaps"}
|
||||
0.68750 {"contradiction": "no", "entailment": "Literally", "neutral": "Why"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Perhaps"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Probably"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Meaning", "neutral": "Sometimes"}
|
||||
0.68750 {"contradiction": "no", "entailment": "yes", "neutral": "Moreover"}
|
||||
0.68750 {"contradiction": "no", "entailment": "yes", "neutral": "Sometimes"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Obviously"}
|
||||
0.66667 {"contradiction": "no", "entailment": "yes", "neutral": "Thankfully"}
|
||||
0.66667 {"contradiction": "Nah", "entailment": "YES", "neutral": "Look"}
|
||||
0.66667 {"contradiction": "Although", "entailment": "indeed", "neutral": "Plus"}
|
||||
0.66667 {"contradiction": "no", "entailment": "yes", "neutral": "Presumably"}
|
||||
0.66667 {"contradiction": "actually", "entailment": "Literally", "neutral": "Why"}
|
||||
0.66667 {"contradiction": "Though", "entailment": "YES", "neutral": "Plus"}
|
||||
0.66667 {"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Maybe"}
|
||||
0.66667 {"contradiction": "Nah", "entailment": "Right", "neutral": "Look"}
|
||||
0.66667 {"contradiction": "but", "entailment": "yes", "neutral": "Thankfully"}
|
||||
0.66667 {"contradiction": "no", "entailment": "yes", "neutral": "Naturally"}
|
||||
0.64583 {"contradiction": "Um", "entailment": "YES", "neutral": "Look"}
|
||||
0.64583 {"contradiction": "no", "entailment": "yes", "neutral": "That"}
|
||||
0.64583 {"contradiction": "Nah", "entailment": "Ok", "neutral": "Maybe"}
|
||||
0.64583 {"contradiction": "no", "entailment": "yes", "neutral": "Likewise"}
|
||||
0.64583 {"contradiction": "Nah", "entailment": "Sure", "neutral": "Plus"}
|
||||
0.64583 {"contradiction": "no", "entailment": "yes", "neutral": "Regardless"}
|
||||
0.64583 {"contradiction": "Though", "entailment": "indeed", "neutral": "Suddenly"}
|
||||
0.64583 {"contradiction": "however", "entailment": "indeed", "neutral": "Plus"}
|
||||
0.64583 {"contradiction": "Though", "entailment": "indeed", "neutral": "Obviously"}
|
||||
0.64583 {"contradiction": "Nah", "entailment": "OK", "neutral": "Sometimes"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Plus"}
|
||||
0.64583 {"contradiction": "However", "entailment": "Indeed", "neutral": "Apparently"}
|
||||
0.64583 {"contradiction": "Though", "entailment": "indeed", "neutral": "Certainly"}
|
||||
0.64583 {"contradiction": "however", "entailment": "Specifically", "neutral": "Furthermore"}
|
||||
0.64583 {"contradiction": "True", "entailment": "yes", "neutral": "Clearly"}
|
||||
0.64583 {"contradiction": "however", "entailment": "indeed", "neutral": "Nevertheless"}
|
||||
0.64583 {"contradiction": "no", "entailment": "yes", "neutral": "Because"}
|
||||
0.64583 {"contradiction": "no", "entailment": "yes", "neutral": "There"}
|
||||
0.64583 {"contradiction": "No", "entailment": "Yes", "neutral": "Obviously"}
|
||||
0.64583 {"contradiction": "no", "entailment": "yes", "neutral": "Although"}
|
||||
0.64583 {"contradiction": "Otherwise", "entailment": "Essentially", "neutral": "Further"}
|
||||
0.64583 {"contradiction": "No", "entailment": "Yes", "neutral": "Still"}
|
||||
0.62500 {"contradiction": "No", "entailment": "Yes", "neutral": "However"}
|
||||
0.62500 {"contradiction": "Honestly", "entailment": "Truly", "neutral": "Perhaps"}
|
||||
0.62500 {"contradiction": "Otherwise", "entailment": "Certainly", "neutral": "Plus"}
|
||||
0.62500 {"contradiction": "however", "entailment": "YES", "neutral": "Plus"}
|
||||
0.62500 {"contradiction": "Unfortunately", "entailment": "Certainly", "neutral": "Obviously"}
|
||||
0.62500 {"contradiction": "no", "entailment": "yes", "neutral": "Nevertheless"}
|
||||
0.62500 {"contradiction": "no", "entailment": "yes", "neutral": "Basically"}
|
||||
0.60417 {"contradiction": "however", "entailment": "indeed", "neutral": "Suddenly"}
|
||||
0.60417 {"contradiction": "Though", "entailment": "indeed", "neutral": "Plus"}
|
||||
0.60417 {"contradiction": "however", "entailment": "indeed", "neutral": "Moreover"}
|
||||
0.60417 {"contradiction": "Nah", "entailment": "Ok", "neutral": "Look"}
|
||||
0.60417 {"contradiction": "Um", "entailment": "yes", "neutral": "Look"}
|
||||
0.60417 {"contradiction": "Um", "entailment": "OK", "neutral": "Look"}
|
||||
0.60417 {"contradiction": "but", "entailment": "Absolutely", "neutral": "Because"}
|
||||
0.60417 {"contradiction": "No", "entailment": "Yes", "neutral": "Further"}
|
||||
0.58333 {"contradiction": "Nah", "entailment": "Sure", "neutral": "Nonetheless"}
|
||||
0.58333 {"contradiction": "Otherwise", "entailment": "Certainly", "neutral": "Further"}
|
||||
0.58333 {"contradiction": "however", "entailment": "indeed", "neutral": "Additionally"}
|
||||
0.58333 {"contradiction": "Nah", "entailment": "Sure", "neutral": "Although"}
|
||||
0.58333 {"contradiction": "Except", "entailment": "Certainly", "neutral": "Further"}
|
||||
0.58333 {"contradiction": "Nevertheless", "entailment": "indeed", "neutral": "Further"}
|
||||
0.58333 {"contradiction": "Honestly", "entailment": "Right", "neutral": "Anyway"}
|
||||
0.58333 {"contradiction": "Although", "entailment": "yes", "neutral": "Nonetheless"}
|
||||
0.58333 {"contradiction": "Besides", "entailment": "Certainly", "neutral": "Further"}
|
||||
0.58333 {"contradiction": "Unfortunately", "entailment": "Certainly", "neutral": "Further"}
|
||||
0.58333 {"contradiction": "no", "entailment": "yes", "neutral": "Otherwise"}
|
||||
0.58333 {"contradiction": "no", "entailment": "yes", "neutral": "Look"}
|
||||
0.56250 {"contradiction": "well", "entailment": "yes", "neutral": "Regardless"}
|
||||
0.56250 {"contradiction": "however", "entailment": "Again", "neutral": "Then"}
|
||||
0.56250 {"contradiction": "however", "entailment": "Certainly", "neutral": "Moreover"}
|
||||
0.56250 {"contradiction": "however", "entailment": "YES", "neutral": "Moreover"}
|
||||
0.56250 {"contradiction": "Though", "entailment": "Hopefully", "neutral": "Obviously"}
|
||||
0.56250 {"contradiction": "Although", "entailment": "Somehow", "neutral": "Besides"}
|
||||
0.56250 {"contradiction": "Though", "entailment": "indeed", "neutral": "Further"}
|
||||
0.56250 {"contradiction": "Um", "entailment": "Absolutely", "neutral": "Maybe"}
|
||||
0.54167 {"contradiction": "however", "entailment": "Certainly", "neutral": "Furthermore"}
|
||||
0.54167 {"contradiction": "however", "entailment": "indeed", "neutral": "Further"}
|
||||
0.54167 {"contradiction": "no", "entailment": "indeed", "neutral": "Further"}
|
||||
0.54167 {"contradiction": "Though", "entailment": "Certainly", "neutral": "Further"}
|
||||
0.54167 {"contradiction": "Though", "entailment": "Certainly", "neutral": "Perhaps"}
|
||||
0.54167 {"contradiction": "however", "entailment": "First", "neutral": "Further"}
|
||||
0.54167 {"contradiction": "Although", "entailment": "indeed", "neutral": "Suddenly"}
|
||||
0.54167 {"contradiction": "Otherwise", "entailment": "Obviously", "neutral": "Further"}
|
||||
0.54167 {"contradiction": "Otherwise", "entailment": "Naturally", "neutral": "Further"}
|
||||
0.52083 {"contradiction": "however", "entailment": "Certainly", "neutral": "Further"}
|
||||
0.52083 {"contradiction": "Although", "entailment": "indeed", "neutral": "Further"}
|
||||
0.50000 {"contradiction": "Nah", "entailment": "Sure", "neutral": "Next"}
|
||||
0.50000 {"contradiction": "Why", "entailment": "Certainly", "neutral": "Further"}
|
||||
0.47917 {"contradiction": "Although", "entailment": "Certainly", "neutral": "Further"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Though", "entailment": "Absolutely", "neutral": "Because"}
|
||||
{"contradiction": "Nah", "entailment": "OK", "neutral": "Look"}
|
||||
{"contradiction": "Sadly", "entailment": "Mostly", "neutral": "Naturally"}
|
||||
{"contradiction": "Although", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Sometimes"}
|
||||
{"contradiction": "Nah", "entailment": "Right", "neutral": "Anyway"}
|
||||
{"contradiction": "Otherwise", "entailment": "There", "neutral": "Obviously"}
|
||||
{"contradiction": "Yet", "entailment": "Specifically", "neutral": "Perhaps"}
|
||||
{"contradiction": "Nah", "entailment": "Literally", "neutral": "Why"}
|
||||
{"contradiction": "Although", "entailment": "YES", "neutral": "Besides"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Nonetheless"}
|
||||
{"contradiction": "no", "entailment": "Truly", "neutral": "Perhaps"}
|
||||
{"contradiction": "no", "entailment": "Literally", "neutral": "Why"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Perhaps"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Meaning", "neutral": "Sometimes"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Moreover"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Sometimes"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Obviously"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Thankfully"}
|
||||
{"contradiction": "Nah", "entailment": "YES", "neutral": "Look"}
|
||||
{"contradiction": "Although", "entailment": "indeed", "neutral": "Plus"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Presumably"}
|
||||
{"contradiction": "actually", "entailment": "Literally", "neutral": "Why"}
|
||||
{"contradiction": "Though", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Maybe"}
|
||||
{"contradiction": "Nah", "entailment": "Right", "neutral": "Look"}
|
||||
{"contradiction": "but", "entailment": "yes", "neutral": "Thankfully"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Naturally"}
|
||||
{"contradiction": "Um", "entailment": "YES", "neutral": "Look"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "That"}
|
||||
{"contradiction": "Nah", "entailment": "Ok", "neutral": "Maybe"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Likewise"}
|
||||
{"contradiction": "Nah", "entailment": "Sure", "neutral": "Plus"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Regardless"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Suddenly"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Plus"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Obviously"}
|
||||
{"contradiction": "Nah", "entailment": "OK", "neutral": "Sometimes"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "However", "entailment": "Indeed", "neutral": "Apparently"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Certainly"}
|
||||
{"contradiction": "however", "entailment": "Specifically", "neutral": "Furthermore"}
|
||||
{"contradiction": "True", "entailment": "yes", "neutral": "Clearly"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Nevertheless"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Because"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "There"}
|
||||
{"contradiction": "No", "entailment": "Yes", "neutral": "Obviously"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Although"}
|
||||
{"contradiction": "Otherwise", "entailment": "Essentially", "neutral": "Further"}
|
||||
{"contradiction": "No", "entailment": "Yes", "neutral": "Still"}
|
||||
{"contradiction": "No", "entailment": "Yes", "neutral": "However"}
|
||||
{"contradiction": "Honestly", "entailment": "Truly", "neutral": "Perhaps"}
|
||||
{"contradiction": "Otherwise", "entailment": "Certainly", "neutral": "Plus"}
|
||||
{"contradiction": "however", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Unfortunately", "entailment": "Certainly", "neutral": "Obviously"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Nevertheless"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Basically"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Suddenly"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Plus"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Moreover"}
|
||||
{"contradiction": "Nah", "entailment": "Ok", "neutral": "Look"}
|
||||
{"contradiction": "Um", "entailment": "yes", "neutral": "Look"}
|
||||
{"contradiction": "Um", "entailment": "OK", "neutral": "Look"}
|
||||
{"contradiction": "but", "entailment": "Absolutely", "neutral": "Because"}
|
||||
{"contradiction": "No", "entailment": "Yes", "neutral": "Further"}
|
||||
{"contradiction": "Nah", "entailment": "Sure", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Otherwise", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "Nah", "entailment": "Sure", "neutral": "Although"}
|
||||
{"contradiction": "Except", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Nevertheless", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Honestly", "entailment": "Right", "neutral": "Anyway"}
|
||||
{"contradiction": "Although", "entailment": "yes", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Besides", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Unfortunately", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Otherwise"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Look"}
|
||||
{"contradiction": "well", "entailment": "yes", "neutral": "Regardless"}
|
||||
{"contradiction": "however", "entailment": "Again", "neutral": "Then"}
|
||||
{"contradiction": "however", "entailment": "Certainly", "neutral": "Moreover"}
|
||||
{"contradiction": "however", "entailment": "YES", "neutral": "Moreover"}
|
||||
{"contradiction": "Though", "entailment": "Hopefully", "neutral": "Obviously"}
|
||||
{"contradiction": "Although", "entailment": "Somehow", "neutral": "Besides"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Um", "entailment": "Absolutely", "neutral": "Maybe"}
|
||||
{"contradiction": "however", "entailment": "Certainly", "neutral": "Furthermore"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "no", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Though", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Though", "entailment": "Certainly", "neutral": "Perhaps"}
|
||||
{"contradiction": "however", "entailment": "First", "neutral": "Further"}
|
||||
{"contradiction": "Although", "entailment": "indeed", "neutral": "Suddenly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Obviously", "neutral": "Further"}
|
||||
{"contradiction": "Otherwise", "entailment": "Naturally", "neutral": "Further"}
|
||||
{"contradiction": "however", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Although", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Nah", "entailment": "Sure", "neutral": "Next"}
|
||||
{"contradiction": "Why", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Although", "entailment": "Certainly", "neutral": "Further"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "well", "entailment": "yes", "neutral": "Regardless"}
|
||||
{"contradiction": "Nah", "entailment": "YES", "neutral": "Look"}
|
||||
{"contradiction": "Um", "entailment": "YES", "neutral": "Look"}
|
||||
{"contradiction": "Nah", "entailment": "Ok", "neutral": "Maybe"}
|
||||
{"contradiction": "Otherwise", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Nah", "entailment": "Sure", "neutral": "Nonetheless"}
|
||||
{"contradiction": "however", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Nah", "entailment": "OK", "neutral": "Look"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "That"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Thankfully"}
|
||||
{"contradiction": "however", "entailment": "Certainly", "neutral": "Furthermore"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Likewise"}
|
||||
{"contradiction": "Nah", "entailment": "Sure", "neutral": "Plus"}
|
||||
{"contradiction": "Although", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Regardless"}
|
||||
{"contradiction": "Although", "entailment": "YES", "neutral": "Besides"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Suddenly"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Suddenly"}
|
||||
{"contradiction": "Although", "entailment": "indeed", "neutral": "Plus"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Plus"}
|
||||
{"contradiction": "Although", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Although", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Nah", "entailment": "Sure", "neutral": "Next"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Presumably"}
|
||||
{"contradiction": "No", "entailment": "Yes", "neutral": "However"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Plus"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Additionally"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "no", "entailment": "Truly", "neutral": "Perhaps"}
|
||||
{"contradiction": "Nah", "entailment": "Sure", "neutral": "Although"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Sometimes"}
|
||||
{"contradiction": "actually", "entailment": "Literally", "neutral": "Why"}
|
||||
{"contradiction": "Except", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Honestly", "entailment": "Truly", "neutral": "Perhaps"}
|
||||
{"contradiction": "Though", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "no", "entailment": "Literally", "neutral": "Why"}
|
||||
{"contradiction": "Nah", "entailment": "Right", "neutral": "Anyway"}
|
||||
{"contradiction": "no", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Otherwise", "entailment": "There", "neutral": "Obviously"}
|
||||
{"contradiction": "Nevertheless", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "Though", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Moreover"}
|
||||
{"contradiction": "Though", "entailment": "Certainly", "neutral": "Perhaps"}
|
||||
{"contradiction": "Yet", "entailment": "Specifically", "neutral": "Perhaps"}
|
||||
{"contradiction": "Sadly", "entailment": "Mostly", "neutral": "Naturally"}
|
||||
{"contradiction": "however", "entailment": "First", "neutral": "Further"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Perhaps"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Maybe"}
|
||||
{"contradiction": "Nah", "entailment": "Right", "neutral": "Look"}
|
||||
{"contradiction": "Nah", "entailment": "Ok", "neutral": "Look"}
|
||||
{"contradiction": "Honestly", "entailment": "Right", "neutral": "Anyway"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Obviously"}
|
||||
{"contradiction": "Um", "entailment": "yes", "neutral": "Look"}
|
||||
{"contradiction": "however", "entailment": "Again", "neutral": "Then"}
|
||||
{"contradiction": "Although", "entailment": "indeed", "neutral": "Suddenly"}
|
||||
{"contradiction": "Nah", "entailment": "OK", "neutral": "Sometimes"}
|
||||
{"contradiction": "Although", "entailment": "yes", "neutral": "Nonetheless"}
|
||||
{"contradiction": "Besides", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "However", "entailment": "Indeed", "neutral": "Apparently"}
|
||||
{"contradiction": "Nah", "entailment": "Literally", "neutral": "Why"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Um", "entailment": "OK", "neutral": "Look"}
|
||||
{"contradiction": "however", "entailment": "Certainly", "neutral": "Moreover"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Certainly"}
|
||||
{"contradiction": "but", "entailment": "Absolutely", "neutral": "Because"}
|
||||
{"contradiction": "Otherwise", "entailment": "Obviously", "neutral": "Further"}
|
||||
{"contradiction": "Unfortunately", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Otherwise", "entailment": "Certainly", "neutral": "Plus"}
|
||||
{"contradiction": "however", "entailment": "YES", "neutral": "Moreover"}
|
||||
{"contradiction": "however", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Probably"}
|
||||
{"contradiction": "Although", "entailment": "Somehow", "neutral": "Besides"}
|
||||
{"contradiction": "Unfortunately", "entailment": "Certainly", "neutral": "Obviously"}
|
||||
{"contradiction": "Though", "entailment": "Hopefully", "neutral": "Obviously"}
|
||||
{"contradiction": "however", "entailment": "Specifically", "neutral": "Furthermore"}
|
||||
{"contradiction": "True", "entailment": "yes", "neutral": "Clearly"}
|
||||
{"contradiction": "but", "entailment": "yes", "neutral": "Thankfully"}
|
||||
{"contradiction": "Otherwise", "entailment": "Meaning", "neutral": "Sometimes"}
|
||||
{"contradiction": "Why", "entailment": "Certainly", "neutral": "Further"}
|
||||
{"contradiction": "Though", "entailment": "Absolutely", "neutral": "Because"}
|
||||
{"contradiction": "Though", "entailment": "indeed", "neutral": "Further"}
|
||||
{"contradiction": "however", "entailment": "indeed", "neutral": "Nevertheless"}
|
||||
{"contradiction": "Um", "entailment": "Absolutely", "neutral": "Maybe"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Because"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Otherwise"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "There"}
|
||||
{"contradiction": "No", "entailment": "Yes", "neutral": "Obviously"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Moreover"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Basically"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Nevertheless"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Although"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Look"}
|
||||
{"contradiction": "Otherwise", "entailment": "Essentially", "neutral": "Further"}
|
||||
{"contradiction": "No", "entailment": "Yes", "neutral": "Still"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Naturally"}
|
||||
{"contradiction": "No", "entailment": "Yes", "neutral": "Further"}
|
||||
{"contradiction": "no", "entailment": "yes", "neutral": "Sometimes"}
|
||||
{"contradiction": "Otherwise", "entailment": "Specifically", "neutral": "Obviously"}
|
||||
{"contradiction": "Otherwise", "entailment": "Naturally", "neutral": "Further"}
|
|
@ -0,0 +1,100 @@
|
|||
0.78571 {"0": "Recently", "1": "Today"}
|
||||
0.77419 {"0": "Surprisingly", "1": "In"}
|
||||
0.76471 {"0": "See", "1": "said"}
|
||||
0.76471 {"0": "Apparently", "1": "Fortunately"}
|
||||
0.76471 {"0": "Friday", "1": "Soon"}
|
||||
0.75676 {"0": "This", "1": "At"}
|
||||
0.74286 {"0": "See", "1": "On"}
|
||||
0.74286 {"0": "Hence", "1": "As"}
|
||||
0.73333 {"0": "Lastly", "1": "According"}
|
||||
0.73333 {"0": "Currently", "1": "Rather"}
|
||||
0.72727 {"0": "Hence", "1": "said"}
|
||||
0.72727 {"0": "Only", "1": "Rather"}
|
||||
0.72727 {"0": "Thus", "1": "Fortunately"}
|
||||
0.72222 {"0": "Second", "1": "Ultimately"}
|
||||
0.72222 {"0": "Only", "1": "As"}
|
||||
0.72222 {"0": "This", "1": "\""}
|
||||
0.71795 {"0": "Twice", "1": "When"}
|
||||
0.71795 {"0": "First", "1": "At"}
|
||||
0.71795 {"0": "Basically", "1": "For"}
|
||||
0.71795 {"0": "Basically", "1": "Or"}
|
||||
0.71429 {"0": "Below", "1": "According"}
|
||||
0.70968 {"0": "Second", "1": "When"}
|
||||
0.70968 {"0": "Monday", "1": "Suddenly"}
|
||||
0.70968 {"0": "Currently", "1": "According"}
|
||||
0.70588 {"0": "Below", "1": "At"}
|
||||
0.70588 {"0": "Accordingly", "1": "Fortunately"}
|
||||
0.70588 {"0": "Twice", "1": "Soon"}
|
||||
0.70588 {"0": "Remember", "1": "Ultimately"}
|
||||
0.70588 {"0": "Lastly", "1": "More"}
|
||||
0.70588 {"0": "Saturday", "1": "On"}
|
||||
0.70588 {"0": "Next", "1": "At"}
|
||||
0.70588 {"0": "Friday", "1": "Fortunately"}
|
||||
0.70588 {"0": "Currently", "1": "While"}
|
||||
0.70270 {"0": "Hence", "1": "At"}
|
||||
0.70000 {"0": "First", "1": "On"}
|
||||
0.70000 {"0": "First", "1": "Wednesday"}
|
||||
0.70000 {"0": "First", "1": "Unfortunately"}
|
||||
0.68966 {"0": "Basically", "1": "\""}
|
||||
0.68750 {"0": "Only", "1": "."}
|
||||
0.68750 {"0": "Currently", "1": "and"}
|
||||
0.68750 {"0": "Remember", "1": "Rather"}
|
||||
0.68750 {"0": "Currently", "1": "."}
|
||||
0.68750 {"0": "Currently", "1": "Well"}
|
||||
0.68750 {"0": "Lastly", "1": "Here"}
|
||||
0.68750 {"0": "Lastly", "1": "At"}
|
||||
0.68750 {"0": "Lastly", "1": "Or"}
|
||||
0.68750 {"0": "First", "1": "Eventually"}
|
||||
0.68750 {"0": "Currently", "1": "As"}
|
||||
0.68750 {"0": "Previously", "1": "Ultimately"}
|
||||
0.68571 {"0": "Second", "1": "Soon"}
|
||||
0.68571 {"0": "See", "1": "Soon"}
|
||||
0.68571 {"0": "Basically", "1": "Fortunately"}
|
||||
0.68421 {"0": "First", "1": "Fortunately"}
|
||||
0.66667 {"0": "First", "1": "In"}
|
||||
0.66667 {"0": "Hence", "1": "."}
|
||||
0.66667 {"0": "Currently", "1": "Since"}
|
||||
0.66667 {"0": "Only", "1": "At"}
|
||||
0.66667 {"0": "This", "1": "Soon"}
|
||||
0.66667 {"0": "Second", "1": "As"}
|
||||
0.66667 {"0": "Interestingly", "1": "Unfortunately"}
|
||||
0.66667 {"0": "Basically", "1": "According"}
|
||||
0.66667 {"0": "Previously", "1": "Instead"}
|
||||
0.66667 {"0": "First", "1": "Suddenly"}
|
||||
0.66667 {"0": "Currently", "1": "A"}
|
||||
0.66667 {"0": "Lastly", "1": "Rather"}
|
||||
0.66667 {"0": "See", "1": "According"}
|
||||
0.66667 {"0": "First", "1": "Soon"}
|
||||
0.66667 {"0": "First", "1": "The"}
|
||||
0.66667 {"0": "Second", "1": "At"}
|
||||
0.64865 {"0": "First", "1": "As"}
|
||||
0.64865 {"0": "Initially", "1": "According"}
|
||||
0.64865 {"0": "Only", "1": "For"}
|
||||
0.64706 {"0": "This", "1": "There"}
|
||||
0.64706 {"0": "Above", "1": "That"}
|
||||
0.64706 {"0": "Accordingly", "1": "\""}
|
||||
0.64706 {"0": "Initially", "1": "Consequently"}
|
||||
0.64516 {"0": "Hence", "1": "\""}
|
||||
0.64516 {"0": "Hence", "1": "and"}
|
||||
0.64516 {"0": "Currently", "1": "said"}
|
||||
0.64516 {"0": "Only", "1": "On"}
|
||||
0.64286 {"0": "No", "1": "\""}
|
||||
0.62857 {"0": "Only", "1": "\""}
|
||||
0.62857 {"0": "Therefore", "1": "\""}
|
||||
0.62500 {"0": "Actually", "1": "Rather"}
|
||||
0.62500 {"0": "Hence", "1": "That"}
|
||||
0.62069 {"0": "Lastly", "1": "The"}
|
||||
0.61538 {"0": "Basically", "1": "Here"}
|
||||
0.61111 {"0": "First", "1": "Well"}
|
||||
0.61111 {"0": "Initially", "1": "As"}
|
||||
0.58824 {"0": "Note", "1": "\""}
|
||||
0.58065 {"0": "Initially", "1": "Accordingly"}
|
||||
0.57895 {"0": "First", "1": "After"}
|
||||
0.57143 {"0": "Basically", "1": "A"}
|
||||
0.57143 {"0": "Essentially", "1": "That"}
|
||||
0.57143 {"0": "First", "1": "Inside"}
|
||||
0.57143 {"0": "No", "1": "."}
|
||||
0.51852 {"0": "Currently", "1": "\""}
|
||||
0.51852 {"0": "First", "1": "Ultimately"}
|
||||
0.50000 {"0": "Initially", "1": "Interestingly"}
|
||||
0.48276 {"0": "Originally", "1": "Afterwards"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Recently", "1": "Today"}
|
||||
{"0": "Surprisingly", "1": "In"}
|
||||
{"0": "See", "1": "said"}
|
||||
{"0": "Apparently", "1": "Fortunately"}
|
||||
{"0": "Friday", "1": "Soon"}
|
||||
{"0": "This", "1": "At"}
|
||||
{"0": "See", "1": "On"}
|
||||
{"0": "Hence", "1": "As"}
|
||||
{"0": "Lastly", "1": "According"}
|
||||
{"0": "Currently", "1": "Rather"}
|
||||
{"0": "Hence", "1": "said"}
|
||||
{"0": "Only", "1": "Rather"}
|
||||
{"0": "Thus", "1": "Fortunately"}
|
||||
{"0": "Second", "1": "Ultimately"}
|
||||
{"0": "Only", "1": "As"}
|
||||
{"0": "This", "1": "\""}
|
||||
{"0": "Twice", "1": "When"}
|
||||
{"0": "First", "1": "At"}
|
||||
{"0": "Basically", "1": "For"}
|
||||
{"0": "Basically", "1": "Or"}
|
||||
{"0": "Below", "1": "According"}
|
||||
{"0": "Second", "1": "When"}
|
||||
{"0": "Monday", "1": "Suddenly"}
|
||||
{"0": "Currently", "1": "According"}
|
||||
{"0": "Below", "1": "At"}
|
||||
{"0": "Accordingly", "1": "Fortunately"}
|
||||
{"0": "Twice", "1": "Soon"}
|
||||
{"0": "Remember", "1": "Ultimately"}
|
||||
{"0": "Lastly", "1": "More"}
|
||||
{"0": "Saturday", "1": "On"}
|
||||
{"0": "Next", "1": "At"}
|
||||
{"0": "Friday", "1": "Fortunately"}
|
||||
{"0": "Currently", "1": "While"}
|
||||
{"0": "Hence", "1": "At"}
|
||||
{"0": "First", "1": "On"}
|
||||
{"0": "First", "1": "Wednesday"}
|
||||
{"0": "First", "1": "Unfortunately"}
|
||||
{"0": "Basically", "1": "\""}
|
||||
{"0": "Only", "1": "."}
|
||||
{"0": "Currently", "1": "and"}
|
||||
{"0": "Remember", "1": "Rather"}
|
||||
{"0": "Currently", "1": "."}
|
||||
{"0": "Currently", "1": "Well"}
|
||||
{"0": "Lastly", "1": "Here"}
|
||||
{"0": "Lastly", "1": "At"}
|
||||
{"0": "Lastly", "1": "Or"}
|
||||
{"0": "First", "1": "Eventually"}
|
||||
{"0": "Currently", "1": "As"}
|
||||
{"0": "Previously", "1": "Ultimately"}
|
||||
{"0": "Second", "1": "Soon"}
|
||||
{"0": "See", "1": "Soon"}
|
||||
{"0": "Basically", "1": "Fortunately"}
|
||||
{"0": "First", "1": "Fortunately"}
|
||||
{"0": "First", "1": "In"}
|
||||
{"0": "Hence", "1": "."}
|
||||
{"0": "Currently", "1": "Since"}
|
||||
{"0": "Only", "1": "At"}
|
||||
{"0": "This", "1": "Soon"}
|
||||
{"0": "Second", "1": "As"}
|
||||
{"0": "Interestingly", "1": "Unfortunately"}
|
||||
{"0": "Basically", "1": "According"}
|
||||
{"0": "Previously", "1": "Instead"}
|
||||
{"0": "First", "1": "Suddenly"}
|
||||
{"0": "Currently", "1": "A"}
|
||||
{"0": "Lastly", "1": "Rather"}
|
||||
{"0": "See", "1": "According"}
|
||||
{"0": "First", "1": "Soon"}
|
||||
{"0": "First", "1": "The"}
|
||||
{"0": "Second", "1": "At"}
|
||||
{"0": "First", "1": "As"}
|
||||
{"0": "Initially", "1": "According"}
|
||||
{"0": "Only", "1": "For"}
|
||||
{"0": "This", "1": "There"}
|
||||
{"0": "Above", "1": "That"}
|
||||
{"0": "Accordingly", "1": "\""}
|
||||
{"0": "Initially", "1": "Consequently"}
|
||||
{"0": "Hence", "1": "\""}
|
||||
{"0": "Hence", "1": "and"}
|
||||
{"0": "Currently", "1": "said"}
|
||||
{"0": "Only", "1": "On"}
|
||||
{"0": "No", "1": "\""}
|
||||
{"0": "Only", "1": "\""}
|
||||
{"0": "Therefore", "1": "\""}
|
||||
{"0": "Actually", "1": "Rather"}
|
||||
{"0": "Hence", "1": "That"}
|
||||
{"0": "Lastly", "1": "The"}
|
||||
{"0": "Basically", "1": "Here"}
|
||||
{"0": "First", "1": "Well"}
|
||||
{"0": "Initially", "1": "As"}
|
||||
{"0": "Note", "1": "\""}
|
||||
{"0": "Initially", "1": "Accordingly"}
|
||||
{"0": "First", "1": "After"}
|
||||
{"0": "Basically", "1": "A"}
|
||||
{"0": "Essentially", "1": "That"}
|
||||
{"0": "First", "1": "Inside"}
|
||||
{"0": "No", "1": "."}
|
||||
{"0": "Currently", "1": "\""}
|
||||
{"0": "First", "1": "Ultimately"}
|
||||
{"0": "Initially", "1": "Interestingly"}
|
||||
{"0": "Originally", "1": "Afterwards"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Currently", "1": "\""}
|
||||
{"0": "Essentially", "1": "That"}
|
||||
{"0": "First", "1": "In"}
|
||||
{"0": "Only", "1": "."}
|
||||
{"0": "Currently", "1": "and"}
|
||||
{"0": "First", "1": "After"}
|
||||
{"0": "Hence", "1": "."}
|
||||
{"0": "Remember", "1": "Rather"}
|
||||
{"0": "Currently", "1": "."}
|
||||
{"0": "Hence", "1": "\""}
|
||||
{"0": "Actually", "1": "Rather"}
|
||||
{"0": "First", "1": "On"}
|
||||
{"0": "Currently", "1": "Well"}
|
||||
{"0": "First", "1": "The"}
|
||||
{"0": "Basically", "1": "A"}
|
||||
{"0": "Below", "1": "At"}
|
||||
{"0": "Currently", "1": "Since"}
|
||||
{"0": "First", "1": "As"}
|
||||
{"0": "Only", "1": "At"}
|
||||
{"0": "Accordingly", "1": "Fortunately"}
|
||||
{"0": "Only", "1": "\""}
|
||||
{"0": "First", "1": "Fortunately"}
|
||||
{"0": "Lastly", "1": "Here"}
|
||||
{"0": "This", "1": "Soon"}
|
||||
{"0": "Lastly", "1": "According"}
|
||||
{"0": "Therefore", "1": "\""}
|
||||
{"0": "Lastly", "1": "At"}
|
||||
{"0": "Lastly", "1": "Rather"}
|
||||
{"0": "Second", "1": "As"}
|
||||
{"0": "Basically", "1": "\""}
|
||||
{"0": "This", "1": "There"}
|
||||
{"0": "First", "1": "Wednesday"}
|
||||
{"0": "Second", "1": "When"}
|
||||
{"0": "Second", "1": "Soon"}
|
||||
{"0": "See", "1": "On"}
|
||||
{"0": "Monday", "1": "Suddenly"}
|
||||
{"0": "Second", "1": "Ultimately"}
|
||||
{"0": "Initially", "1": "According"}
|
||||
{"0": "Above", "1": "That"}
|
||||
{"0": "Lastly", "1": "The"}
|
||||
{"0": "Hence", "1": "At"}
|
||||
{"0": "Twice", "1": "Soon"}
|
||||
{"0": "Twice", "1": "When"}
|
||||
{"0": "Hence", "1": "As"}
|
||||
{"0": "Hence", "1": "said"}
|
||||
{"0": "Accordingly", "1": "\""}
|
||||
{"0": "Hence", "1": "That"}
|
||||
{"0": "Remember", "1": "Ultimately"}
|
||||
{"0": "Hence", "1": "and"}
|
||||
{"0": "Lastly", "1": "Or"}
|
||||
{"0": "Only", "1": "As"}
|
||||
{"0": "Interestingly", "1": "Unfortunately"}
|
||||
{"0": "See", "1": "According"}
|
||||
{"0": "Second", "1": "At"}
|
||||
{"0": "See", "1": "Soon"}
|
||||
{"0": "See", "1": "said"}
|
||||
{"0": "Only", "1": "Rather"}
|
||||
{"0": "Basically", "1": "According"}
|
||||
{"0": "Lastly", "1": "More"}
|
||||
{"0": "Apparently", "1": "Fortunately"}
|
||||
{"0": "Basically", "1": "Fortunately"}
|
||||
{"0": "Note", "1": "\""}
|
||||
{"0": "Only", "1": "For"}
|
||||
{"0": "First", "1": "Eventually"}
|
||||
{"0": "Saturday", "1": "On"}
|
||||
{"0": "First", "1": "Ultimately"}
|
||||
{"0": "Next", "1": "At"}
|
||||
{"0": "Currently", "1": "As"}
|
||||
{"0": "Previously", "1": "Instead"}
|
||||
{"0": "First", "1": "Inside"}
|
||||
{"0": "Friday", "1": "Soon"}
|
||||
{"0": "First", "1": "Suddenly"}
|
||||
{"0": "First", "1": "Soon"}
|
||||
{"0": "Friday", "1": "Fortunately"}
|
||||
{"0": "First", "1": "At"}
|
||||
{"0": "Recently", "1": "Today"}
|
||||
{"0": "First", "1": "Well"}
|
||||
{"0": "Currently", "1": "said"}
|
||||
{"0": "Currently", "1": "According"}
|
||||
{"0": "This", "1": "\""}
|
||||
{"0": "First", "1": "Unfortunately"}
|
||||
{"0": "Basically", "1": "For"}
|
||||
{"0": "Currently", "1": "While"}
|
||||
{"0": "No", "1": "\""}
|
||||
{"0": "Currently", "1": "A"}
|
||||
{"0": "No", "1": "."}
|
||||
{"0": "Below", "1": "According"}
|
||||
{"0": "Thus", "1": "Fortunately"}
|
||||
{"0": "Originally", "1": "Afterwards"}
|
||||
{"0": "Currently", "1": "Rather"}
|
||||
{"0": "Only", "1": "On"}
|
||||
{"0": "This", "1": "At"}
|
||||
{"0": "Surprisingly", "1": "In"}
|
||||
{"0": "Previously", "1": "Ultimately"}
|
||||
{"0": "Initially", "1": "As"}
|
||||
{"0": "Basically", "1": "Here"}
|
||||
{"0": "Initially", "1": "Consequently"}
|
||||
{"0": "Basically", "1": "Or"}
|
||||
{"0": "Initially", "1": "Accordingly"}
|
||||
{"0": "Initially", "1": "Interestingly"}
|
|
@ -0,0 +1,100 @@
|
|||
0.82353 {"0": "Moreover", "1": "Instead"}
|
||||
0.82353 {"0": "Hence", "1": "Since"}
|
||||
0.82353 {"0": "There", "1": "Well"}
|
||||
0.80000 {"0": "Friday", "1": "Tuesday"}
|
||||
0.80000 {"0": "Alternatively", "1": "Except"}
|
||||
0.80000 {"0": "Next", "1": "No"}
|
||||
0.80000 {"0": "Last", "1": "Rather"}
|
||||
0.80000 {"0": "Friday", "1": "Fortunately"}
|
||||
0.80000 {"0": "Lastly", "1": "Fortunately"}
|
||||
0.80000 {"0": "Overall", "1": "Instead"}
|
||||
0.80000 {"0": "Sunday", "1": "\""}
|
||||
0.80000 {"0": "Last", "1": "Twice"}
|
||||
0.80000 {"0": "More", "1": "When"}
|
||||
0.80000 {"0": "Last", "1": "Thankfully"}
|
||||
0.80000 {"0": "On", "1": "Except"}
|
||||
0.80000 {"0": "Online", "1": "Fortunately"}
|
||||
0.80000 {"0": "On", "1": "Fortunately"}
|
||||
0.80000 {"0": "On", "1": "\""}
|
||||
0.80000 {"0": "Further", "1": "Instead"}
|
||||
0.78788 {"0": "meanwhile", "1": "Except"}
|
||||
0.78788 {"0": "Combined", "1": "Like"}
|
||||
0.77778 {"0": "meanwhile", "1": "Thankfully"}
|
||||
0.77778 {"0": "Last", "1": "Since"}
|
||||
0.77778 {"0": "Wednesday", "1": "Fortunately"}
|
||||
0.77778 {"0": "Last", "1": "In"}
|
||||
0.77778 {"0": "On", "1": "When"}
|
||||
0.77778 {"0": "Still", "1": "Instead"}
|
||||
0.77778 {"0": "Thursday", "1": "After"}
|
||||
0.77778 {"0": "Consequently", "1": "When"}
|
||||
0.77778 {"0": "Already", "1": "A"}
|
||||
0.77778 {"0": "Outside", "1": "Suddenly"}
|
||||
0.77778 {"0": "Last", "1": "First"}
|
||||
0.77778 {"0": "Outside", "1": "Eventually"}
|
||||
0.77778 {"0": "Worldwide", "1": "Except"}
|
||||
0.77778 {"0": "Already", "1": "Or"}
|
||||
0.77778 {"0": "while", "1": "Thankfully"}
|
||||
0.77778 {"0": "meanwhile", "1": "Anyway"}
|
||||
0.77778 {"0": "Currently", "1": "At"}
|
||||
0.77778 {"0": "Currently", "1": "More"}
|
||||
0.77778 {"0": "Conversely", "1": "Specifically"}
|
||||
0.77778 {"0": "Moreover", "1": "So"}
|
||||
0.77778 {"0": "While", "1": "Fortunately"}
|
||||
0.77778 {"0": "and", "1": "\""}
|
||||
0.77778 {"0": "Finally", "1": "Again"}
|
||||
0.77778 {"0": "and", "1": "No"}
|
||||
0.77778 {"0": ".", "1": "\""}
|
||||
0.77419 {"0": "Lastly", "1": "Well"}
|
||||
0.76471 {"0": "Last", "1": "After"}
|
||||
0.76471 {"0": "Already", "1": "Rather"}
|
||||
0.76471 {"0": "Overall", "1": "Nevertheless"}
|
||||
0.76471 {"0": "Furthermore", "1": "So"}
|
||||
0.75862 {"0": "Together", "1": "Except"}
|
||||
0.75676 {"0": "On", "1": "After"}
|
||||
0.75676 {"0": "Last", "1": "When"}
|
||||
0.75676 {"0": "Consequently", "1": "Rather"}
|
||||
0.75676 {"0": "Friday", "1": "Unfortunately"}
|
||||
0.75676 {"0": "Monday", "1": "Fortunately"}
|
||||
0.75676 {"0": "Last", "1": "No"}
|
||||
0.75676 {"0": "More", "1": "Yes"}
|
||||
0.75676 {"0": "Plus", "1": "No"}
|
||||
0.75676 {"0": "Overall", "1": "Again"}
|
||||
0.75676 {"0": "Tuesday", "1": "Unfortunately"}
|
||||
0.75676 {"0": "Lastly", "1": "No"}
|
||||
0.75000 {"0": "meanwhile", "1": "When"}
|
||||
0.74286 {"0": "Friday", "1": "After"}
|
||||
0.74286 {"0": "Tuesday", "1": "After"}
|
||||
0.74286 {"0": "Hence", "1": "Because"}
|
||||
0.74286 {"0": "On", "1": "Eventually"}
|
||||
0.74286 {"0": "Plus", "1": "Well"}
|
||||
0.74286 {"0": "Further", "1": "First"}
|
||||
0.73684 {"0": "meanwhile", "1": "Twice"}
|
||||
0.73684 {"0": "Wednesday", "1": "Unfortunately"}
|
||||
0.73684 {"0": "Consequently", "1": "After"}
|
||||
0.73684 {"0": "Monday", "1": "After"}
|
||||
0.73684 {"0": "Overall", "1": "Specifically"}
|
||||
0.73684 {"0": "while", "1": "When"}
|
||||
0.73684 {"0": "While", "1": "Initially"}
|
||||
0.73684 {"0": "Further", "1": "Specifically"}
|
||||
0.72727 {"0": "Overall", "1": "Yet"}
|
||||
0.72727 {"0": "Thursday", "1": "Fortunately"}
|
||||
0.72727 {"0": "Conversely", "1": "Instead"}
|
||||
0.72727 {"0": "Likewise", "1": "Again"}
|
||||
0.71795 {"0": "Sunday", "1": "Suddenly"}
|
||||
0.71795 {"0": "Friday", "1": "Ultimately"}
|
||||
0.71795 {"0": "Conversely", "1": "Again"}
|
||||
0.71795 {"0": "While", "1": "Now"}
|
||||
0.70968 {"0": "Tuesday", "1": "Fortunately"}
|
||||
0.70588 {"0": "Online", "1": "First"}
|
||||
0.70270 {"0": "Whereas", "1": "Except"}
|
||||
0.68750 {"0": "meanwhile", "1": "Luckily"}
|
||||
0.68750 {"0": "Thursday", "1": "Unfortunately"}
|
||||
0.68421 {"0": "Friday", "1": "Eventually"}
|
||||
0.68421 {"0": "Wednesday", "1": "Eventually"}
|
||||
0.68293 {"0": "Monday", "1": "Eventually"}
|
||||
0.68293 {"0": "while", "1": "Rather"}
|
||||
0.66667 {"0": "Lastly", "1": "Eventually"}
|
||||
0.66667 {"0": "Therefore", "1": "When"}
|
||||
0.64706 {"0": "Nationwide", "1": "Rather"}
|
||||
0.64516 {"0": "Wednesday", "1": "After"}
|
||||
0.63158 {"0": "while", "1": "Like"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Moreover", "1": "Instead"}
|
||||
{"0": "Hence", "1": "Since"}
|
||||
{"0": "There", "1": "Well"}
|
||||
{"0": "Friday", "1": "Tuesday"}
|
||||
{"0": "Alternatively", "1": "Except"}
|
||||
{"0": "Next", "1": "No"}
|
||||
{"0": "Last", "1": "Rather"}
|
||||
{"0": "Friday", "1": "Fortunately"}
|
||||
{"0": "Lastly", "1": "Fortunately"}
|
||||
{"0": "Overall", "1": "Instead"}
|
||||
{"0": "Sunday", "1": "\""}
|
||||
{"0": "Last", "1": "Twice"}
|
||||
{"0": "More", "1": "When"}
|
||||
{"0": "Last", "1": "Thankfully"}
|
||||
{"0": "On", "1": "Except"}
|
||||
{"0": "Online", "1": "Fortunately"}
|
||||
{"0": "On", "1": "Fortunately"}
|
||||
{"0": "On", "1": "\""}
|
||||
{"0": "Further", "1": "Instead"}
|
||||
{"0": "meanwhile", "1": "Except"}
|
||||
{"0": "Combined", "1": "Like"}
|
||||
{"0": "meanwhile", "1": "Thankfully"}
|
||||
{"0": "Last", "1": "Since"}
|
||||
{"0": "Wednesday", "1": "Fortunately"}
|
||||
{"0": "Last", "1": "In"}
|
||||
{"0": "On", "1": "When"}
|
||||
{"0": "Still", "1": "Instead"}
|
||||
{"0": "Thursday", "1": "After"}
|
||||
{"0": "Consequently", "1": "When"}
|
||||
{"0": "Already", "1": "A"}
|
||||
{"0": "Outside", "1": "Suddenly"}
|
||||
{"0": "Last", "1": "First"}
|
||||
{"0": "Outside", "1": "Eventually"}
|
||||
{"0": "Worldwide", "1": "Except"}
|
||||
{"0": "Already", "1": "Or"}
|
||||
{"0": "while", "1": "Thankfully"}
|
||||
{"0": "meanwhile", "1": "Anyway"}
|
||||
{"0": "Currently", "1": "At"}
|
||||
{"0": "Currently", "1": "More"}
|
||||
{"0": "Conversely", "1": "Specifically"}
|
||||
{"0": "Moreover", "1": "So"}
|
||||
{"0": "While", "1": "Fortunately"}
|
||||
{"0": "and", "1": "\""}
|
||||
{"0": "Finally", "1": "Again"}
|
||||
{"0": "and", "1": "No"}
|
||||
{"0": ".", "1": "\""}
|
||||
{"0": "Lastly", "1": "Well"}
|
||||
{"0": "Last", "1": "After"}
|
||||
{"0": "Already", "1": "Rather"}
|
||||
{"0": "Overall", "1": "Nevertheless"}
|
||||
{"0": "Furthermore", "1": "So"}
|
||||
{"0": "Together", "1": "Except"}
|
||||
{"0": "On", "1": "After"}
|
||||
{"0": "Last", "1": "When"}
|
||||
{"0": "Consequently", "1": "Rather"}
|
||||
{"0": "Friday", "1": "Unfortunately"}
|
||||
{"0": "Monday", "1": "Fortunately"}
|
||||
{"0": "Last", "1": "No"}
|
||||
{"0": "More", "1": "Yes"}
|
||||
{"0": "Plus", "1": "No"}
|
||||
{"0": "Overall", "1": "Again"}
|
||||
{"0": "Tuesday", "1": "Unfortunately"}
|
||||
{"0": "Lastly", "1": "No"}
|
||||
{"0": "meanwhile", "1": "When"}
|
||||
{"0": "Friday", "1": "After"}
|
||||
{"0": "Tuesday", "1": "After"}
|
||||
{"0": "Hence", "1": "Because"}
|
||||
{"0": "On", "1": "Eventually"}
|
||||
{"0": "Plus", "1": "Well"}
|
||||
{"0": "Further", "1": "First"}
|
||||
{"0": "meanwhile", "1": "Twice"}
|
||||
{"0": "Wednesday", "1": "Unfortunately"}
|
||||
{"0": "Consequently", "1": "After"}
|
||||
{"0": "Monday", "1": "After"}
|
||||
{"0": "Overall", "1": "Specifically"}
|
||||
{"0": "while", "1": "When"}
|
||||
{"0": "While", "1": "Initially"}
|
||||
{"0": "Further", "1": "Specifically"}
|
||||
{"0": "Overall", "1": "Yet"}
|
||||
{"0": "Thursday", "1": "Fortunately"}
|
||||
{"0": "Conversely", "1": "Instead"}
|
||||
{"0": "Likewise", "1": "Again"}
|
||||
{"0": "Sunday", "1": "Suddenly"}
|
||||
{"0": "Friday", "1": "Ultimately"}
|
||||
{"0": "Conversely", "1": "Again"}
|
||||
{"0": "While", "1": "Now"}
|
||||
{"0": "Tuesday", "1": "Fortunately"}
|
||||
{"0": "Online", "1": "First"}
|
||||
{"0": "Whereas", "1": "Except"}
|
||||
{"0": "meanwhile", "1": "Luckily"}
|
||||
{"0": "Thursday", "1": "Unfortunately"}
|
||||
{"0": "Friday", "1": "Eventually"}
|
||||
{"0": "Wednesday", "1": "Eventually"}
|
||||
{"0": "Monday", "1": "Eventually"}
|
||||
{"0": "while", "1": "Rather"}
|
||||
{"0": "Lastly", "1": "Eventually"}
|
||||
{"0": "Therefore", "1": "When"}
|
||||
{"0": "Nationwide", "1": "Rather"}
|
||||
{"0": "Wednesday", "1": "After"}
|
||||
{"0": "while", "1": "Like"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Whereas", "1": "Except"}
|
||||
{"0": "On", "1": "After"}
|
||||
{"0": "meanwhile", "1": "Thankfully"}
|
||||
{"0": "Last", "1": "Since"}
|
||||
{"0": "Last", "1": "When"}
|
||||
{"0": "Friday", "1": "Tuesday"}
|
||||
{"0": "Last", "1": "After"}
|
||||
{"0": "Alternatively", "1": "Except"}
|
||||
{"0": "Next", "1": "No"}
|
||||
{"0": "Friday", "1": "After"}
|
||||
{"0": "Consequently", "1": "Rather"}
|
||||
{"0": "Friday", "1": "Eventually"}
|
||||
{"0": "meanwhile", "1": "Twice"}
|
||||
{"0": "meanwhile", "1": "Luckily"}
|
||||
{"0": "Wednesday", "1": "Unfortunately"}
|
||||
{"0": "Already", "1": "Rather"}
|
||||
{"0": "Wednesday", "1": "Eventually"}
|
||||
{"0": "Last", "1": "Rather"}
|
||||
{"0": "Friday", "1": "Unfortunately"}
|
||||
{"0": "Friday", "1": "Fortunately"}
|
||||
{"0": "Monday", "1": "Fortunately"}
|
||||
{"0": "Wednesday", "1": "Fortunately"}
|
||||
{"0": "Overall", "1": "Yet"}
|
||||
{"0": "Moreover", "1": "Instead"}
|
||||
{"0": "Last", "1": "In"}
|
||||
{"0": "Lastly", "1": "Fortunately"}
|
||||
{"0": "On", "1": "When"}
|
||||
{"0": "Still", "1": "Instead"}
|
||||
{"0": "Thursday", "1": "After"}
|
||||
{"0": "Overall", "1": "Instead"}
|
||||
{"0": "Thursday", "1": "Fortunately"}
|
||||
{"0": "Tuesday", "1": "Fortunately"}
|
||||
{"0": "Sunday", "1": "Suddenly"}
|
||||
{"0": "Already", "1": "A"}
|
||||
{"0": "Consequently", "1": "When"}
|
||||
{"0": "Conversely", "1": "Instead"}
|
||||
{"0": "Consequently", "1": "After"}
|
||||
{"0": "Sunday", "1": "\""}
|
||||
{"0": "Hence", "1": "Since"}
|
||||
{"0": "Monday", "1": "After"}
|
||||
{"0": "Monday", "1": "Eventually"}
|
||||
{"0": "Last", "1": "No"}
|
||||
{"0": "Last", "1": "Twice"}
|
||||
{"0": "Outside", "1": "Suddenly"}
|
||||
{"0": "Last", "1": "First"}
|
||||
{"0": "Outside", "1": "Eventually"}
|
||||
{"0": "More", "1": "Yes"}
|
||||
{"0": "Worldwide", "1": "Except"}
|
||||
{"0": "More", "1": "When"}
|
||||
{"0": "Already", "1": "Or"}
|
||||
{"0": "Last", "1": "Thankfully"}
|
||||
{"0": "On", "1": "Except"}
|
||||
{"0": "Online", "1": "Fortunately"}
|
||||
{"0": "Plus", "1": "No"}
|
||||
{"0": "Overall", "1": "Nevertheless"}
|
||||
{"0": "while", "1": "Thankfully"}
|
||||
{"0": "while", "1": "Rather"}
|
||||
{"0": "while", "1": "Like"}
|
||||
{"0": "Overall", "1": "Specifically"}
|
||||
{"0": "while", "1": "When"}
|
||||
{"0": "Overall", "1": "Again"}
|
||||
{"0": "Thursday", "1": "Unfortunately"}
|
||||
{"0": "Tuesday", "1": "Unfortunately"}
|
||||
{"0": "Tuesday", "1": "After"}
|
||||
{"0": "Likewise", "1": "Again"}
|
||||
{"0": "Furthermore", "1": "So"}
|
||||
{"0": "Friday", "1": "Ultimately"}
|
||||
{"0": "Therefore", "1": "When"}
|
||||
{"0": "Hence", "1": "Because"}
|
||||
{"0": "meanwhile", "1": "Anyway"}
|
||||
{"0": "meanwhile", "1": "When"}
|
||||
{"0": "meanwhile", "1": "Except"}
|
||||
{"0": "On", "1": "Eventually"}
|
||||
{"0": "Currently", "1": "At"}
|
||||
{"0": "There", "1": "Well"}
|
||||
{"0": "Currently", "1": "More"}
|
||||
{"0": "On", "1": "Fortunately"}
|
||||
{"0": "On", "1": "\""}
|
||||
{"0": "Online", "1": "First"}
|
||||
{"0": "Conversely", "1": "Specifically"}
|
||||
{"0": "Conversely", "1": "Again"}
|
||||
{"0": "Lastly", "1": "Eventually"}
|
||||
{"0": "Plus", "1": "Well"}
|
||||
{"0": "Moreover", "1": "So"}
|
||||
{"0": "Lastly", "1": "Well"}
|
||||
{"0": "Together", "1": "Except"}
|
||||
{"0": "While", "1": "Initially"}
|
||||
{"0": "Further", "1": "Specifically"}
|
||||
{"0": "While", "1": "Fortunately"}
|
||||
{"0": "Further", "1": "Instead"}
|
||||
{"0": "Combined", "1": "Like"}
|
||||
{"0": "Further", "1": "First"}
|
||||
{"0": "Lastly", "1": "No"}
|
||||
{"0": "Wednesday", "1": "After"}
|
||||
{"0": "and", "1": "\""}
|
||||
{"0": "Nationwide", "1": "Rather"}
|
||||
{"0": "While", "1": "Now"}
|
||||
{"0": "and", "1": "No"}
|
||||
{"0": "Finally", "1": "Again"}
|
||||
{"0": ".", "1": "\""}
|
|
@ -0,0 +1,100 @@
|
|||
0.82051 {"0": "Last", "1": "Anyway"}
|
||||
0.81081 {"0": "Later", "1": "Unfortunately"}
|
||||
0.80000 {"0": "Recently", "1": "Well"}
|
||||
0.78947 {"0": "Earlier", "1": "Well"}
|
||||
0.78947 {"0": "Later", "1": "Although"}
|
||||
0.78947 {"0": "Above", "1": "Note"}
|
||||
0.78049 {"0": "Last", "1": "Note"}
|
||||
0.78049 {"0": "Previously", "1": "Therefore"}
|
||||
0.77778 {"0": "Previously", "1": "Thus"}
|
||||
0.77778 {"0": "Second", "1": "Well"}
|
||||
0.77778 {"0": "Outside", "1": "The"}
|
||||
0.76923 {"0": "Last", "1": "Accordingly"}
|
||||
0.76923 {"0": "Last", "1": "Otherwise"}
|
||||
0.76923 {"0": "Still", "1": "Indeed"}
|
||||
0.76471 {"0": "Then", "1": "Thus"}
|
||||
0.76471 {"0": "Earlier", "1": "Consequently"}
|
||||
0.76190 {"0": "Next", "1": "\""}
|
||||
0.76190 {"0": "Later", "1": "\""}
|
||||
0.76190 {"0": "On", "1": "Note"}
|
||||
0.76190 {"0": "Then", "1": "No"}
|
||||
0.75676 {"0": "Earlier", "1": "Plus"}
|
||||
0.75676 {"0": "Later", "1": "No"}
|
||||
0.75676 {"0": "Last", "1": "The"}
|
||||
0.75676 {"0": "On", "1": "Because"}
|
||||
0.75000 {"0": "Last", "1": "For"}
|
||||
0.75000 {"0": "Earlier", "1": "While"}
|
||||
0.75000 {"0": "Recently", "1": "Yet"}
|
||||
0.75000 {"0": "Interestingly", "1": "Well"}
|
||||
0.75000 {"0": "Eventually", "1": "Consequently"}
|
||||
0.75000 {"0": "Eventually", "1": "Fortunately"}
|
||||
0.75000 {"0": "Recently", "1": "Likewise"}
|
||||
0.74419 {"0": "Last", "1": "\""}
|
||||
0.74286 {"0": "Last", "1": "True"}
|
||||
0.74286 {"0": "Last", "1": "That"}
|
||||
0.74286 {"0": "Before", "1": "True"}
|
||||
0.74286 {"0": "Eventually", "1": "Therefore"}
|
||||
0.74286 {"0": "Eventually", "1": "So"}
|
||||
0.74286 {"0": "Then", "1": "So"}
|
||||
0.74286 {"0": "Recently", "1": "So"}
|
||||
0.73684 {"0": "Now", "1": "Yes"}
|
||||
0.73684 {"0": "Soon", "1": "Alas"}
|
||||
0.73684 {"0": "After", "1": "True"}
|
||||
0.73684 {"0": "Initially", "1": "Accordingly"}
|
||||
0.73684 {"0": "Last", "1": "As"}
|
||||
0.73684 {"0": "Tuesday", "1": "Yep"}
|
||||
0.73684 {"0": "Remember", "1": "Yep"}
|
||||
0.73171 {"0": "Or", "1": "Note"}
|
||||
0.73171 {"0": "Sadly", "1": "See"}
|
||||
0.72727 {"0": "First", "1": "Thus"}
|
||||
0.72222 {"0": "Earlier", "1": "Yes"}
|
||||
0.72222 {"0": "Last", "1": "More"}
|
||||
0.72222 {"0": "Afterwards", "1": "Actually"}
|
||||
0.71795 {"0": "Inside", "1": "Yeah"}
|
||||
0.71795 {"0": "Then", "1": "Yes"}
|
||||
0.71795 {"0": "Before", "1": "Actually"}
|
||||
0.71795 {"0": "There", "1": "Yep"}
|
||||
0.70588 {"0": "Earlier", "1": "No"}
|
||||
0.70588 {"0": "Earlier", "1": "So"}
|
||||
0.70588 {"0": "Last", "1": "Because"}
|
||||
0.70588 {"0": "Afterwards", "1": "Therefore"}
|
||||
0.70588 {"0": "Earlier", "1": "Ironically"}
|
||||
0.70270 {"0": "In", "1": "Well"}
|
||||
0.70270 {"0": "Eventually", "1": "Well"}
|
||||
0.70270 {"0": "Before", "1": "Note"}
|
||||
0.70270 {"0": "After", "1": "Well"}
|
||||
0.70270 {"0": "Later", "1": "Actually"}
|
||||
0.70270 {"0": "Eventually", "1": "Thus"}
|
||||
0.70270 {"0": "Recently", "1": "Yes"}
|
||||
0.70270 {"0": "Recently", "1": "Nationwide"}
|
||||
0.70270 {"0": "Ultimately", "1": "Again"}
|
||||
0.70000 {"0": "Recently", "1": "Similarly"}
|
||||
0.70000 {"0": "Above", "1": "Alas"}
|
||||
0.68571 {"0": "Previously", "1": "Likewise"}
|
||||
0.68571 {"0": "Last", "1": "See"}
|
||||
0.68571 {"0": "Before", "1": "Yep"}
|
||||
0.68571 {"0": "Today", "1": "Yes"}
|
||||
0.68421 {"0": "Recently", "1": "No"}
|
||||
0.68421 {"0": "Above", "1": "No"}
|
||||
0.68421 {"0": "There", "1": "Actually"}
|
||||
0.66667 {"0": "Eventually", "1": "Actually"}
|
||||
0.66667 {"0": "Recently", "1": "Finally"}
|
||||
0.66667 {"0": "Yesterday", "1": "Again"}
|
||||
0.66667 {"0": "Previously", "1": "Rather"}
|
||||
0.66667 {"0": "Afterwards", "1": "Well"}
|
||||
0.66667 {"0": "Above", "1": "Yep"}
|
||||
0.64865 {"0": "Recently", "1": "And"}
|
||||
0.64865 {"0": "Recently", "1": "Nevertheless"}
|
||||
0.64865 {"0": "Recently", "1": "Again"}
|
||||
0.64706 {"0": "Earlier", "1": "Actually"}
|
||||
0.64706 {"0": "Yesterday", "1": "Actually"}
|
||||
0.64706 {"0": "Inside", "1": "Note"}
|
||||
0.64706 {"0": "Yesterday", "1": "Yes"}
|
||||
0.64516 {"0": "Before", "1": "Because"}
|
||||
0.64516 {"0": "Outside", "1": "That"}
|
||||
0.63158 {"0": "Soon", "1": "Anyway"}
|
||||
0.62500 {"0": "Inside", "1": "Seriously"}
|
||||
0.62500 {"0": "Inside", "1": "Yep"}
|
||||
0.61111 {"0": "After", "1": "Plus"}
|
||||
0.58065 {"0": "Before", "1": "For"}
|
||||
0.57143 {"0": "Outside", "1": "Note"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Last", "1": "Anyway"}
|
||||
{"0": "Later", "1": "Unfortunately"}
|
||||
{"0": "Recently", "1": "Well"}
|
||||
{"0": "Earlier", "1": "Well"}
|
||||
{"0": "Later", "1": "Although"}
|
||||
{"0": "Above", "1": "Note"}
|
||||
{"0": "Last", "1": "Note"}
|
||||
{"0": "Previously", "1": "Therefore"}
|
||||
{"0": "Previously", "1": "Thus"}
|
||||
{"0": "Second", "1": "Well"}
|
||||
{"0": "Outside", "1": "The"}
|
||||
{"0": "Last", "1": "Accordingly"}
|
||||
{"0": "Last", "1": "Otherwise"}
|
||||
{"0": "Still", "1": "Indeed"}
|
||||
{"0": "Then", "1": "Thus"}
|
||||
{"0": "Earlier", "1": "Consequently"}
|
||||
{"0": "Next", "1": "\""}
|
||||
{"0": "Later", "1": "\""}
|
||||
{"0": "On", "1": "Note"}
|
||||
{"0": "Then", "1": "No"}
|
||||
{"0": "Earlier", "1": "Plus"}
|
||||
{"0": "Later", "1": "No"}
|
||||
{"0": "Last", "1": "The"}
|
||||
{"0": "On", "1": "Because"}
|
||||
{"0": "Last", "1": "For"}
|
||||
{"0": "Earlier", "1": "While"}
|
||||
{"0": "Recently", "1": "Yet"}
|
||||
{"0": "Interestingly", "1": "Well"}
|
||||
{"0": "Eventually", "1": "Consequently"}
|
||||
{"0": "Eventually", "1": "Fortunately"}
|
||||
{"0": "Recently", "1": "Likewise"}
|
||||
{"0": "Last", "1": "\""}
|
||||
{"0": "Last", "1": "True"}
|
||||
{"0": "Last", "1": "That"}
|
||||
{"0": "Before", "1": "True"}
|
||||
{"0": "Eventually", "1": "Therefore"}
|
||||
{"0": "Eventually", "1": "So"}
|
||||
{"0": "Then", "1": "So"}
|
||||
{"0": "Recently", "1": "So"}
|
||||
{"0": "Now", "1": "Yes"}
|
||||
{"0": "Soon", "1": "Alas"}
|
||||
{"0": "After", "1": "True"}
|
||||
{"0": "Initially", "1": "Accordingly"}
|
||||
{"0": "Last", "1": "As"}
|
||||
{"0": "Tuesday", "1": "Yep"}
|
||||
{"0": "Remember", "1": "Yep"}
|
||||
{"0": "Or", "1": "Note"}
|
||||
{"0": "Sadly", "1": "See"}
|
||||
{"0": "First", "1": "Thus"}
|
||||
{"0": "Earlier", "1": "Yes"}
|
||||
{"0": "Last", "1": "More"}
|
||||
{"0": "Afterwards", "1": "Actually"}
|
||||
{"0": "Inside", "1": "Yeah"}
|
||||
{"0": "Then", "1": "Yes"}
|
||||
{"0": "Before", "1": "Actually"}
|
||||
{"0": "There", "1": "Yep"}
|
||||
{"0": "Earlier", "1": "No"}
|
||||
{"0": "Earlier", "1": "So"}
|
||||
{"0": "Last", "1": "Because"}
|
||||
{"0": "Afterwards", "1": "Therefore"}
|
||||
{"0": "Earlier", "1": "Ironically"}
|
||||
{"0": "In", "1": "Well"}
|
||||
{"0": "Eventually", "1": "Well"}
|
||||
{"0": "Before", "1": "Note"}
|
||||
{"0": "After", "1": "Well"}
|
||||
{"0": "Later", "1": "Actually"}
|
||||
{"0": "Eventually", "1": "Thus"}
|
||||
{"0": "Recently", "1": "Yes"}
|
||||
{"0": "Recently", "1": "Nationwide"}
|
||||
{"0": "Ultimately", "1": "Again"}
|
||||
{"0": "Recently", "1": "Similarly"}
|
||||
{"0": "Above", "1": "Alas"}
|
||||
{"0": "Previously", "1": "Likewise"}
|
||||
{"0": "Last", "1": "See"}
|
||||
{"0": "Before", "1": "Yep"}
|
||||
{"0": "Today", "1": "Yes"}
|
||||
{"0": "Recently", "1": "No"}
|
||||
{"0": "Above", "1": "No"}
|
||||
{"0": "There", "1": "Actually"}
|
||||
{"0": "Eventually", "1": "Actually"}
|
||||
{"0": "Recently", "1": "Finally"}
|
||||
{"0": "Yesterday", "1": "Again"}
|
||||
{"0": "Previously", "1": "Rather"}
|
||||
{"0": "Afterwards", "1": "Well"}
|
||||
{"0": "Above", "1": "Yep"}
|
||||
{"0": "Recently", "1": "And"}
|
||||
{"0": "Recently", "1": "Nevertheless"}
|
||||
{"0": "Recently", "1": "Again"}
|
||||
{"0": "Earlier", "1": "Actually"}
|
||||
{"0": "Yesterday", "1": "Actually"}
|
||||
{"0": "Inside", "1": "Note"}
|
||||
{"0": "Yesterday", "1": "Yes"}
|
||||
{"0": "Before", "1": "Because"}
|
||||
{"0": "Outside", "1": "That"}
|
||||
{"0": "Soon", "1": "Anyway"}
|
||||
{"0": "Inside", "1": "Seriously"}
|
||||
{"0": "Inside", "1": "Yep"}
|
||||
{"0": "After", "1": "Plus"}
|
||||
{"0": "Before", "1": "For"}
|
||||
{"0": "Outside", "1": "Note"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Earlier", "1": "Plus"}
|
||||
{"0": "Earlier", "1": "No"}
|
||||
{"0": "Earlier", "1": "Yes"}
|
||||
{"0": "Previously", "1": "Likewise"}
|
||||
{"0": "Last", "1": "True"}
|
||||
{"0": "Last", "1": "More"}
|
||||
{"0": "In", "1": "Well"}
|
||||
{"0": "Last", "1": "See"}
|
||||
{"0": "Last", "1": "For"}
|
||||
{"0": "Eventually", "1": "Well"}
|
||||
{"0": "Outside", "1": "Note"}
|
||||
{"0": "Earlier", "1": "Actually"}
|
||||
{"0": "Before", "1": "Note"}
|
||||
{"0": "Before", "1": "For"}
|
||||
{"0": "Inside", "1": "Seriously"}
|
||||
{"0": "Now", "1": "Yes"}
|
||||
{"0": "Earlier", "1": "So"}
|
||||
{"0": "Soon", "1": "Alas"}
|
||||
{"0": "Next", "1": "\""}
|
||||
{"0": "Eventually", "1": "Actually"}
|
||||
{"0": "Last", "1": "Accordingly"}
|
||||
{"0": "Later", "1": "No"}
|
||||
{"0": "Inside", "1": "Yeah"}
|
||||
{"0": "Later", "1": "\""}
|
||||
{"0": "Afterwards", "1": "Actually"}
|
||||
{"0": "After", "1": "Well"}
|
||||
{"0": "Yesterday", "1": "Actually"}
|
||||
{"0": "Earlier", "1": "Well"}
|
||||
{"0": "After", "1": "True"}
|
||||
{"0": "Later", "1": "Actually"}
|
||||
{"0": "Then", "1": "Yes"}
|
||||
{"0": "Recently", "1": "Finally"}
|
||||
{"0": "Initially", "1": "Accordingly"}
|
||||
{"0": "First", "1": "Thus"}
|
||||
{"0": "Recently", "1": "Similarly"}
|
||||
{"0": "Above", "1": "Yep"}
|
||||
{"0": "Last", "1": "Otherwise"}
|
||||
{"0": "Last", "1": "\""}
|
||||
{"0": "Last", "1": "That"}
|
||||
{"0": "Then", "1": "Thus"}
|
||||
{"0": "Last", "1": "The"}
|
||||
{"0": "Last", "1": "Note"}
|
||||
{"0": "Last", "1": "Because"}
|
||||
{"0": "Inside", "1": "Note"}
|
||||
{"0": "Inside", "1": "Yep"}
|
||||
{"0": "Before", "1": "Yep"}
|
||||
{"0": "Last", "1": "As"}
|
||||
{"0": "Last", "1": "Anyway"}
|
||||
{"0": "Today", "1": "Yes"}
|
||||
{"0": "Previously", "1": "Thus"}
|
||||
{"0": "Before", "1": "True"}
|
||||
{"0": "Yesterday", "1": "Yes"}
|
||||
{"0": "Afterwards", "1": "Therefore"}
|
||||
{"0": "Recently", "1": "Well"}
|
||||
{"0": "After", "1": "Plus"}
|
||||
{"0": "Tuesday", "1": "Yep"}
|
||||
{"0": "Remember", "1": "Yep"}
|
||||
{"0": "Before", "1": "Because"}
|
||||
{"0": "Recently", "1": "No"}
|
||||
{"0": "Later", "1": "Unfortunately"}
|
||||
{"0": "Earlier", "1": "Ironically"}
|
||||
{"0": "Still", "1": "Indeed"}
|
||||
{"0": "Above", "1": "Alas"}
|
||||
{"0": "Eventually", "1": "Thus"}
|
||||
{"0": "Yesterday", "1": "Again"}
|
||||
{"0": "Earlier", "1": "While"}
|
||||
{"0": "Later", "1": "Although"}
|
||||
{"0": "Recently", "1": "Yet"}
|
||||
{"0": "Second", "1": "Well"}
|
||||
{"0": "Above", "1": "No"}
|
||||
{"0": "On", "1": "Note"}
|
||||
{"0": "Previously", "1": "Rather"}
|
||||
{"0": "Previously", "1": "Therefore"}
|
||||
{"0": "Above", "1": "Note"}
|
||||
{"0": "Afterwards", "1": "Well"}
|
||||
{"0": "Interestingly", "1": "Well"}
|
||||
{"0": "Earlier", "1": "Consequently"}
|
||||
{"0": "Soon", "1": "Anyway"}
|
||||
{"0": "Eventually", "1": "Consequently"}
|
||||
{"0": "Or", "1": "Note"}
|
||||
{"0": "Eventually", "1": "Therefore"}
|
||||
{"0": "Eventually", "1": "Fortunately"}
|
||||
{"0": "Eventually", "1": "So"}
|
||||
{"0": "Then", "1": "So"}
|
||||
{"0": "On", "1": "Because"}
|
||||
{"0": "Then", "1": "No"}
|
||||
{"0": "Recently", "1": "Yes"}
|
||||
{"0": "Recently", "1": "Nationwide"}
|
||||
{"0": "There", "1": "Actually"}
|
||||
{"0": "Recently", "1": "So"}
|
||||
{"0": "Before", "1": "Actually"}
|
||||
{"0": "Outside", "1": "That"}
|
||||
{"0": "Recently", "1": "And"}
|
||||
{"0": "Recently", "1": "Nevertheless"}
|
||||
{"0": "Recently", "1": "Likewise"}
|
||||
{"0": "Recently", "1": "Again"}
|
||||
{"0": "There", "1": "Yep"}
|
||||
{"0": "Ultimately", "1": "Again"}
|
||||
{"0": "Outside", "1": "The"}
|
||||
{"0": "Sadly", "1": "See"}
|
|
@ -0,0 +1,100 @@
|
|||
0.88235 {"0": "Alas", "1": "Rather"}
|
||||
0.86667 {"0": "Thus", "1": "At"}
|
||||
0.85714 {"0": "Moreover", "1": "Instead"}
|
||||
0.84848 {"0": "Overall", "1": "The"}
|
||||
0.84848 {"0": "Next", "1": "A"}
|
||||
0.84211 {"0": "Tuesday", "1": "First"}
|
||||
0.83871 {"0": "Next", "1": "As"}
|
||||
0.83333 {"0": "Monday", "1": "and"}
|
||||
0.83333 {"0": "Ultimately", "1": "Though"}
|
||||
0.83333 {"0": "Currently", "1": "While"}
|
||||
0.83333 {"0": "Moreover", "1": "Furthermore"}
|
||||
0.83333 {"0": "Tuesday", "1": "and"}
|
||||
0.83333 {"0": "Hence", "1": "At"}
|
||||
0.83333 {"0": "Currently", "1": "Before"}
|
||||
0.82353 {"0": "Ultimately", "1": "The"}
|
||||
0.82353 {"0": "Ultimately", "1": "As"}
|
||||
0.82353 {"0": "Lastly", "1": "While"}
|
||||
0.82353 {"0": "Accordingly", "1": "At"}
|
||||
0.82353 {"0": "Ultimately", "1": "Originally"}
|
||||
0.82353 {"0": "Thus", "1": "While"}
|
||||
0.82353 {"0": "Ultimately", "1": "Yes"}
|
||||
0.82353 {"0": "Thus", "1": "The"}
|
||||
0.82353 {"0": "Ultimately", "1": "Before"}
|
||||
0.82353 {"0": "So", "1": "Although"}
|
||||
0.81250 {"0": "Wednesday", "1": "and"}
|
||||
0.81250 {"0": "Consequently", "1": "While"}
|
||||
0.81250 {"0": "Together", "1": "At"}
|
||||
0.81250 {"0": "Or", "1": "A"}
|
||||
0.81081 {"0": "Ultimately", "1": "While"}
|
||||
0.81081 {"0": "Notably", "1": "Yet"}
|
||||
0.81081 {"0": "Thursday", "1": "and"}
|
||||
0.81081 {"0": "Though", "1": "The"}
|
||||
0.81081 {"0": "Next", "1": "Since"}
|
||||
0.81081 {"0": "Ultimately", "1": "Afterwards"}
|
||||
0.81081 {"0": "Tuesday", "1": "At"}
|
||||
0.81081 {"0": "Regardless", "1": "No"}
|
||||
0.80000 {"0": "Tuesday", "1": "Eventually"}
|
||||
0.80000 {"0": "Notably", "1": "While"}
|
||||
0.80000 {"0": "Thus", "1": "Rather"}
|
||||
0.80000 {"0": "Ultimately", "1": "At"}
|
||||
0.80000 {"0": "Alas", "1": "No"}
|
||||
0.80000 {"0": "Still", "1": "Instead"}
|
||||
0.80000 {"0": "Next", "1": "At"}
|
||||
0.80000 {"0": "Sadly", "1": "No"}
|
||||
0.80000 {"0": "Wednesday", "1": "At"}
|
||||
0.80000 {"0": "Fortunately", "1": "At"}
|
||||
0.80000 {"0": "Currently", "1": "Well"}
|
||||
0.78947 {"0": "Plus", "1": "Rather"}
|
||||
0.78947 {"0": "Ultimately", "1": "In"}
|
||||
0.78947 {"0": "Therefore", "1": "At"}
|
||||
0.78947 {"0": "Plus", "1": "The"}
|
||||
0.78947 {"0": "Next", "1": "That"}
|
||||
0.78947 {"0": "Next", "1": "For"}
|
||||
0.78947 {"0": "Ultimately", "1": "Initially"}
|
||||
0.78947 {"0": "Tuesday", "1": "Since"}
|
||||
0.78788 {"0": "Moreover", "1": "Now"}
|
||||
0.78788 {"0": "Consequently", "1": "As"}
|
||||
0.78788 {"0": "Consequently", "1": "At"}
|
||||
0.78788 {"0": "Thus", "1": "Originally"}
|
||||
0.78788 {"0": "Accordingly", "1": "Nevertheless"}
|
||||
0.78788 {"0": "First", "1": "Afterwards"}
|
||||
0.78788 {"0": "Consequently", "1": "Initially"}
|
||||
0.78788 {"0": "Hence", "1": "Rather"}
|
||||
0.78049 {"0": "Plus", "1": "Here"}
|
||||
0.78049 {"0": "Plus", "1": "Surprisingly"}
|
||||
0.77778 {"0": "Ultimately", "1": "Rather"}
|
||||
0.77778 {"0": "Ultimately", "1": "Since"}
|
||||
0.77778 {"0": "Accordingly", "1": "Rather"}
|
||||
0.77778 {"0": "Thus", "1": "Initially"}
|
||||
0.77778 {"0": "Ultimately", "1": "Eventually"}
|
||||
0.77778 {"0": "Second", "1": "\""}
|
||||
0.77778 {"0": "So", "1": "Rather"}
|
||||
0.77778 {"0": "Therefore", "1": "The"}
|
||||
0.77778 {"0": "Otherwise", "1": "At"}
|
||||
0.77778 {"0": "Online", "1": "Before"}
|
||||
0.77778 {"0": "Tuesday", "1": "As"}
|
||||
0.77778 {"0": "Wednesday", "1": "First"}
|
||||
0.77778 {"0": "Thursday", "1": "At"}
|
||||
0.77778 {"0": "Regardless", "1": "At"}
|
||||
0.77778 {"0": "Lastly", "1": "At"}
|
||||
0.76923 {"0": "Notably", "1": "Although"}
|
||||
0.76923 {"0": "Ultimately", "1": "Well"}
|
||||
0.76923 {"0": "Thus", "1": "Nonetheless"}
|
||||
0.76923 {"0": "Tuesday", "1": "Initially"}
|
||||
0.76471 {"0": "Ultimately", "1": "Yet"}
|
||||
0.76471 {"0": "Alternatively", "1": "Apparently"}
|
||||
0.76471 {"0": "Suddenly", "1": "The"}
|
||||
0.75676 {"0": "Finally", "1": "Instead"}
|
||||
0.75676 {"0": "Consequently", "1": "Rather"}
|
||||
0.75676 {"0": "Therefore", "1": "Rather"}
|
||||
0.75000 {"0": "Together", "1": "There"}
|
||||
0.75000 {"0": "Additionally", "1": "Instead"}
|
||||
0.75000 {"0": "Ultimately", "1": "Ironically"}
|
||||
0.75000 {"0": "Moreover", "1": "Today"}
|
||||
0.75000 {"0": "Suddenly", "1": "Rather"}
|
||||
0.74286 {"0": "Saturday", "1": "Afterwards"}
|
||||
0.73684 {"0": "Ultimately", "1": "After"}
|
||||
0.70588 {"0": "Ultimately", "1": "Although"}
|
||||
0.70000 {"0": "Worldwide", "1": "Accordingly"}
|
||||
0.58065 {"0": "More", "1": "Rather"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Alas", "1": "Rather"}
|
||||
{"0": "Thus", "1": "At"}
|
||||
{"0": "Moreover", "1": "Instead"}
|
||||
{"0": "Overall", "1": "The"}
|
||||
{"0": "Next", "1": "A"}
|
||||
{"0": "Tuesday", "1": "First"}
|
||||
{"0": "Next", "1": "As"}
|
||||
{"0": "Monday", "1": "and"}
|
||||
{"0": "Ultimately", "1": "Though"}
|
||||
{"0": "Currently", "1": "While"}
|
||||
{"0": "Moreover", "1": "Furthermore"}
|
||||
{"0": "Tuesday", "1": "and"}
|
||||
{"0": "Hence", "1": "At"}
|
||||
{"0": "Currently", "1": "Before"}
|
||||
{"0": "Ultimately", "1": "The"}
|
||||
{"0": "Ultimately", "1": "As"}
|
||||
{"0": "Lastly", "1": "While"}
|
||||
{"0": "Accordingly", "1": "At"}
|
||||
{"0": "Ultimately", "1": "Originally"}
|
||||
{"0": "Thus", "1": "While"}
|
||||
{"0": "Ultimately", "1": "Yes"}
|
||||
{"0": "Thus", "1": "The"}
|
||||
{"0": "Ultimately", "1": "Before"}
|
||||
{"0": "So", "1": "Although"}
|
||||
{"0": "Wednesday", "1": "and"}
|
||||
{"0": "Consequently", "1": "While"}
|
||||
{"0": "Together", "1": "At"}
|
||||
{"0": "Or", "1": "A"}
|
||||
{"0": "Ultimately", "1": "While"}
|
||||
{"0": "Notably", "1": "Yet"}
|
||||
{"0": "Thursday", "1": "and"}
|
||||
{"0": "Though", "1": "The"}
|
||||
{"0": "Next", "1": "Since"}
|
||||
{"0": "Ultimately", "1": "Afterwards"}
|
||||
{"0": "Tuesday", "1": "At"}
|
||||
{"0": "Regardless", "1": "No"}
|
||||
{"0": "Tuesday", "1": "Eventually"}
|
||||
{"0": "Notably", "1": "While"}
|
||||
{"0": "Thus", "1": "Rather"}
|
||||
{"0": "Ultimately", "1": "At"}
|
||||
{"0": "Alas", "1": "No"}
|
||||
{"0": "Still", "1": "Instead"}
|
||||
{"0": "Next", "1": "At"}
|
||||
{"0": "Sadly", "1": "No"}
|
||||
{"0": "Wednesday", "1": "At"}
|
||||
{"0": "Fortunately", "1": "At"}
|
||||
{"0": "Currently", "1": "Well"}
|
||||
{"0": "Plus", "1": "Rather"}
|
||||
{"0": "Ultimately", "1": "In"}
|
||||
{"0": "Therefore", "1": "At"}
|
||||
{"0": "Plus", "1": "The"}
|
||||
{"0": "Next", "1": "That"}
|
||||
{"0": "Next", "1": "For"}
|
||||
{"0": "Ultimately", "1": "Initially"}
|
||||
{"0": "Tuesday", "1": "Since"}
|
||||
{"0": "Moreover", "1": "Now"}
|
||||
{"0": "Consequently", "1": "As"}
|
||||
{"0": "Consequently", "1": "At"}
|
||||
{"0": "Thus", "1": "Originally"}
|
||||
{"0": "Accordingly", "1": "Nevertheless"}
|
||||
{"0": "First", "1": "Afterwards"}
|
||||
{"0": "Consequently", "1": "Initially"}
|
||||
{"0": "Hence", "1": "Rather"}
|
||||
{"0": "Plus", "1": "Here"}
|
||||
{"0": "Plus", "1": "Surprisingly"}
|
||||
{"0": "Ultimately", "1": "Rather"}
|
||||
{"0": "Ultimately", "1": "Since"}
|
||||
{"0": "Accordingly", "1": "Rather"}
|
||||
{"0": "Thus", "1": "Initially"}
|
||||
{"0": "Ultimately", "1": "Eventually"}
|
||||
{"0": "Second", "1": "\""}
|
||||
{"0": "So", "1": "Rather"}
|
||||
{"0": "Therefore", "1": "The"}
|
||||
{"0": "Otherwise", "1": "At"}
|
||||
{"0": "Online", "1": "Before"}
|
||||
{"0": "Tuesday", "1": "As"}
|
||||
{"0": "Wednesday", "1": "First"}
|
||||
{"0": "Thursday", "1": "At"}
|
||||
{"0": "Regardless", "1": "At"}
|
||||
{"0": "Lastly", "1": "At"}
|
||||
{"0": "Notably", "1": "Although"}
|
||||
{"0": "Ultimately", "1": "Well"}
|
||||
{"0": "Thus", "1": "Nonetheless"}
|
||||
{"0": "Tuesday", "1": "Initially"}
|
||||
{"0": "Ultimately", "1": "Yet"}
|
||||
{"0": "Alternatively", "1": "Apparently"}
|
||||
{"0": "Suddenly", "1": "The"}
|
||||
{"0": "Finally", "1": "Instead"}
|
||||
{"0": "Consequently", "1": "Rather"}
|
||||
{"0": "Therefore", "1": "Rather"}
|
||||
{"0": "Together", "1": "There"}
|
||||
{"0": "Additionally", "1": "Instead"}
|
||||
{"0": "Ultimately", "1": "Ironically"}
|
||||
{"0": "Moreover", "1": "Today"}
|
||||
{"0": "Suddenly", "1": "Rather"}
|
||||
{"0": "Saturday", "1": "Afterwards"}
|
||||
{"0": "Ultimately", "1": "After"}
|
||||
{"0": "Ultimately", "1": "Although"}
|
||||
{"0": "Worldwide", "1": "Accordingly"}
|
||||
{"0": "More", "1": "Rather"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Finally", "1": "Instead"}
|
||||
{"0": "Notably", "1": "Although"}
|
||||
{"0": "Plus", "1": "Rather"}
|
||||
{"0": "Ultimately", "1": "Rather"}
|
||||
{"0": "Ultimately", "1": "The"}
|
||||
{"0": "Ultimately", "1": "Well"}
|
||||
{"0": "Overall", "1": "The"}
|
||||
{"0": "Saturday", "1": "Afterwards"}
|
||||
{"0": "Plus", "1": "Here"}
|
||||
{"0": "Consequently", "1": "Rather"}
|
||||
{"0": "Notably", "1": "While"}
|
||||
{"0": "Ultimately", "1": "As"}
|
||||
{"0": "Ultimately", "1": "While"}
|
||||
{"0": "Ultimately", "1": "In"}
|
||||
{"0": "Thus", "1": "Rather"}
|
||||
{"0": "More", "1": "Rather"}
|
||||
{"0": "Moreover", "1": "Now"}
|
||||
{"0": "Ultimately", "1": "At"}
|
||||
{"0": "Therefore", "1": "At"}
|
||||
{"0": "Alas", "1": "No"}
|
||||
{"0": "Notably", "1": "Yet"}
|
||||
{"0": "Lastly", "1": "While"}
|
||||
{"0": "Together", "1": "There"}
|
||||
{"0": "Monday", "1": "and"}
|
||||
{"0": "Plus", "1": "The"}
|
||||
{"0": "Ultimately", "1": "Since"}
|
||||
{"0": "Accordingly", "1": "At"}
|
||||
{"0": "Consequently", "1": "As"}
|
||||
{"0": "Next", "1": "That"}
|
||||
{"0": "Wednesday", "1": "and"}
|
||||
{"0": "Thursday", "1": "and"}
|
||||
{"0": "Additionally", "1": "Instead"}
|
||||
{"0": "Accordingly", "1": "Rather"}
|
||||
{"0": "Still", "1": "Instead"}
|
||||
{"0": "Consequently", "1": "At"}
|
||||
{"0": "Ultimately", "1": "Originally"}
|
||||
{"0": "Ultimately", "1": "Though"}
|
||||
{"0": "Thus", "1": "At"}
|
||||
{"0": "Ultimately", "1": "Eventually"}
|
||||
{"0": "Thus", "1": "Originally"}
|
||||
{"0": "Thus", "1": "Initially"}
|
||||
{"0": "Ultimately", "1": "Ironically"}
|
||||
{"0": "Thus", "1": "While"}
|
||||
{"0": "Ultimately", "1": "Yes"}
|
||||
{"0": "Thus", "1": "Nonetheless"}
|
||||
{"0": "Thus", "1": "The"}
|
||||
{"0": "Consequently", "1": "While"}
|
||||
{"0": "Ultimately", "1": "Before"}
|
||||
{"0": "Ultimately", "1": "Yet"}
|
||||
{"0": "Though", "1": "The"}
|
||||
{"0": "Plus", "1": "Surprisingly"}
|
||||
{"0": "So", "1": "Although"}
|
||||
{"0": "Second", "1": "\""}
|
||||
{"0": "So", "1": "Rather"}
|
||||
{"0": "Next", "1": "For"}
|
||||
{"0": "Next", "1": "Since"}
|
||||
{"0": "Together", "1": "At"}
|
||||
{"0": "Next", "1": "As"}
|
||||
{"0": "Next", "1": "A"}
|
||||
{"0": "Therefore", "1": "The"}
|
||||
{"0": "Next", "1": "At"}
|
||||
{"0": "Alternatively", "1": "Apparently"}
|
||||
{"0": "Therefore", "1": "Rather"}
|
||||
{"0": "Ultimately", "1": "Although"}
|
||||
{"0": "Ultimately", "1": "Afterwards"}
|
||||
{"0": "Ultimately", "1": "Initially"}
|
||||
{"0": "Ultimately", "1": "After"}
|
||||
{"0": "Otherwise", "1": "At"}
|
||||
{"0": "Currently", "1": "While"}
|
||||
{"0": "Sadly", "1": "No"}
|
||||
{"0": "Suddenly", "1": "The"}
|
||||
{"0": "Moreover", "1": "Today"}
|
||||
{"0": "Moreover", "1": "Furthermore"}
|
||||
{"0": "Alas", "1": "Rather"}
|
||||
{"0": "Online", "1": "Before"}
|
||||
{"0": "Tuesday", "1": "At"}
|
||||
{"0": "Tuesday", "1": "Initially"}
|
||||
{"0": "Tuesday", "1": "and"}
|
||||
{"0": "Tuesday", "1": "As"}
|
||||
{"0": "Suddenly", "1": "Rather"}
|
||||
{"0": "Tuesday", "1": "Since"}
|
||||
{"0": "Tuesday", "1": "Eventually"}
|
||||
{"0": "Wednesday", "1": "First"}
|
||||
{"0": "Thursday", "1": "At"}
|
||||
{"0": "Wednesday", "1": "At"}
|
||||
{"0": "Accordingly", "1": "Nevertheless"}
|
||||
{"0": "Consequently", "1": "Initially"}
|
||||
{"0": "First", "1": "Afterwards"}
|
||||
{"0": "Regardless", "1": "No"}
|
||||
{"0": "Regardless", "1": "At"}
|
||||
{"0": "Tuesday", "1": "First"}
|
||||
{"0": "Moreover", "1": "Instead"}
|
||||
{"0": "Hence", "1": "At"}
|
||||
{"0": "Hence", "1": "Rather"}
|
||||
{"0": "Fortunately", "1": "At"}
|
||||
{"0": "Worldwide", "1": "Accordingly"}
|
||||
{"0": "Or", "1": "A"}
|
||||
{"0": "Currently", "1": "Before"}
|
||||
{"0": "Lastly", "1": "At"}
|
||||
{"0": "Currently", "1": "Well"}
|
|
@ -0,0 +1,100 @@
|
|||
0.72727 {"0": "Outside", "1": "\""}
|
||||
0.68571 {"0": "Yet", "1": "Though"}
|
||||
0.68421 {"0": "Outside", "1": "Tuesday"}
|
||||
0.66667 {"0": "Yet", "1": "Although"}
|
||||
0.66667 {"0": "Anyway", "1": "Hence"}
|
||||
0.66667 {"0": "Interestingly", "1": "Plus"}
|
||||
0.65000 {"0": "Lastly", "1": "Therefore"}
|
||||
0.65000 {"0": "Still", "1": "Yesterday"}
|
||||
0.65000 {"0": "Afterwards", "1": "Monday"}
|
||||
0.62500 {"0": "Otherwise", "1": "Combined"}
|
||||
0.62222 {"0": "Earlier", "1": "Yesterday"}
|
||||
0.61905 {"0": "Similarly", "1": "Today"}
|
||||
0.61538 {"0": "Last", "1": "Tonight"}
|
||||
0.60606 {"0": "Remember", "1": "Tomorrow"}
|
||||
0.60606 {"0": "Remember", "1": "Hence"}
|
||||
0.60606 {"0": "Nonetheless", "1": "Unfortunately"}
|
||||
0.60465 {"0": "Lastly", "1": "Besides"}
|
||||
0.59459 {"0": "Outside", "1": "Saturday"}
|
||||
0.59259 {"0": "Naturally", "1": "Monday"}
|
||||
0.58824 {"0": "Finally", "1": "Additionally"}
|
||||
0.58537 {"0": "But", "1": "Yesterday"}
|
||||
0.58065 {"0": "Anyway", "1": "Sunday"}
|
||||
0.57895 {"0": "Second", "1": "Normally"}
|
||||
0.57895 {"0": "Last", "1": "Tuesday"}
|
||||
0.56410 {"0": "Nevertheless", "1": "Today"}
|
||||
0.56250 {"0": "Anyway", "1": "Tomorrow"}
|
||||
0.55556 {"0": "Finally", "1": "Today"}
|
||||
0.55556 {"0": "Anyway", "1": "Tuesday"}
|
||||
0.55172 {"0": "Remember", "1": "That"}
|
||||
0.55172 {"0": "Remember", "1": "More"}
|
||||
0.55000 {"0": "Still", "1": "Today"}
|
||||
0.54545 {"0": "Outside", "1": "Monday"}
|
||||
0.54054 {"0": "Anyway", "1": "Tonight"}
|
||||
0.54054 {"0": "Ultimately", "1": "Today"}
|
||||
0.53846 {"0": "Remember", "1": "Though"}
|
||||
0.53333 {"0": "Instead", "1": "Initially"}
|
||||
0.52632 {"0": "Thus", "1": "Yesterday"}
|
||||
0.51852 {"0": "Remember", "1": "Alternatively"}
|
||||
0.51613 {"0": "Instead", "1": "Moreover"}
|
||||
0.51613 {"0": "Remember", "1": "Together"}
|
||||
0.51282 {"0": "Nonetheless", "1": "Today"}
|
||||
0.50000 {"0": "Instead", "1": "Today"}
|
||||
0.50000 {"0": "Already", "1": "Wednesday"}
|
||||
0.50000 {"0": "Outside", "1": "Sunday"}
|
||||
0.50000 {"0": "Afterwards", "1": "No"}
|
||||
0.50000 {"0": "Afterwards", "1": "Friday"}
|
||||
0.50000 {"0": "Lastly", "1": "The"}
|
||||
0.50000 {"0": "Anyway", "1": "Fortunately"}
|
||||
0.50000 {"0": "Yet", "1": "Sunday"}
|
||||
0.48649 {"0": "Nonetheless", "1": "Yesterday"}
|
||||
0.48485 {"0": "Afterwards", "1": "Tonight"}
|
||||
0.48485 {"0": "Plus", "1": "Normally"}
|
||||
0.48485 {"0": "however", "1": "Monday"}
|
||||
0.48276 {"0": "Anyway", "1": "The"}
|
||||
0.48276 {"0": "Anyway", "1": "Saturday"}
|
||||
0.47059 {"0": "Last", "1": "Friday"}
|
||||
0.47059 {"0": "and", "1": "\""}
|
||||
0.47059 {"0": "Afterwards", "1": "Tuesday"}
|
||||
0.46667 {"0": "Remember", "1": "\""}
|
||||
0.46667 {"0": "Then", "1": "Moreover"}
|
||||
0.46667 {"0": "Ironically", "1": "Yes"}
|
||||
0.46154 {"0": "Already", "1": "Apparently"}
|
||||
0.45714 {"0": "however", "1": "Tuesday"}
|
||||
0.45714 {"0": "Last", "1": "Next"}
|
||||
0.45455 {"0": "Afterwards", "1": "That"}
|
||||
0.44444 {"0": "Anyway", "1": "Combined"}
|
||||
0.43750 {"0": "After", "1": "The"}
|
||||
0.43750 {"0": "Alas", "1": "Tuesday"}
|
||||
0.43750 {"0": "Yet", "1": "Combined"}
|
||||
0.43750 {"0": "Lastly", "1": "Together"}
|
||||
0.43750 {"0": "Conversely", "1": "Yesterday"}
|
||||
0.43243 {"0": "Last", "1": "Thursday"}
|
||||
0.42857 {"0": "Already", "1": "Tuesday"}
|
||||
0.42424 {"0": "Then", "1": "Yesterday"}
|
||||
0.41379 {"0": "Yet", "1": "Unfortunately"}
|
||||
0.41379 {"0": "After", "1": "Tuesday"}
|
||||
0.41379 {"0": "Fortunately", "1": "The"}
|
||||
0.41379 {"0": "Outside", "1": "Together"}
|
||||
0.41176 {"0": "Earlier", "1": "The"}
|
||||
0.41176 {"0": "however", "1": "Tonight"}
|
||||
0.41176 {"0": "Yet", "1": "Friday"}
|
||||
0.40000 {"0": "Second", "1": "Tomorrow"}
|
||||
0.40000 {"0": "Last", "1": "Combined"}
|
||||
0.40000 {"0": "Last", "1": "More"}
|
||||
0.40000 {"0": "Second", "1": "Combined"}
|
||||
0.38710 {"0": "Regardless", "1": "Combined"}
|
||||
0.38710 {"0": "Further", "1": "Today"}
|
||||
0.35714 {"0": "After", "1": "In"}
|
||||
0.35714 {"0": "Regardless", "1": "Tuesday"}
|
||||
0.33333 {"0": "Already", "1": "Monday"}
|
||||
0.33333 {"0": "Last", "1": "In"}
|
||||
0.33333 {"0": "Last", "1": "The"}
|
||||
0.32258 {"0": "After", "1": "Here"}
|
||||
0.32000 {"0": "On", "1": "Currently"}
|
||||
0.29630 {"0": "Alas", "1": "Monday"}
|
||||
0.29630 {"0": "Last", "1": "Together"}
|
||||
0.26667 {"0": "Earlier", "1": "In"}
|
||||
0.26667 {"0": "But", "1": "Today"}
|
||||
0.24000 {"0": "After", "1": "No"}
|
||||
0.22222 {"0": "however", "1": "There"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Outside", "1": "\""}
|
||||
{"0": "Yet", "1": "Though"}
|
||||
{"0": "Outside", "1": "Tuesday"}
|
||||
{"0": "Yet", "1": "Although"}
|
||||
{"0": "Anyway", "1": "Hence"}
|
||||
{"0": "Interestingly", "1": "Plus"}
|
||||
{"0": "Lastly", "1": "Therefore"}
|
||||
{"0": "Still", "1": "Yesterday"}
|
||||
{"0": "Afterwards", "1": "Monday"}
|
||||
{"0": "Otherwise", "1": "Combined"}
|
||||
{"0": "Earlier", "1": "Yesterday"}
|
||||
{"0": "Similarly", "1": "Today"}
|
||||
{"0": "Last", "1": "Tonight"}
|
||||
{"0": "Remember", "1": "Tomorrow"}
|
||||
{"0": "Remember", "1": "Hence"}
|
||||
{"0": "Nonetheless", "1": "Unfortunately"}
|
||||
{"0": "Lastly", "1": "Besides"}
|
||||
{"0": "Outside", "1": "Saturday"}
|
||||
{"0": "Naturally", "1": "Monday"}
|
||||
{"0": "Finally", "1": "Additionally"}
|
||||
{"0": "But", "1": "Yesterday"}
|
||||
{"0": "Anyway", "1": "Sunday"}
|
||||
{"0": "Second", "1": "Normally"}
|
||||
{"0": "Last", "1": "Tuesday"}
|
||||
{"0": "Nevertheless", "1": "Today"}
|
||||
{"0": "Anyway", "1": "Tomorrow"}
|
||||
{"0": "Finally", "1": "Today"}
|
||||
{"0": "Anyway", "1": "Tuesday"}
|
||||
{"0": "Remember", "1": "That"}
|
||||
{"0": "Remember", "1": "More"}
|
||||
{"0": "Still", "1": "Today"}
|
||||
{"0": "Outside", "1": "Monday"}
|
||||
{"0": "Anyway", "1": "Tonight"}
|
||||
{"0": "Ultimately", "1": "Today"}
|
||||
{"0": "Remember", "1": "Though"}
|
||||
{"0": "Instead", "1": "Initially"}
|
||||
{"0": "Thus", "1": "Yesterday"}
|
||||
{"0": "Remember", "1": "Alternatively"}
|
||||
{"0": "Instead", "1": "Moreover"}
|
||||
{"0": "Remember", "1": "Together"}
|
||||
{"0": "Nonetheless", "1": "Today"}
|
||||
{"0": "Instead", "1": "Today"}
|
||||
{"0": "Already", "1": "Wednesday"}
|
||||
{"0": "Outside", "1": "Sunday"}
|
||||
{"0": "Afterwards", "1": "No"}
|
||||
{"0": "Afterwards", "1": "Friday"}
|
||||
{"0": "Lastly", "1": "The"}
|
||||
{"0": "Anyway", "1": "Fortunately"}
|
||||
{"0": "Yet", "1": "Sunday"}
|
||||
{"0": "Nonetheless", "1": "Yesterday"}
|
||||
{"0": "Afterwards", "1": "Tonight"}
|
||||
{"0": "Plus", "1": "Normally"}
|
||||
{"0": "however", "1": "Monday"}
|
||||
{"0": "Anyway", "1": "The"}
|
||||
{"0": "Anyway", "1": "Saturday"}
|
||||
{"0": "Last", "1": "Friday"}
|
||||
{"0": "and", "1": "\""}
|
||||
{"0": "Afterwards", "1": "Tuesday"}
|
||||
{"0": "Remember", "1": "\""}
|
||||
{"0": "Then", "1": "Moreover"}
|
||||
{"0": "Ironically", "1": "Yes"}
|
||||
{"0": "Already", "1": "Apparently"}
|
||||
{"0": "however", "1": "Tuesday"}
|
||||
{"0": "Last", "1": "Next"}
|
||||
{"0": "Afterwards", "1": "That"}
|
||||
{"0": "Anyway", "1": "Combined"}
|
||||
{"0": "After", "1": "The"}
|
||||
{"0": "Alas", "1": "Tuesday"}
|
||||
{"0": "Yet", "1": "Combined"}
|
||||
{"0": "Lastly", "1": "Together"}
|
||||
{"0": "Conversely", "1": "Yesterday"}
|
||||
{"0": "Last", "1": "Thursday"}
|
||||
{"0": "Already", "1": "Tuesday"}
|
||||
{"0": "Then", "1": "Yesterday"}
|
||||
{"0": "Yet", "1": "Unfortunately"}
|
||||
{"0": "After", "1": "Tuesday"}
|
||||
{"0": "Fortunately", "1": "The"}
|
||||
{"0": "Outside", "1": "Together"}
|
||||
{"0": "Earlier", "1": "The"}
|
||||
{"0": "however", "1": "Tonight"}
|
||||
{"0": "Yet", "1": "Friday"}
|
||||
{"0": "Second", "1": "Tomorrow"}
|
||||
{"0": "Last", "1": "Combined"}
|
||||
{"0": "Last", "1": "More"}
|
||||
{"0": "Second", "1": "Combined"}
|
||||
{"0": "Regardless", "1": "Combined"}
|
||||
{"0": "Further", "1": "Today"}
|
||||
{"0": "After", "1": "In"}
|
||||
{"0": "Regardless", "1": "Tuesday"}
|
||||
{"0": "Already", "1": "Monday"}
|
||||
{"0": "Last", "1": "In"}
|
||||
{"0": "Last", "1": "The"}
|
||||
{"0": "After", "1": "Here"}
|
||||
{"0": "On", "1": "Currently"}
|
||||
{"0": "Alas", "1": "Monday"}
|
||||
{"0": "Last", "1": "Together"}
|
||||
{"0": "Earlier", "1": "In"}
|
||||
{"0": "But", "1": "Today"}
|
||||
{"0": "After", "1": "No"}
|
||||
{"0": "however", "1": "There"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Earlier", "1": "Yesterday"}
|
||||
{"0": "After", "1": "The"}
|
||||
{"0": "Anyway", "1": "Combined"}
|
||||
{"0": "Anyway", "1": "The"}
|
||||
{"0": "Lastly", "1": "Therefore"}
|
||||
{"0": "After", "1": "No"}
|
||||
{"0": "Afterwards", "1": "Tonight"}
|
||||
{"0": "Last", "1": "Tonight"}
|
||||
{"0": "Still", "1": "Today"}
|
||||
{"0": "But", "1": "Yesterday"}
|
||||
{"0": "Last", "1": "Friday"}
|
||||
{"0": "Yet", "1": "Unfortunately"}
|
||||
{"0": "Last", "1": "Thursday"}
|
||||
{"0": "Otherwise", "1": "Combined"}
|
||||
{"0": "Regardless", "1": "Combined"}
|
||||
{"0": "Naturally", "1": "Monday"}
|
||||
{"0": "After", "1": "In"}
|
||||
{"0": "Plus", "1": "Normally"}
|
||||
{"0": "Remember", "1": "That"}
|
||||
{"0": "After", "1": "Here"}
|
||||
{"0": "Anyway", "1": "Saturday"}
|
||||
{"0": "Anyway", "1": "Sunday"}
|
||||
{"0": "however", "1": "There"}
|
||||
{"0": "Remember", "1": "\""}
|
||||
{"0": "Nevertheless", "1": "Today"}
|
||||
{"0": "Remember", "1": "Tomorrow"}
|
||||
{"0": "Alas", "1": "Tuesday"}
|
||||
{"0": "Instead", "1": "Today"}
|
||||
{"0": "Yet", "1": "Though"}
|
||||
{"0": "Anyway", "1": "Tonight"}
|
||||
{"0": "Finally", "1": "Today"}
|
||||
{"0": "Second", "1": "Normally"}
|
||||
{"0": "however", "1": "Tuesday"}
|
||||
{"0": "Yet", "1": "Although"}
|
||||
{"0": "Yet", "1": "Combined"}
|
||||
{"0": "Outside", "1": "\""}
|
||||
{"0": "Anyway", "1": "Hence"}
|
||||
{"0": "Anyway", "1": "Tomorrow"}
|
||||
{"0": "Remember", "1": "More"}
|
||||
{"0": "Regardless", "1": "Tuesday"}
|
||||
{"0": "Last", "1": "Next"}
|
||||
{"0": "Then", "1": "Moreover"}
|
||||
{"0": "After", "1": "Tuesday"}
|
||||
{"0": "Nonetheless", "1": "Today"}
|
||||
{"0": "Still", "1": "Yesterday"}
|
||||
{"0": "Already", "1": "Wednesday"}
|
||||
{"0": "Second", "1": "Tomorrow"}
|
||||
{"0": "Ironically", "1": "Yes"}
|
||||
{"0": "On", "1": "Currently"}
|
||||
{"0": "Remember", "1": "Alternatively"}
|
||||
{"0": "Remember", "1": "Hence"}
|
||||
{"0": "Earlier", "1": "The"}
|
||||
{"0": "Already", "1": "Tuesday"}
|
||||
{"0": "Thus", "1": "Yesterday"}
|
||||
{"0": "Anyway", "1": "Tuesday"}
|
||||
{"0": "Instead", "1": "Moreover"}
|
||||
{"0": "however", "1": "Tonight"}
|
||||
{"0": "and", "1": "\""}
|
||||
{"0": "Already", "1": "Monday"}
|
||||
{"0": "Earlier", "1": "In"}
|
||||
{"0": "Already", "1": "Apparently"}
|
||||
{"0": "Last", "1": "Combined"}
|
||||
{"0": "Last", "1": "In"}
|
||||
{"0": "Alas", "1": "Monday"}
|
||||
{"0": "Outside", "1": "Tuesday"}
|
||||
{"0": "Then", "1": "Yesterday"}
|
||||
{"0": "Afterwards", "1": "That"}
|
||||
{"0": "Outside", "1": "Monday"}
|
||||
{"0": "Outside", "1": "Saturday"}
|
||||
{"0": "Outside", "1": "Sunday"}
|
||||
{"0": "Fortunately", "1": "The"}
|
||||
{"0": "Interestingly", "1": "Plus"}
|
||||
{"0": "Afterwards", "1": "No"}
|
||||
{"0": "Afterwards", "1": "Tuesday"}
|
||||
{"0": "Lastly", "1": "Besides"}
|
||||
{"0": "Last", "1": "Tuesday"}
|
||||
{"0": "Last", "1": "More"}
|
||||
{"0": "Similarly", "1": "Today"}
|
||||
{"0": "Afterwards", "1": "Friday"}
|
||||
{"0": "But", "1": "Today"}
|
||||
{"0": "Last", "1": "The"}
|
||||
{"0": "Last", "1": "Together"}
|
||||
{"0": "Second", "1": "Combined"}
|
||||
{"0": "Lastly", "1": "Together"}
|
||||
{"0": "Instead", "1": "Initially"}
|
||||
{"0": "Lastly", "1": "The"}
|
||||
{"0": "Afterwards", "1": "Monday"}
|
||||
{"0": "Further", "1": "Today"}
|
||||
{"0": "however", "1": "Monday"}
|
||||
{"0": "Nonetheless", "1": "Yesterday"}
|
||||
{"0": "Remember", "1": "Together"}
|
||||
{"0": "Nonetheless", "1": "Unfortunately"}
|
||||
{"0": "Ultimately", "1": "Today"}
|
||||
{"0": "Outside", "1": "Together"}
|
||||
{"0": "Remember", "1": "Though"}
|
||||
{"0": "Anyway", "1": "Fortunately"}
|
||||
{"0": "Yet", "1": "Sunday"}
|
||||
{"0": "Conversely", "1": "Yesterday"}
|
||||
{"0": "Yet", "1": "Friday"}
|
||||
{"0": "Finally", "1": "Additionally"}
|
|
@ -0,0 +1,100 @@
|
|||
0.84375 {"entailment": "So", "not_entailment": "Instead"}
|
||||
0.84375 {"entailment": "Ah", "not_entailment": "Although"}
|
||||
0.81250 {"entailment": "Ah", "not_entailment": "Eventually"}
|
||||
0.81250 {"entailment": "See", "not_entailment": "Regardless"}
|
||||
0.81250 {"entailment": "So", "not_entailment": "However"}
|
||||
0.78125 {"entailment": "Why", "not_entailment": "Furthermore"}
|
||||
0.78125 {"entailment": "So", "not_entailment": "Unfortunately"}
|
||||
0.78125 {"entailment": "Ah", "not_entailment": "Rather"}
|
||||
0.78125 {"entailment": "So", "not_entailment": "Naturally"}
|
||||
0.78125 {"entailment": "Why", "not_entailment": "Meanwhile"}
|
||||
0.78125 {"entailment": "So", "not_entailment": "Also"}
|
||||
0.78125 {"entailment": "Therefore", "not_entailment": "Naturally"}
|
||||
0.78125 {"entailment": "Thus", "not_entailment": "Instead"}
|
||||
0.78125 {"entailment": "well", "not_entailment": "Worldwide"}
|
||||
0.78125 {"entailment": "well", "not_entailment": "Besides"}
|
||||
0.78125 {"entailment": "Ah", "not_entailment": "Luckily"}
|
||||
0.75000 {"entailment": "Therefore", "not_entailment": "Ultimately"}
|
||||
0.75000 {"entailment": "The", "not_entailment": "Together"}
|
||||
0.75000 {"entailment": "So", "not_entailment": "Notably"}
|
||||
0.75000 {"entailment": "Ah", "not_entailment": "Alternatively"}
|
||||
0.75000 {"entailment": "Therefore", "not_entailment": "Also"}
|
||||
0.75000 {"entailment": "Right", "not_entailment": "Alternatively"}
|
||||
0.75000 {"entailment": "Right", "not_entailment": "Instead"}
|
||||
0.75000 {"entailment": "So", "not_entailment": "Remember"}
|
||||
0.75000 {"entailment": "So", "not_entailment": "Actually"}
|
||||
0.75000 {"entailment": "Note", "not_entailment": "Additionally"}
|
||||
0.75000 {"entailment": "Ah", "not_entailment": "Regardless"}
|
||||
0.75000 {"entailment": "Thus", "not_entailment": "Again"}
|
||||
0.71875 {"entailment": "So", "not_entailment": "Meanwhile"}
|
||||
0.71875 {"entailment": "Therefore", "not_entailment": "Furthermore"}
|
||||
0.71875 {"entailment": "Then", "not_entailment": "Eventually"}
|
||||
0.71875 {"entailment": "In", "not_entailment": "Similarly"}
|
||||
0.71875 {"entailment": "Therefore", "not_entailment": "Remember"}
|
||||
0.71875 {"entailment": "Why", "not_entailment": "Ultimately"}
|
||||
0.71875 {"entailment": "Right", "not_entailment": "Worldwide"}
|
||||
0.71875 {"entailment": "Okay", "not_entailment": "Alas"}
|
||||
0.71875 {"entailment": "Note", "not_entailment": "Similarly"}
|
||||
0.71875 {"entailment": "Okay", "not_entailment": "Ultimately"}
|
||||
0.71875 {"entailment": "Okay", "not_entailment": "Remember"}
|
||||
0.71875 {"entailment": "Ah", "not_entailment": "Instead"}
|
||||
0.71875 {"entailment": "Thus", "not_entailment": "Surprisingly"}
|
||||
0.71875 {"entailment": "So", "not_entailment": "Furthermore"}
|
||||
0.71875 {"entailment": "The", "not_entailment": "Besides"}
|
||||
0.71875 {"entailment": "Hence", "not_entailment": "Besides"}
|
||||
0.71875 {"entailment": "Thus", "not_entailment": "Also"}
|
||||
0.71875 {"entailment": "Okay", "not_entailment": "Certainly"}
|
||||
0.68750 {"entailment": "So", "not_entailment": "Ironically"}
|
||||
0.68750 {"entailment": "Thus", "not_entailment": "Ironically"}
|
||||
0.68750 {"entailment": "Ah", "not_entailment": "Moreover"}
|
||||
0.68750 {"entailment": "Therefore", "not_entailment": "Instead"}
|
||||
0.68750 {"entailment": "Thus", "not_entailment": "Furthermore"}
|
||||
0.68750 {"entailment": "So", "not_entailment": "Surprisingly"}
|
||||
0.68750 {"entailment": "Firstly", "not_entailment": "Surprisingly"}
|
||||
0.68750 {"entailment": "Therefore", "not_entailment": "Initially"}
|
||||
0.68750 {"entailment": "Third", "not_entailment": "Further"}
|
||||
0.68750 {"entailment": "Or", "not_entailment": "Conversely"}
|
||||
0.68750 {"entailment": "Third", "not_entailment": "Besides"}
|
||||
0.68750 {"entailment": "Hence", "not_entailment": "Meanwhile"}
|
||||
0.68750 {"entailment": "Now", "not_entailment": "Meanwhile"}
|
||||
0.68750 {"entailment": "Now", "not_entailment": "Instead"}
|
||||
0.68750 {"entailment": "Right", "not_entailment": "Similarly"}
|
||||
0.65625 {"entailment": "Then", "not_entailment": "Meanwhile"}
|
||||
0.65625 {"entailment": "Why", "not_entailment": "Instead"}
|
||||
0.65625 {"entailment": "Therefore", "not_entailment": "Additionally"}
|
||||
0.65625 {"entailment": "Ah", "not_entailment": "Meanwhile"}
|
||||
0.65625 {"entailment": "well", "not_entailment": "Likewise"}
|
||||
0.65625 {"entailment": "See", "not_entailment": "Similarly"}
|
||||
0.65625 {"entailment": "First", "not_entailment": "Interestingly"}
|
||||
0.65625 {"entailment": "Firstly", "not_entailment": "Ironically"}
|
||||
0.65625 {"entailment": "Okay", "not_entailment": "Similarly"}
|
||||
0.65625 {"entailment": "well", "not_entailment": "Similarly"}
|
||||
0.65625 {"entailment": "So", "not_entailment": "Finally"}
|
||||
0.65625 {"entailment": "So", "not_entailment": "Fortunately"}
|
||||
0.65625 {"entailment": "So", "not_entailment": "Initially"}
|
||||
0.65625 {"entailment": "Because", "not_entailment": "Similarly"}
|
||||
0.65625 {"entailment": "well", "not_entailment": "Additionally"}
|
||||
0.65625 {"entailment": "Thus", "not_entailment": "Ultimately"}
|
||||
0.65625 {"entailment": "In", "not_entailment": "Conversely"}
|
||||
0.62500 {"entailment": "Why", "not_entailment": "Additionally"}
|
||||
0.62500 {"entailment": "This", "not_entailment": "Together"}
|
||||
0.62500 {"entailment": "Therefore", "not_entailment": "Meanwhile"}
|
||||
0.62500 {"entailment": "Thus", "not_entailment": "Moreover"}
|
||||
0.62500 {"entailment": "Why", "not_entailment": "Moreover"}
|
||||
0.62500 {"entailment": "Okay", "not_entailment": "Overall"}
|
||||
0.62500 {"entailment": "That", "not_entailment": "Conversely"}
|
||||
0.62500 {"entailment": "Okay", "not_entailment": "Worldwide"}
|
||||
0.62500 {"entailment": "well", "not_entailment": "Conversely"}
|
||||
0.62500 {"entailment": "Okay", "not_entailment": "Instead"}
|
||||
0.62500 {"entailment": "Ah", "not_entailment": "Sadly"}
|
||||
0.62500 {"entailment": "So", "not_entailment": "Again"}
|
||||
0.59375 {"entailment": "Okay", "not_entailment": "Furthermore"}
|
||||
0.59375 {"entailment": "Now", "not_entailment": "Additionally"}
|
||||
0.59375 {"entailment": "Okay", "not_entailment": "Moreover"}
|
||||
0.59375 {"entailment": "Sure", "not_entailment": "Besides"}
|
||||
0.59375 {"entailment": "Thus", "not_entailment": "Initially"}
|
||||
0.59375 {"entailment": "Right", "not_entailment": "Conversely"}
|
||||
0.56250 {"entailment": "For", "not_entailment": "Conversely"}
|
||||
0.56250 {"entailment": "Thus", "not_entailment": "Meanwhile"}
|
||||
0.56250 {"entailment": "Now", "not_entailment": "Similarly"}
|
||||
0.53125 {"entailment": "Indeed", "not_entailment": "However"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "So", "not_entailment": "Instead"}
|
||||
{"entailment": "Ah", "not_entailment": "Although"}
|
||||
{"entailment": "Ah", "not_entailment": "Eventually"}
|
||||
{"entailment": "See", "not_entailment": "Regardless"}
|
||||
{"entailment": "So", "not_entailment": "However"}
|
||||
{"entailment": "Why", "not_entailment": "Furthermore"}
|
||||
{"entailment": "So", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Ah", "not_entailment": "Rather"}
|
||||
{"entailment": "So", "not_entailment": "Naturally"}
|
||||
{"entailment": "Why", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "So", "not_entailment": "Also"}
|
||||
{"entailment": "Therefore", "not_entailment": "Naturally"}
|
||||
{"entailment": "Thus", "not_entailment": "Instead"}
|
||||
{"entailment": "well", "not_entailment": "Worldwide"}
|
||||
{"entailment": "well", "not_entailment": "Besides"}
|
||||
{"entailment": "Ah", "not_entailment": "Luckily"}
|
||||
{"entailment": "Therefore", "not_entailment": "Ultimately"}
|
||||
{"entailment": "The", "not_entailment": "Together"}
|
||||
{"entailment": "So", "not_entailment": "Notably"}
|
||||
{"entailment": "Ah", "not_entailment": "Alternatively"}
|
||||
{"entailment": "Therefore", "not_entailment": "Also"}
|
||||
{"entailment": "Right", "not_entailment": "Alternatively"}
|
||||
{"entailment": "Right", "not_entailment": "Instead"}
|
||||
{"entailment": "So", "not_entailment": "Remember"}
|
||||
{"entailment": "So", "not_entailment": "Actually"}
|
||||
{"entailment": "Note", "not_entailment": "Additionally"}
|
||||
{"entailment": "Ah", "not_entailment": "Regardless"}
|
||||
{"entailment": "Thus", "not_entailment": "Again"}
|
||||
{"entailment": "So", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Therefore", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Then", "not_entailment": "Eventually"}
|
||||
{"entailment": "In", "not_entailment": "Similarly"}
|
||||
{"entailment": "Therefore", "not_entailment": "Remember"}
|
||||
{"entailment": "Why", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Right", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Okay", "not_entailment": "Alas"}
|
||||
{"entailment": "Note", "not_entailment": "Similarly"}
|
||||
{"entailment": "Okay", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Okay", "not_entailment": "Remember"}
|
||||
{"entailment": "Ah", "not_entailment": "Instead"}
|
||||
{"entailment": "Thus", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "So", "not_entailment": "Furthermore"}
|
||||
{"entailment": "The", "not_entailment": "Besides"}
|
||||
{"entailment": "Hence", "not_entailment": "Besides"}
|
||||
{"entailment": "Thus", "not_entailment": "Also"}
|
||||
{"entailment": "Okay", "not_entailment": "Certainly"}
|
||||
{"entailment": "So", "not_entailment": "Ironically"}
|
||||
{"entailment": "Thus", "not_entailment": "Ironically"}
|
||||
{"entailment": "Ah", "not_entailment": "Moreover"}
|
||||
{"entailment": "Therefore", "not_entailment": "Instead"}
|
||||
{"entailment": "Thus", "not_entailment": "Furthermore"}
|
||||
{"entailment": "So", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Firstly", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Therefore", "not_entailment": "Initially"}
|
||||
{"entailment": "Third", "not_entailment": "Further"}
|
||||
{"entailment": "Or", "not_entailment": "Conversely"}
|
||||
{"entailment": "Third", "not_entailment": "Besides"}
|
||||
{"entailment": "Hence", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Now", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Now", "not_entailment": "Instead"}
|
||||
{"entailment": "Right", "not_entailment": "Similarly"}
|
||||
{"entailment": "Then", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Why", "not_entailment": "Instead"}
|
||||
{"entailment": "Therefore", "not_entailment": "Additionally"}
|
||||
{"entailment": "Ah", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "well", "not_entailment": "Likewise"}
|
||||
{"entailment": "See", "not_entailment": "Similarly"}
|
||||
{"entailment": "First", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Firstly", "not_entailment": "Ironically"}
|
||||
{"entailment": "Okay", "not_entailment": "Similarly"}
|
||||
{"entailment": "well", "not_entailment": "Similarly"}
|
||||
{"entailment": "So", "not_entailment": "Finally"}
|
||||
{"entailment": "So", "not_entailment": "Fortunately"}
|
||||
{"entailment": "So", "not_entailment": "Initially"}
|
||||
{"entailment": "Because", "not_entailment": "Similarly"}
|
||||
{"entailment": "well", "not_entailment": "Additionally"}
|
||||
{"entailment": "Thus", "not_entailment": "Ultimately"}
|
||||
{"entailment": "In", "not_entailment": "Conversely"}
|
||||
{"entailment": "Why", "not_entailment": "Additionally"}
|
||||
{"entailment": "This", "not_entailment": "Together"}
|
||||
{"entailment": "Therefore", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Thus", "not_entailment": "Moreover"}
|
||||
{"entailment": "Why", "not_entailment": "Moreover"}
|
||||
{"entailment": "Okay", "not_entailment": "Overall"}
|
||||
{"entailment": "That", "not_entailment": "Conversely"}
|
||||
{"entailment": "Okay", "not_entailment": "Worldwide"}
|
||||
{"entailment": "well", "not_entailment": "Conversely"}
|
||||
{"entailment": "Okay", "not_entailment": "Instead"}
|
||||
{"entailment": "Ah", "not_entailment": "Sadly"}
|
||||
{"entailment": "So", "not_entailment": "Again"}
|
||||
{"entailment": "Okay", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Now", "not_entailment": "Additionally"}
|
||||
{"entailment": "Okay", "not_entailment": "Moreover"}
|
||||
{"entailment": "Sure", "not_entailment": "Besides"}
|
||||
{"entailment": "Thus", "not_entailment": "Initially"}
|
||||
{"entailment": "Right", "not_entailment": "Conversely"}
|
||||
{"entailment": "For", "not_entailment": "Conversely"}
|
||||
{"entailment": "Thus", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Now", "not_entailment": "Similarly"}
|
||||
{"entailment": "Indeed", "not_entailment": "However"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "So", "not_entailment": "Instead"}
|
||||
{"entailment": "Therefore", "not_entailment": "Additionally"}
|
||||
{"entailment": "Why", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Okay", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Then", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "So", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "So", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "So", "not_entailment": "Ironically"}
|
||||
{"entailment": "Why", "not_entailment": "Instead"}
|
||||
{"entailment": "Therefore", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Therefore", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Therefore", "not_entailment": "Instead"}
|
||||
{"entailment": "Thus", "not_entailment": "Ironically"}
|
||||
{"entailment": "Ah", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Ah", "not_entailment": "Rather"}
|
||||
{"entailment": "For", "not_entailment": "Conversely"}
|
||||
{"entailment": "well", "not_entailment": "Likewise"}
|
||||
{"entailment": "Now", "not_entailment": "Additionally"}
|
||||
{"entailment": "Ah", "not_entailment": "Moreover"}
|
||||
{"entailment": "See", "not_entailment": "Similarly"}
|
||||
{"entailment": "Why", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Thus", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "So", "not_entailment": "Naturally"}
|
||||
{"entailment": "The", "not_entailment": "Together"}
|
||||
{"entailment": "First", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Then", "not_entailment": "Eventually"}
|
||||
{"entailment": "So", "not_entailment": "Also"}
|
||||
{"entailment": "In", "not_entailment": "Similarly"}
|
||||
{"entailment": "So", "not_entailment": "Notably"}
|
||||
{"entailment": "Therefore", "not_entailment": "Naturally"}
|
||||
{"entailment": "Thus", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Ah", "not_entailment": "Alternatively"}
|
||||
{"entailment": "Thus", "not_entailment": "Instead"}
|
||||
{"entailment": "well", "not_entailment": "Worldwide"}
|
||||
{"entailment": "So", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Why", "not_entailment": "Additionally"}
|
||||
{"entailment": "Firstly", "not_entailment": "Ironically"}
|
||||
{"entailment": "Firstly", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "This", "not_entailment": "Together"}
|
||||
{"entailment": "Therefore", "not_entailment": "Initially"}
|
||||
{"entailment": "Therefore", "not_entailment": "Remember"}
|
||||
{"entailment": "Therefore", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Therefore", "not_entailment": "Also"}
|
||||
{"entailment": "Okay", "not_entailment": "Similarly"}
|
||||
{"entailment": "Why", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Right", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Okay", "not_entailment": "Alas"}
|
||||
{"entailment": "Right", "not_entailment": "Alternatively"}
|
||||
{"entailment": "Right", "not_entailment": "Instead"}
|
||||
{"entailment": "Note", "not_entailment": "Similarly"}
|
||||
{"entailment": "Thus", "not_entailment": "Moreover"}
|
||||
{"entailment": "Or", "not_entailment": "Conversely"}
|
||||
{"entailment": "Third", "not_entailment": "Further"}
|
||||
{"entailment": "Why", "not_entailment": "Moreover"}
|
||||
{"entailment": "Okay", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Okay", "not_entailment": "Moreover"}
|
||||
{"entailment": "Okay", "not_entailment": "Overall"}
|
||||
{"entailment": "well", "not_entailment": "Similarly"}
|
||||
{"entailment": "That", "not_entailment": "Conversely"}
|
||||
{"entailment": "Okay", "not_entailment": "Worldwide"}
|
||||
{"entailment": "well", "not_entailment": "Conversely"}
|
||||
{"entailment": "well", "not_entailment": "Besides"}
|
||||
{"entailment": "Okay", "not_entailment": "Instead"}
|
||||
{"entailment": "Third", "not_entailment": "Besides"}
|
||||
{"entailment": "So", "not_entailment": "Finally"}
|
||||
{"entailment": "Okay", "not_entailment": "Remember"}
|
||||
{"entailment": "Hence", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Ah", "not_entailment": "Sadly"}
|
||||
{"entailment": "So", "not_entailment": "Remember"}
|
||||
{"entailment": "Now", "not_entailment": "Similarly"}
|
||||
{"entailment": "Ah", "not_entailment": "Eventually"}
|
||||
{"entailment": "Now", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Now", "not_entailment": "Instead"}
|
||||
{"entailment": "Ah", "not_entailment": "Instead"}
|
||||
{"entailment": "So", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Thus", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "So", "not_entailment": "Initially"}
|
||||
{"entailment": "See", "not_entailment": "Regardless"}
|
||||
{"entailment": "So", "not_entailment": "Actually"}
|
||||
{"entailment": "So", "not_entailment": "Again"}
|
||||
{"entailment": "So", "not_entailment": "Furthermore"}
|
||||
{"entailment": "So", "not_entailment": "However"}
|
||||
{"entailment": "The", "not_entailment": "Besides"}
|
||||
{"entailment": "Hence", "not_entailment": "Besides"}
|
||||
{"entailment": "Sure", "not_entailment": "Besides"}
|
||||
{"entailment": "Thus", "not_entailment": "Also"}
|
||||
{"entailment": "Thus", "not_entailment": "Initially"}
|
||||
{"entailment": "Ah", "not_entailment": "Luckily"}
|
||||
{"entailment": "Because", "not_entailment": "Similarly"}
|
||||
{"entailment": "Note", "not_entailment": "Additionally"}
|
||||
{"entailment": "Right", "not_entailment": "Similarly"}
|
||||
{"entailment": "Okay", "not_entailment": "Certainly"}
|
||||
{"entailment": "Ah", "not_entailment": "Although"}
|
||||
{"entailment": "Ah", "not_entailment": "Regardless"}
|
||||
{"entailment": "well", "not_entailment": "Additionally"}
|
||||
{"entailment": "Thus", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Thus", "not_entailment": "Again"}
|
||||
{"entailment": "Indeed", "not_entailment": "However"}
|
||||
{"entailment": "In", "not_entailment": "Conversely"}
|
||||
{"entailment": "Right", "not_entailment": "Conversely"}
|
|
@ -0,0 +1,100 @@
|
|||
0.87500 {"entailment": "Recently", "not_entailment": "Fortunately"}
|
||||
0.87500 {"entailment": "Today", "not_entailment": "Fortunately"}
|
||||
0.84375 {"entailment": "Recently", "not_entailment": "Because"}
|
||||
0.84375 {"entailment": "Recently", "not_entailment": "And"}
|
||||
0.84375 {"entailment": "Together", "not_entailment": "Lastly"}
|
||||
0.84375 {"entailment": "Together", "not_entailment": "Obviously"}
|
||||
0.84375 {"entailment": "Together", "not_entailment": "Clearly"}
|
||||
0.84375 {"entailment": "True", "not_entailment": "Surely"}
|
||||
0.84375 {"entailment": "No", "not_entailment": "Meanwhile"}
|
||||
0.81250 {"entailment": "Recently", "not_entailment": "Mostly"}
|
||||
0.81250 {"entailment": "Above", "not_entailment": "Third"}
|
||||
0.81250 {"entailment": "Currently", "not_entailment": "Still"}
|
||||
0.81250 {"entailment": "Currently", "not_entailment": "Presumably"}
|
||||
0.81250 {"entailment": "Overall", "not_entailment": "Basically"}
|
||||
0.81250 {"entailment": "Currently", "not_entailment": "Remember"}
|
||||
0.81250 {"entailment": "Yesterday", "not_entailment": "Yet"}
|
||||
0.81250 {"entailment": "Okay", "not_entailment": "Then"}
|
||||
0.81250 {"entailment": "Currently", "not_entailment": "Perhaps"}
|
||||
0.81250 {"entailment": "Previously", "not_entailment": "Then"}
|
||||
0.81250 {"entailment": "Currently", "not_entailment": "And"}
|
||||
0.81250 {"entailment": "Together", "not_entailment": "Nonetheless"}
|
||||
0.81250 {"entailment": "Yes", "not_entailment": "Indeed"}
|
||||
0.81250 {"entailment": "Today", "not_entailment": "Yet"}
|
||||
0.81250 {"entailment": "Today", "not_entailment": "Typically"}
|
||||
0.81250 {"entailment": "Recently", "not_entailment": "But"}
|
||||
0.81250 {"entailment": "Today", "not_entailment": "Naturally"}
|
||||
0.81250 {"entailment": "Okay", "not_entailment": "Now"}
|
||||
0.81250 {"entailment": "Granted", "not_entailment": "Mostly"}
|
||||
0.81250 {"entailment": "Together", "not_entailment": "Yet"}
|
||||
0.81250 {"entailment": "Together", "not_entailment": "Presumably"}
|
||||
0.81250 {"entailment": "Together", "not_entailment": "Because"}
|
||||
0.81250 {"entailment": "Together", "not_entailment": "Perhaps"}
|
||||
0.78125 {"entailment": "Granted", "not_entailment": "Regardless"}
|
||||
0.78125 {"entailment": "Recently", "not_entailment": "Instead"}
|
||||
0.78125 {"entailment": "Recently", "not_entailment": "Likewise"}
|
||||
0.78125 {"entailment": "Together", "not_entailment": "Secondly"}
|
||||
0.78125 {"entailment": "Currently", "not_entailment": "Typically"}
|
||||
0.78125 {"entailment": "Recently", "not_entailment": "Furthermore"}
|
||||
0.78125 {"entailment": "No", "not_entailment": "Regardless"}
|
||||
0.78125 {"entailment": "Previously", "not_entailment": "Rather"}
|
||||
0.78125 {"entailment": "Previously", "not_entailment": "Still"}
|
||||
0.78125 {"entailment": "Previously", "not_entailment": "And"}
|
||||
0.78125 {"entailment": "True", "not_entailment": "Besides"}
|
||||
0.78125 {"entailment": "Worldwide", "not_entailment": "Secondly"}
|
||||
0.78125 {"entailment": "Currently", "not_entailment": "Rather"}
|
||||
0.78125 {"entailment": "Worldwide", "not_entailment": "Mostly"}
|
||||
0.78125 {"entailment": "Previously", "not_entailment": "Plus"}
|
||||
0.78125 {"entailment": "Previously", "not_entailment": "Because"}
|
||||
0.78125 {"entailment": "Together", "not_entailment": "Third"}
|
||||
0.78125 {"entailment": "Granted", "not_entailment": "Besides"}
|
||||
0.78125 {"entailment": "Recently", "not_entailment": "Then"}
|
||||
0.78125 {"entailment": "Yes", "not_entailment": "Interestingly"}
|
||||
0.78125 {"entailment": "Recently", "not_entailment": "Still"}
|
||||
0.78125 {"entailment": "Okay", "not_entailment": "But"}
|
||||
0.78125 {"entailment": "Previously", "not_entailment": "Besides"}
|
||||
0.78125 {"entailment": "Together", "not_entailment": "And"}
|
||||
0.78125 {"entailment": "Specifically", "not_entailment": "But"}
|
||||
0.78125 {"entailment": "Originally", "not_entailment": "Certainly"}
|
||||
0.78125 {"entailment": "Yep", "not_entailment": "Because"}
|
||||
0.78125 {"entailment": "Specifically", "not_entailment": "Remember"}
|
||||
0.78125 {"entailment": "Alternatively", "not_entailment": "Presumably"}
|
||||
0.78125 {"entailment": "Today", "not_entailment": "Consequently"}
|
||||
0.75000 {"entailment": "Recently", "not_entailment": "Further"}
|
||||
0.75000 {"entailment": "Yesterday", "not_entailment": "Still"}
|
||||
0.75000 {"entailment": "Recently", "not_entailment": "Additionally"}
|
||||
0.75000 {"entailment": "Recently", "not_entailment": "Similarly"}
|
||||
0.75000 {"entailment": "Recently", "not_entailment": "Yet"}
|
||||
0.75000 {"entailment": "Accordingly", "not_entailment": "Nevertheless"}
|
||||
0.75000 {"entailment": "Okay", "not_entailment": "And"}
|
||||
0.75000 {"entailment": "Together", "not_entailment": "Certainly"}
|
||||
0.75000 {"entailment": "Although", "not_entailment": "But"}
|
||||
0.75000 {"entailment": "Currently", "not_entailment": "Further"}
|
||||
0.75000 {"entailment": "Recently", "not_entailment": "Secondly"}
|
||||
0.75000 {"entailment": "Below", "not_entailment": "Secondly"}
|
||||
0.75000 {"entailment": "Recently", "not_entailment": "Sadly"}
|
||||
0.75000 {"entailment": "Surprisingly", "not_entailment": "Meanwhile"}
|
||||
0.75000 {"entailment": "Above", "not_entailment": "Because"}
|
||||
0.75000 {"entailment": "Previously", "not_entailment": "But"}
|
||||
0.75000 {"entailment": "Furthermore", "not_entailment": "Moreover"}
|
||||
0.75000 {"entailment": "Above", "not_entailment": "Still"}
|
||||
0.75000 {"entailment": "Previously", "not_entailment": "Regardless"}
|
||||
0.75000 {"entailment": "Currently", "not_entailment": "Oh"}
|
||||
0.71875 {"entailment": "Overall", "not_entailment": "Regardless"}
|
||||
0.71875 {"entailment": "Recently", "not_entailment": "Second"}
|
||||
0.71875 {"entailment": "Yep", "not_entailment": "And"}
|
||||
0.71875 {"entailment": "Above", "not_entailment": "Besides"}
|
||||
0.71875 {"entailment": "Recently", "not_entailment": "Ironically"}
|
||||
0.71875 {"entailment": "Recently", "not_entailment": "Essentially"}
|
||||
0.71875 {"entailment": "Previously", "not_entailment": "Yet"}
|
||||
0.71875 {"entailment": "This", "not_entailment": "Surely"}
|
||||
0.71875 {"entailment": "Yep", "not_entailment": "Then"}
|
||||
0.71875 {"entailment": "Therefore", "not_entailment": "Regardless"}
|
||||
0.68750 {"entailment": "Currently", "not_entailment": "Regardless"}
|
||||
0.68750 {"entailment": "Recently", "not_entailment": "Moreover"}
|
||||
0.68750 {"entailment": "Currently", "not_entailment": "Essentially"}
|
||||
0.68750 {"entailment": "This", "not_entailment": "Besides"}
|
||||
0.68750 {"entailment": "Recently", "not_entailment": "Meanwhile"}
|
||||
0.68750 {"entailment": "Together", "not_entailment": "Regardless"}
|
||||
0.65625 {"entailment": "There", "not_entailment": "Besides"}
|
||||
0.65625 {"entailment": "Yep", "not_entailment": "Plus"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Recently", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Today", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Recently", "not_entailment": "Because"}
|
||||
{"entailment": "Recently", "not_entailment": "And"}
|
||||
{"entailment": "Together", "not_entailment": "Lastly"}
|
||||
{"entailment": "Together", "not_entailment": "Obviously"}
|
||||
{"entailment": "Together", "not_entailment": "Clearly"}
|
||||
{"entailment": "True", "not_entailment": "Surely"}
|
||||
{"entailment": "No", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Recently", "not_entailment": "Mostly"}
|
||||
{"entailment": "Above", "not_entailment": "Third"}
|
||||
{"entailment": "Currently", "not_entailment": "Still"}
|
||||
{"entailment": "Currently", "not_entailment": "Presumably"}
|
||||
{"entailment": "Overall", "not_entailment": "Basically"}
|
||||
{"entailment": "Currently", "not_entailment": "Remember"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Yet"}
|
||||
{"entailment": "Okay", "not_entailment": "Then"}
|
||||
{"entailment": "Currently", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Previously", "not_entailment": "Then"}
|
||||
{"entailment": "Currently", "not_entailment": "And"}
|
||||
{"entailment": "Together", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Yes", "not_entailment": "Indeed"}
|
||||
{"entailment": "Today", "not_entailment": "Yet"}
|
||||
{"entailment": "Today", "not_entailment": "Typically"}
|
||||
{"entailment": "Recently", "not_entailment": "But"}
|
||||
{"entailment": "Today", "not_entailment": "Naturally"}
|
||||
{"entailment": "Okay", "not_entailment": "Now"}
|
||||
{"entailment": "Granted", "not_entailment": "Mostly"}
|
||||
{"entailment": "Together", "not_entailment": "Yet"}
|
||||
{"entailment": "Together", "not_entailment": "Presumably"}
|
||||
{"entailment": "Together", "not_entailment": "Because"}
|
||||
{"entailment": "Together", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Granted", "not_entailment": "Regardless"}
|
||||
{"entailment": "Recently", "not_entailment": "Instead"}
|
||||
{"entailment": "Recently", "not_entailment": "Likewise"}
|
||||
{"entailment": "Together", "not_entailment": "Secondly"}
|
||||
{"entailment": "Currently", "not_entailment": "Typically"}
|
||||
{"entailment": "Recently", "not_entailment": "Furthermore"}
|
||||
{"entailment": "No", "not_entailment": "Regardless"}
|
||||
{"entailment": "Previously", "not_entailment": "Rather"}
|
||||
{"entailment": "Previously", "not_entailment": "Still"}
|
||||
{"entailment": "Previously", "not_entailment": "And"}
|
||||
{"entailment": "True", "not_entailment": "Besides"}
|
||||
{"entailment": "Worldwide", "not_entailment": "Secondly"}
|
||||
{"entailment": "Currently", "not_entailment": "Rather"}
|
||||
{"entailment": "Worldwide", "not_entailment": "Mostly"}
|
||||
{"entailment": "Previously", "not_entailment": "Plus"}
|
||||
{"entailment": "Previously", "not_entailment": "Because"}
|
||||
{"entailment": "Together", "not_entailment": "Third"}
|
||||
{"entailment": "Granted", "not_entailment": "Besides"}
|
||||
{"entailment": "Recently", "not_entailment": "Then"}
|
||||
{"entailment": "Yes", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Recently", "not_entailment": "Still"}
|
||||
{"entailment": "Okay", "not_entailment": "But"}
|
||||
{"entailment": "Previously", "not_entailment": "Besides"}
|
||||
{"entailment": "Together", "not_entailment": "And"}
|
||||
{"entailment": "Specifically", "not_entailment": "But"}
|
||||
{"entailment": "Originally", "not_entailment": "Certainly"}
|
||||
{"entailment": "Yep", "not_entailment": "Because"}
|
||||
{"entailment": "Specifically", "not_entailment": "Remember"}
|
||||
{"entailment": "Alternatively", "not_entailment": "Presumably"}
|
||||
{"entailment": "Today", "not_entailment": "Consequently"}
|
||||
{"entailment": "Recently", "not_entailment": "Further"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Still"}
|
||||
{"entailment": "Recently", "not_entailment": "Additionally"}
|
||||
{"entailment": "Recently", "not_entailment": "Similarly"}
|
||||
{"entailment": "Recently", "not_entailment": "Yet"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Okay", "not_entailment": "And"}
|
||||
{"entailment": "Together", "not_entailment": "Certainly"}
|
||||
{"entailment": "Although", "not_entailment": "But"}
|
||||
{"entailment": "Currently", "not_entailment": "Further"}
|
||||
{"entailment": "Recently", "not_entailment": "Secondly"}
|
||||
{"entailment": "Below", "not_entailment": "Secondly"}
|
||||
{"entailment": "Recently", "not_entailment": "Sadly"}
|
||||
{"entailment": "Surprisingly", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Above", "not_entailment": "Because"}
|
||||
{"entailment": "Previously", "not_entailment": "But"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Moreover"}
|
||||
{"entailment": "Above", "not_entailment": "Still"}
|
||||
{"entailment": "Previously", "not_entailment": "Regardless"}
|
||||
{"entailment": "Currently", "not_entailment": "Oh"}
|
||||
{"entailment": "Overall", "not_entailment": "Regardless"}
|
||||
{"entailment": "Recently", "not_entailment": "Second"}
|
||||
{"entailment": "Yep", "not_entailment": "And"}
|
||||
{"entailment": "Above", "not_entailment": "Besides"}
|
||||
{"entailment": "Recently", "not_entailment": "Ironically"}
|
||||
{"entailment": "Recently", "not_entailment": "Essentially"}
|
||||
{"entailment": "Previously", "not_entailment": "Yet"}
|
||||
{"entailment": "This", "not_entailment": "Surely"}
|
||||
{"entailment": "Yep", "not_entailment": "Then"}
|
||||
{"entailment": "Therefore", "not_entailment": "Regardless"}
|
||||
{"entailment": "Currently", "not_entailment": "Regardless"}
|
||||
{"entailment": "Recently", "not_entailment": "Moreover"}
|
||||
{"entailment": "Currently", "not_entailment": "Essentially"}
|
||||
{"entailment": "This", "not_entailment": "Besides"}
|
||||
{"entailment": "Recently", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Together", "not_entailment": "Regardless"}
|
||||
{"entailment": "There", "not_entailment": "Besides"}
|
||||
{"entailment": "Yep", "not_entailment": "Plus"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Recently", "not_entailment": "And"}
|
||||
{"entailment": "Together", "not_entailment": "Secondly"}
|
||||
{"entailment": "Currently", "not_entailment": "Typically"}
|
||||
{"entailment": "Recently", "not_entailment": "Because"}
|
||||
{"entailment": "Currently", "not_entailment": "Regardless"}
|
||||
{"entailment": "Recently", "not_entailment": "Likewise"}
|
||||
{"entailment": "Overall", "not_entailment": "Regardless"}
|
||||
{"entailment": "Recently", "not_entailment": "Instead"}
|
||||
{"entailment": "Granted", "not_entailment": "Regardless"}
|
||||
{"entailment": "Recently", "not_entailment": "Mostly"}
|
||||
{"entailment": "Recently", "not_entailment": "Moreover"}
|
||||
{"entailment": "Recently", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Recently", "not_entailment": "Second"}
|
||||
{"entailment": "Above", "not_entailment": "Third"}
|
||||
{"entailment": "No", "not_entailment": "Regardless"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Still"}
|
||||
{"entailment": "Recently", "not_entailment": "Further"}
|
||||
{"entailment": "Recently", "not_entailment": "Additionally"}
|
||||
{"entailment": "Together", "not_entailment": "Lastly"}
|
||||
{"entailment": "Previously", "not_entailment": "Rather"}
|
||||
{"entailment": "Currently", "not_entailment": "Still"}
|
||||
{"entailment": "Recently", "not_entailment": "Similarly"}
|
||||
{"entailment": "Previously", "not_entailment": "Still"}
|
||||
{"entailment": "Currently", "not_entailment": "Presumably"}
|
||||
{"entailment": "Recently", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Yep", "not_entailment": "And"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Recently", "not_entailment": "Yet"}
|
||||
{"entailment": "Together", "not_entailment": "Obviously"}
|
||||
{"entailment": "Together", "not_entailment": "Clearly"}
|
||||
{"entailment": "Okay", "not_entailment": "And"}
|
||||
{"entailment": "Previously", "not_entailment": "And"}
|
||||
{"entailment": "Currently", "not_entailment": "Essentially"}
|
||||
{"entailment": "True", "not_entailment": "Besides"}
|
||||
{"entailment": "Worldwide", "not_entailment": "Secondly"}
|
||||
{"entailment": "Above", "not_entailment": "Besides"}
|
||||
{"entailment": "Currently", "not_entailment": "Rather"}
|
||||
{"entailment": "True", "not_entailment": "Surely"}
|
||||
{"entailment": "Overall", "not_entailment": "Basically"}
|
||||
{"entailment": "Currently", "not_entailment": "Remember"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Yet"}
|
||||
{"entailment": "Together", "not_entailment": "Certainly"}
|
||||
{"entailment": "Worldwide", "not_entailment": "Mostly"}
|
||||
{"entailment": "There", "not_entailment": "Besides"}
|
||||
{"entailment": "Okay", "not_entailment": "Then"}
|
||||
{"entailment": "Currently", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Previously", "not_entailment": "Then"}
|
||||
{"entailment": "Previously", "not_entailment": "Plus"}
|
||||
{"entailment": "Currently", "not_entailment": "And"}
|
||||
{"entailment": "Previously", "not_entailment": "Because"}
|
||||
{"entailment": "Although", "not_entailment": "But"}
|
||||
{"entailment": "Together", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Together", "not_entailment": "Third"}
|
||||
{"entailment": "Currently", "not_entailment": "Further"}
|
||||
{"entailment": "Granted", "not_entailment": "Besides"}
|
||||
{"entailment": "This", "not_entailment": "Besides"}
|
||||
{"entailment": "Recently", "not_entailment": "Ironically"}
|
||||
{"entailment": "Recently", "not_entailment": "Essentially"}
|
||||
{"entailment": "Yes", "not_entailment": "Indeed"}
|
||||
{"entailment": "Recently", "not_entailment": "Secondly"}
|
||||
{"entailment": "Recently", "not_entailment": "Then"}
|
||||
{"entailment": "Today", "not_entailment": "Yet"}
|
||||
{"entailment": "Below", "not_entailment": "Secondly"}
|
||||
{"entailment": "No", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Today", "not_entailment": "Typically"}
|
||||
{"entailment": "Recently", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Recently", "not_entailment": "Sadly"}
|
||||
{"entailment": "Recently", "not_entailment": "But"}
|
||||
{"entailment": "Yes", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Recently", "not_entailment": "Still"}
|
||||
{"entailment": "Surprisingly", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Previously", "not_entailment": "Yet"}
|
||||
{"entailment": "Above", "not_entailment": "Because"}
|
||||
{"entailment": "This", "not_entailment": "Surely"}
|
||||
{"entailment": "Previously", "not_entailment": "But"}
|
||||
{"entailment": "Today", "not_entailment": "Naturally"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Moreover"}
|
||||
{"entailment": "Okay", "not_entailment": "Now"}
|
||||
{"entailment": "Above", "not_entailment": "Still"}
|
||||
{"entailment": "Okay", "not_entailment": "But"}
|
||||
{"entailment": "Previously", "not_entailment": "Besides"}
|
||||
{"entailment": "Yep", "not_entailment": "Then"}
|
||||
{"entailment": "Granted", "not_entailment": "Mostly"}
|
||||
{"entailment": "Previously", "not_entailment": "Regardless"}
|
||||
{"entailment": "Yep", "not_entailment": "Plus"}
|
||||
{"entailment": "Together", "not_entailment": "And"}
|
||||
{"entailment": "Together", "not_entailment": "Yet"}
|
||||
{"entailment": "Specifically", "not_entailment": "But"}
|
||||
{"entailment": "Together", "not_entailment": "Presumably"}
|
||||
{"entailment": "Together", "not_entailment": "Because"}
|
||||
{"entailment": "Originally", "not_entailment": "Certainly"}
|
||||
{"entailment": "Yep", "not_entailment": "Because"}
|
||||
{"entailment": "Specifically", "not_entailment": "Remember"}
|
||||
{"entailment": "Together", "not_entailment": "Regardless"}
|
||||
{"entailment": "Currently", "not_entailment": "Oh"}
|
||||
{"entailment": "Alternatively", "not_entailment": "Presumably"}
|
||||
{"entailment": "Today", "not_entailment": "Consequently"}
|
||||
{"entailment": "Today", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Therefore", "not_entailment": "Regardless"}
|
||||
{"entailment": "Together", "not_entailment": "Perhaps"}
|
|
@ -0,0 +1,100 @@
|
|||
0.81250 {"entailment": "Together", "not_entailment": "And"}
|
||||
0.78125 {"entailment": "The", "not_entailment": "Probably"}
|
||||
0.78125 {"entailment": "Consequently", "not_entailment": "Also"}
|
||||
0.78125 {"entailment": "Together", "not_entailment": "Although"}
|
||||
0.78125 {"entailment": "Yep", "not_entailment": "Personally"}
|
||||
0.75000 {"entailment": "Originally", "not_entailment": "Although"}
|
||||
0.75000 {"entailment": "This", "not_entailment": "Because"}
|
||||
0.75000 {"entailment": "Soon", "not_entailment": "Because"}
|
||||
0.75000 {"entailment": "Ah", "not_entailment": "Luckily"}
|
||||
0.75000 {"entailment": "Originally", "not_entailment": "Again"}
|
||||
0.75000 {"entailment": "Hence", "not_entailment": "Nonetheless"}
|
||||
0.75000 {"entailment": "Hence", "not_entailment": "Fortunately"}
|
||||
0.75000 {"entailment": "Eventually", "not_entailment": "Fortunately"}
|
||||
0.71875 {"entailment": "Hence", "not_entailment": "Because"}
|
||||
0.71875 {"entailment": "Later", "not_entailment": "Although"}
|
||||
0.71875 {"entailment": "The", "not_entailment": "Although"}
|
||||
0.71875 {"entailment": "The", "not_entailment": "Mostly"}
|
||||
0.71875 {"entailment": "Yesterday", "not_entailment": "Although"}
|
||||
0.71875 {"entailment": "After", "not_entailment": "But"}
|
||||
0.71875 {"entailment": "Together", "not_entailment": "Luckily"}
|
||||
0.68750 {"entailment": "After", "not_entailment": "Regardless"}
|
||||
0.68750 {"entailment": "Yes", "not_entailment": "Interestingly"}
|
||||
0.68750 {"entailment": "Hence", "not_entailment": "But"}
|
||||
0.68750 {"entailment": "Additionally", "not_entailment": "Unfortunately"}
|
||||
0.68750 {"entailment": "Obviously", "not_entailment": "But"}
|
||||
0.68750 {"entailment": "Likewise", "not_entailment": "Luckily"}
|
||||
0.68750 {"entailment": "Today", "not_entailment": "Fortunately"}
|
||||
0.68750 {"entailment": "Later", "not_entailment": "Regardless"}
|
||||
0.68750 {"entailment": "Sure", "not_entailment": "Personally"}
|
||||
0.68750 {"entailment": "True", "not_entailment": "Still"}
|
||||
0.68750 {"entailment": "Furthermore", "not_entailment": "Fortunately"}
|
||||
0.65625 {"entailment": "This", "not_entailment": "Personally"}
|
||||
0.65625 {"entailment": "Hence", "not_entailment": "And"}
|
||||
0.65625 {"entailment": "Hence", "not_entailment": "Regardless"}
|
||||
0.65625 {"entailment": "After", "not_entailment": "Still"}
|
||||
0.65625 {"entailment": "Therefore", "not_entailment": "Why"}
|
||||
0.65625 {"entailment": "The", "not_entailment": "Personally"}
|
||||
0.65625 {"entailment": "Besides", "not_entailment": "Regardless"}
|
||||
0.65625 {"entailment": "Therefore", "not_entailment": "Because"}
|
||||
0.65625 {"entailment": "After", "not_entailment": "And"}
|
||||
0.65625 {"entailment": "Simply", "not_entailment": "Mostly"}
|
||||
0.65625 {"entailment": "Meanwhile", "not_entailment": "Again"}
|
||||
0.65625 {"entailment": "Accordingly", "not_entailment": "Still"}
|
||||
0.65625 {"entailment": "Accordingly", "not_entailment": "Sadly"}
|
||||
0.65625 {"entailment": "Here", "not_entailment": "Remember"}
|
||||
0.65625 {"entailment": "After", "not_entailment": "Somehow"}
|
||||
0.65625 {"entailment": "Second", "not_entailment": "But"}
|
||||
0.65625 {"entailment": "Accordingly", "not_entailment": "And"}
|
||||
0.65625 {"entailment": "Accordingly", "not_entailment": "Although"}
|
||||
0.65625 {"entailment": "Naturally", "not_entailment": "Surprisingly"}
|
||||
0.65625 {"entailment": "Yesterday", "not_entailment": "Instead"}
|
||||
0.62500 {"entailment": "Accordingly", "not_entailment": "Fortunately"}
|
||||
0.62500 {"entailment": "Finally", "not_entailment": "Naturally"}
|
||||
0.62500 {"entailment": "Similarly", "not_entailment": "And"}
|
||||
0.62500 {"entailment": "Besides", "not_entailment": "Third"}
|
||||
0.62500 {"entailment": "Consequently", "not_entailment": "Although"}
|
||||
0.62500 {"entailment": "Simply", "not_entailment": "Often"}
|
||||
0.62500 {"entailment": "For", "not_entailment": "Probably"}
|
||||
0.62500 {"entailment": "Besides", "not_entailment": "Luckily"}
|
||||
0.62500 {"entailment": "Besides", "not_entailment": "Note"}
|
||||
0.62500 {"entailment": "Later", "not_entailment": "Luckily"}
|
||||
0.59375 {"entailment": "After", "not_entailment": "When"}
|
||||
0.59375 {"entailment": "Likewise", "not_entailment": "Third"}
|
||||
0.59375 {"entailment": "Besides", "not_entailment": "Although"}
|
||||
0.59375 {"entailment": "Further", "not_entailment": "Although"}
|
||||
0.59375 {"entailment": "So", "not_entailment": "Unfortunately"}
|
||||
0.59375 {"entailment": "Right", "not_entailment": "Okay"}
|
||||
0.59375 {"entailment": "Hence", "not_entailment": "Ah"}
|
||||
0.59375 {"entailment": "Sure", "not_entailment": "Luckily"}
|
||||
0.59375 {"entailment": "Hence", "not_entailment": "One"}
|
||||
0.59375 {"entailment": "After", "not_entailment": "Typically"}
|
||||
0.59375 {"entailment": "After", "not_entailment": "Perhaps"}
|
||||
0.59375 {"entailment": "Besides", "not_entailment": "Anyway"}
|
||||
0.56250 {"entailment": "After", "not_entailment": "Note"}
|
||||
0.56250 {"entailment": "Hence", "not_entailment": "Why"}
|
||||
0.56250 {"entailment": "Moreover", "not_entailment": "And"}
|
||||
0.56250 {"entailment": "Moreover", "not_entailment": "No"}
|
||||
0.56250 {"entailment": "Accordingly", "not_entailment": "Overall"}
|
||||
0.56250 {"entailment": "After", "not_entailment": "Third"}
|
||||
0.56250 {"entailment": "Besides", "not_entailment": "Somehow"}
|
||||
0.56250 {"entailment": "Accordingly", "not_entailment": "Unfortunately"}
|
||||
0.56250 {"entailment": "Besides", "not_entailment": "When"}
|
||||
0.56250 {"entailment": "Consequently", "not_entailment": "Why"}
|
||||
0.56250 {"entailment": "After", "not_entailment": "Normally"}
|
||||
0.56250 {"entailment": "Earlier", "not_entailment": "Still"}
|
||||
0.56250 {"entailment": "Earlier", "not_entailment": "Meanwhile"}
|
||||
0.56250 {"entailment": "Hence", "not_entailment": "Unfortunately"}
|
||||
0.53125 {"entailment": "Besides", "not_entailment": "Still"}
|
||||
0.53125 {"entailment": "Sure", "not_entailment": "Mostly"}
|
||||
0.53125 {"entailment": "Similarly", "not_entailment": "Although"}
|
||||
0.53125 {"entailment": "Hence", "not_entailment": "Okay"}
|
||||
0.53125 {"entailment": "Today", "not_entailment": "Unfortunately"}
|
||||
0.53125 {"entailment": "Besides", "not_entailment": "Personally"}
|
||||
0.53125 {"entailment": "This", "not_entailment": "Mostly"}
|
||||
0.53125 {"entailment": "Besides", "not_entailment": "Probably"}
|
||||
0.53125 {"entailment": "Further", "not_entailment": "Mostly"}
|
||||
0.53125 {"entailment": "After", "not_entailment": "Mostly"}
|
||||
0.50000 {"entailment": "Besides", "not_entailment": "Normally"}
|
||||
0.46875 {"entailment": "Similarly", "not_entailment": "Personally"}
|
||||
0.46875 {"entailment": "Furthermore", "not_entailment": "Unfortunately"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Together", "not_entailment": "And"}
|
||||
{"entailment": "The", "not_entailment": "Probably"}
|
||||
{"entailment": "Consequently", "not_entailment": "Also"}
|
||||
{"entailment": "Together", "not_entailment": "Although"}
|
||||
{"entailment": "Yep", "not_entailment": "Personally"}
|
||||
{"entailment": "Originally", "not_entailment": "Although"}
|
||||
{"entailment": "This", "not_entailment": "Because"}
|
||||
{"entailment": "Soon", "not_entailment": "Because"}
|
||||
{"entailment": "Ah", "not_entailment": "Luckily"}
|
||||
{"entailment": "Originally", "not_entailment": "Again"}
|
||||
{"entailment": "Hence", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Hence", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Eventually", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Hence", "not_entailment": "Because"}
|
||||
{"entailment": "Later", "not_entailment": "Although"}
|
||||
{"entailment": "The", "not_entailment": "Although"}
|
||||
{"entailment": "The", "not_entailment": "Mostly"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Although"}
|
||||
{"entailment": "After", "not_entailment": "But"}
|
||||
{"entailment": "Together", "not_entailment": "Luckily"}
|
||||
{"entailment": "After", "not_entailment": "Regardless"}
|
||||
{"entailment": "Yes", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Hence", "not_entailment": "But"}
|
||||
{"entailment": "Additionally", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Obviously", "not_entailment": "But"}
|
||||
{"entailment": "Likewise", "not_entailment": "Luckily"}
|
||||
{"entailment": "Today", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Later", "not_entailment": "Regardless"}
|
||||
{"entailment": "Sure", "not_entailment": "Personally"}
|
||||
{"entailment": "True", "not_entailment": "Still"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Fortunately"}
|
||||
{"entailment": "This", "not_entailment": "Personally"}
|
||||
{"entailment": "Hence", "not_entailment": "And"}
|
||||
{"entailment": "Hence", "not_entailment": "Regardless"}
|
||||
{"entailment": "After", "not_entailment": "Still"}
|
||||
{"entailment": "Therefore", "not_entailment": "Why"}
|
||||
{"entailment": "The", "not_entailment": "Personally"}
|
||||
{"entailment": "Besides", "not_entailment": "Regardless"}
|
||||
{"entailment": "Therefore", "not_entailment": "Because"}
|
||||
{"entailment": "After", "not_entailment": "And"}
|
||||
{"entailment": "Simply", "not_entailment": "Mostly"}
|
||||
{"entailment": "Meanwhile", "not_entailment": "Again"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Still"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Sadly"}
|
||||
{"entailment": "Here", "not_entailment": "Remember"}
|
||||
{"entailment": "After", "not_entailment": "Somehow"}
|
||||
{"entailment": "Second", "not_entailment": "But"}
|
||||
{"entailment": "Accordingly", "not_entailment": "And"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Although"}
|
||||
{"entailment": "Naturally", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Instead"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Finally", "not_entailment": "Naturally"}
|
||||
{"entailment": "Similarly", "not_entailment": "And"}
|
||||
{"entailment": "Besides", "not_entailment": "Third"}
|
||||
{"entailment": "Consequently", "not_entailment": "Although"}
|
||||
{"entailment": "Simply", "not_entailment": "Often"}
|
||||
{"entailment": "For", "not_entailment": "Probably"}
|
||||
{"entailment": "Besides", "not_entailment": "Luckily"}
|
||||
{"entailment": "Besides", "not_entailment": "Note"}
|
||||
{"entailment": "Later", "not_entailment": "Luckily"}
|
||||
{"entailment": "After", "not_entailment": "When"}
|
||||
{"entailment": "Likewise", "not_entailment": "Third"}
|
||||
{"entailment": "Besides", "not_entailment": "Although"}
|
||||
{"entailment": "Further", "not_entailment": "Although"}
|
||||
{"entailment": "So", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Right", "not_entailment": "Okay"}
|
||||
{"entailment": "Hence", "not_entailment": "Ah"}
|
||||
{"entailment": "Sure", "not_entailment": "Luckily"}
|
||||
{"entailment": "Hence", "not_entailment": "One"}
|
||||
{"entailment": "After", "not_entailment": "Typically"}
|
||||
{"entailment": "After", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Besides", "not_entailment": "Anyway"}
|
||||
{"entailment": "After", "not_entailment": "Note"}
|
||||
{"entailment": "Hence", "not_entailment": "Why"}
|
||||
{"entailment": "Moreover", "not_entailment": "And"}
|
||||
{"entailment": "Moreover", "not_entailment": "No"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Overall"}
|
||||
{"entailment": "After", "not_entailment": "Third"}
|
||||
{"entailment": "Besides", "not_entailment": "Somehow"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Besides", "not_entailment": "When"}
|
||||
{"entailment": "Consequently", "not_entailment": "Why"}
|
||||
{"entailment": "After", "not_entailment": "Normally"}
|
||||
{"entailment": "Earlier", "not_entailment": "Still"}
|
||||
{"entailment": "Earlier", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Hence", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Besides", "not_entailment": "Still"}
|
||||
{"entailment": "Sure", "not_entailment": "Mostly"}
|
||||
{"entailment": "Similarly", "not_entailment": "Although"}
|
||||
{"entailment": "Hence", "not_entailment": "Okay"}
|
||||
{"entailment": "Today", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Besides", "not_entailment": "Personally"}
|
||||
{"entailment": "This", "not_entailment": "Mostly"}
|
||||
{"entailment": "Besides", "not_entailment": "Probably"}
|
||||
{"entailment": "Further", "not_entailment": "Mostly"}
|
||||
{"entailment": "After", "not_entailment": "Mostly"}
|
||||
{"entailment": "Besides", "not_entailment": "Normally"}
|
||||
{"entailment": "Similarly", "not_entailment": "Personally"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Unfortunately"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "After", "not_entailment": "Note"}
|
||||
{"entailment": "Besides", "not_entailment": "Still"}
|
||||
{"entailment": "After", "not_entailment": "When"}
|
||||
{"entailment": "The", "not_entailment": "Probably"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Hence", "not_entailment": "And"}
|
||||
{"entailment": "This", "not_entailment": "Personally"}
|
||||
{"entailment": "Hence", "not_entailment": "Because"}
|
||||
{"entailment": "Hence", "not_entailment": "Why"}
|
||||
{"entailment": "Similarly", "not_entailment": "Personally"}
|
||||
{"entailment": "Moreover", "not_entailment": "And"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Overall"}
|
||||
{"entailment": "Sure", "not_entailment": "Mostly"}
|
||||
{"entailment": "Finally", "not_entailment": "Naturally"}
|
||||
{"entailment": "Moreover", "not_entailment": "No"}
|
||||
{"entailment": "Likewise", "not_entailment": "Third"}
|
||||
{"entailment": "Later", "not_entailment": "Although"}
|
||||
{"entailment": "After", "not_entailment": "Third"}
|
||||
{"entailment": "After", "not_entailment": "Regardless"}
|
||||
{"entailment": "Hence", "not_entailment": "Regardless"}
|
||||
{"entailment": "After", "not_entailment": "Still"}
|
||||
{"entailment": "Hence", "not_entailment": "But"}
|
||||
{"entailment": "Yes", "not_entailment": "Interestingly"}
|
||||
{"entailment": "The", "not_entailment": "Although"}
|
||||
{"entailment": "Hence", "not_entailment": "Okay"}
|
||||
{"entailment": "Similarly", "not_entailment": "Although"}
|
||||
{"entailment": "Similarly", "not_entailment": "And"}
|
||||
{"entailment": "Additionally", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Obviously", "not_entailment": "But"}
|
||||
{"entailment": "Besides", "not_entailment": "Somehow"}
|
||||
{"entailment": "Besides", "not_entailment": "Third"}
|
||||
{"entailment": "Together", "not_entailment": "And"}
|
||||
{"entailment": "Therefore", "not_entailment": "Why"}
|
||||
{"entailment": "Today", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Besides", "not_entailment": "Personally"}
|
||||
{"entailment": "Originally", "not_entailment": "Although"}
|
||||
{"entailment": "Besides", "not_entailment": "Normally"}
|
||||
{"entailment": "Besides", "not_entailment": "Although"}
|
||||
{"entailment": "The", "not_entailment": "Mostly"}
|
||||
{"entailment": "The", "not_entailment": "Personally"}
|
||||
{"entailment": "Therefore", "not_entailment": "Because"}
|
||||
{"entailment": "Besides", "not_entailment": "Regardless"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Consequently", "not_entailment": "Also"}
|
||||
{"entailment": "Further", "not_entailment": "Although"}
|
||||
{"entailment": "This", "not_entailment": "Mostly"}
|
||||
{"entailment": "Consequently", "not_entailment": "Although"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Although"}
|
||||
{"entailment": "Likewise", "not_entailment": "Luckily"}
|
||||
{"entailment": "After", "not_entailment": "And"}
|
||||
{"entailment": "Together", "not_entailment": "Although"}
|
||||
{"entailment": "Besides", "not_entailment": "Probably"}
|
||||
{"entailment": "So", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "This", "not_entailment": "Because"}
|
||||
{"entailment": "Simply", "not_entailment": "Mostly"}
|
||||
{"entailment": "Simply", "not_entailment": "Often"}
|
||||
{"entailment": "Further", "not_entailment": "Mostly"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Meanwhile", "not_entailment": "Again"}
|
||||
{"entailment": "Right", "not_entailment": "Okay"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Still"}
|
||||
{"entailment": "Hence", "not_entailment": "Ah"}
|
||||
{"entailment": "Today", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Soon", "not_entailment": "Because"}
|
||||
{"entailment": "Sure", "not_entailment": "Luckily"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Sadly"}
|
||||
{"entailment": "Ah", "not_entailment": "Luckily"}
|
||||
{"entailment": "Here", "not_entailment": "Remember"}
|
||||
{"entailment": "After", "not_entailment": "Somehow"}
|
||||
{"entailment": "Hence", "not_entailment": "One"}
|
||||
{"entailment": "After", "not_entailment": "Mostly"}
|
||||
{"entailment": "Originally", "not_entailment": "Again"}
|
||||
{"entailment": "Second", "not_entailment": "But"}
|
||||
{"entailment": "Besides", "not_entailment": "When"}
|
||||
{"entailment": "For", "not_entailment": "Probably"}
|
||||
{"entailment": "After", "not_entailment": "Typically"}
|
||||
{"entailment": "Consequently", "not_entailment": "Why"}
|
||||
{"entailment": "After", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Besides", "not_entailment": "Luckily"}
|
||||
{"entailment": "Yep", "not_entailment": "Personally"}
|
||||
{"entailment": "Later", "not_entailment": "Regardless"}
|
||||
{"entailment": "After", "not_entailment": "Normally"}
|
||||
{"entailment": "Accordingly", "not_entailment": "And"}
|
||||
{"entailment": "Besides", "not_entailment": "Note"}
|
||||
{"entailment": "Earlier", "not_entailment": "Still"}
|
||||
{"entailment": "After", "not_entailment": "But"}
|
||||
{"entailment": "Later", "not_entailment": "Luckily"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Although"}
|
||||
{"entailment": "Besides", "not_entailment": "Anyway"}
|
||||
{"entailment": "Earlier", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Naturally", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Together", "not_entailment": "Luckily"}
|
||||
{"entailment": "Sure", "not_entailment": "Personally"}
|
||||
{"entailment": "Hence", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "True", "not_entailment": "Still"}
|
||||
{"entailment": "Hence", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Hence", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Eventually", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Instead"}
|
|
@ -0,0 +1,100 @@
|
|||
0.93750 {"entailment": "Okay", "not_entailment": "Nonetheless"}
|
||||
0.90625 {"entailment": "Notably", "not_entailment": "Yet"}
|
||||
0.90625 {"entailment": "Specifically", "not_entailment": "Notably"}
|
||||
0.87500 {"entailment": "See", "not_entailment": "Nonetheless"}
|
||||
0.87500 {"entailment": "Therefore", "not_entailment": "Nonetheless"}
|
||||
0.87500 {"entailment": "Specifically", "not_entailment": "Nevertheless"}
|
||||
0.87500 {"entailment": "Specifically", "not_entailment": "Ultimately"}
|
||||
0.87500 {"entailment": "One", "not_entailment": "Rather"}
|
||||
0.87500 {"entailment": "Yes", "not_entailment": "Certainly"}
|
||||
0.87500 {"entailment": "Lastly", "not_entailment": "Regardless"}
|
||||
0.84375 {"entailment": "Therefore", "not_entailment": "Overall"}
|
||||
0.84375 {"entailment": "Secondly", "not_entailment": "Nonetheless"}
|
||||
0.84375 {"entailment": "Today", "not_entailment": "Nonetheless"}
|
||||
0.84375 {"entailment": "See", "not_entailment": "Luckily"}
|
||||
0.84375 {"entailment": "Remember", "not_entailment": "Obviously"}
|
||||
0.84375 {"entailment": "So", "not_entailment": "Nonetheless"}
|
||||
0.84375 {"entailment": "Basically", "not_entailment": "Essentially"}
|
||||
0.84375 {"entailment": "Additionally", "not_entailment": "But"}
|
||||
0.81250 {"entailment": "Specifically", "not_entailment": "Clearly"}
|
||||
0.81250 {"entailment": "Lastly", "not_entailment": "Nonetheless"}
|
||||
0.81250 {"entailment": "Specifically", "not_entailment": "Overall"}
|
||||
0.81250 {"entailment": "Second", "not_entailment": "Instead"}
|
||||
0.81250 {"entailment": "Sure", "not_entailment": "Surely"}
|
||||
0.81250 {"entailment": "So", "not_entailment": "Ironically"}
|
||||
0.81250 {"entailment": "Yep", "not_entailment": "Rather"}
|
||||
0.81250 {"entailment": "Recently", "not_entailment": "Luckily"}
|
||||
0.81250 {"entailment": "One", "not_entailment": "Still"}
|
||||
0.81250 {"entailment": "Yes", "not_entailment": "Well"}
|
||||
0.78125 {"entailment": "Remember", "not_entailment": "Fortunately"}
|
||||
0.78125 {"entailment": "Earlier", "not_entailment": "Nevertheless"}
|
||||
0.78125 {"entailment": "Likewise", "not_entailment": "Further"}
|
||||
0.78125 {"entailment": "Therefore", "not_entailment": "Luckily"}
|
||||
0.78125 {"entailment": "Right", "not_entailment": "Regardless"}
|
||||
0.78125 {"entailment": "Right", "not_entailment": "Nonetheless"}
|
||||
0.78125 {"entailment": "First", "not_entailment": "Fortunately"}
|
||||
0.78125 {"entailment": "Also", "not_entailment": "Instead"}
|
||||
0.78125 {"entailment": "Second", "not_entailment": "Further"}
|
||||
0.78125 {"entailment": "Previously", "not_entailment": "But"}
|
||||
0.78125 {"entailment": "Consequently", "not_entailment": "Nonetheless"}
|
||||
0.78125 {"entailment": "Additionally", "not_entailment": "Yet"}
|
||||
0.78125 {"entailment": "Previously", "not_entailment": "Then"}
|
||||
0.78125 {"entailment": "Specifically", "not_entailment": "Fortunately"}
|
||||
0.78125 {"entailment": "Specifically", "not_entailment": "Here"}
|
||||
0.78125 {"entailment": "Likewise", "not_entailment": "Although"}
|
||||
0.78125 {"entailment": "Likewise", "not_entailment": "Still"}
|
||||
0.78125 {"entailment": "Sure", "not_entailment": "Thankfully"}
|
||||
0.78125 {"entailment": "Second", "not_entailment": "There"}
|
||||
0.78125 {"entailment": "Third", "not_entailment": "Presumably"}
|
||||
0.78125 {"entailment": "Recently", "not_entailment": "Nonetheless"}
|
||||
0.78125 {"entailment": "Yesterday", "not_entailment": "Regardless"}
|
||||
0.78125 {"entailment": "Recently", "not_entailment": "Presumably"}
|
||||
0.78125 {"entailment": "Recently", "not_entailment": "But"}
|
||||
0.78125 {"entailment": "Sure", "not_entailment": "Luckily"}
|
||||
0.75000 {"entailment": "Thus", "not_entailment": "Fortunately"}
|
||||
0.75000 {"entailment": "So", "not_entailment": "Why"}
|
||||
0.75000 {"entailment": "No", "not_entailment": "Surprisingly"}
|
||||
0.75000 {"entailment": "So", "not_entailment": "Surprisingly"}
|
||||
0.75000 {"entailment": "Yesterday", "not_entailment": "There"}
|
||||
0.75000 {"entailment": "Accordingly", "not_entailment": "Luckily"}
|
||||
0.75000 {"entailment": "Firstly", "not_entailment": "Apparently"}
|
||||
0.75000 {"entailment": "Consequently", "not_entailment": "Luckily"}
|
||||
0.75000 {"entailment": "Recently", "not_entailment": "Eventually"}
|
||||
0.75000 {"entailment": "Previously", "not_entailment": "There"}
|
||||
0.75000 {"entailment": "Firstly", "not_entailment": "Here"}
|
||||
0.75000 {"entailment": "Furthermore", "not_entailment": "Surprisingly"}
|
||||
0.75000 {"entailment": "So", "not_entailment": "Luckily"}
|
||||
0.75000 {"entailment": "Secondly", "not_entailment": "Mostly"}
|
||||
0.75000 {"entailment": "Third", "not_entailment": "Regardless"}
|
||||
0.75000 {"entailment": "One", "not_entailment": "Ah"}
|
||||
0.75000 {"entailment": "Finally", "not_entailment": "Overall"}
|
||||
0.75000 {"entailment": "Earlier", "not_entailment": "Alternatively"}
|
||||
0.71875 {"entailment": "First", "not_entailment": "Historically"}
|
||||
0.71875 {"entailment": "Similarly", "not_entailment": "Rather"}
|
||||
0.71875 {"entailment": "Finally", "not_entailment": "Ironically"}
|
||||
0.71875 {"entailment": "Indeed", "not_entailment": "Here"}
|
||||
0.71875 {"entailment": "Earlier", "not_entailment": "Luckily"}
|
||||
0.71875 {"entailment": "Earlier", "not_entailment": "Ironically"}
|
||||
0.71875 {"entailment": "Firstly", "not_entailment": "Certainly"}
|
||||
0.71875 {"entailment": "Similarly", "not_entailment": "Surprisingly"}
|
||||
0.68750 {"entailment": "Likewise", "not_entailment": "No"}
|
||||
0.68750 {"entailment": "Second", "not_entailment": "Then"}
|
||||
0.68750 {"entailment": "Third", "not_entailment": "Nevertheless"}
|
||||
0.68750 {"entailment": "Firstly", "not_entailment": "Fortunately"}
|
||||
0.68750 {"entailment": "One", "not_entailment": "This"}
|
||||
0.68750 {"entailment": "Consequently", "not_entailment": "Likely"}
|
||||
0.65625 {"entailment": "Remember", "not_entailment": "Surprisingly"}
|
||||
0.65625 {"entailment": "Furthermore", "not_entailment": "Presumably"}
|
||||
0.65625 {"entailment": "Today", "not_entailment": "Fortunately"}
|
||||
0.65625 {"entailment": "Apparently", "not_entailment": "Here"}
|
||||
0.65625 {"entailment": "Also", "not_entailment": "Surprisingly"}
|
||||
0.65625 {"entailment": "Also", "not_entailment": "Overall"}
|
||||
0.65625 {"entailment": "Additionally", "not_entailment": "Overall"}
|
||||
0.65625 {"entailment": "Perhaps", "not_entailment": "Worldwide"}
|
||||
0.62500 {"entailment": "Then", "not_entailment": "Fortunately"}
|
||||
0.62500 {"entailment": "Today", "not_entailment": "Surprisingly"}
|
||||
0.62500 {"entailment": "Earlier", "not_entailment": "There"}
|
||||
0.62500 {"entailment": "Firstly", "not_entailment": "Interestingly"}
|
||||
0.59375 {"entailment": "Firstly", "not_entailment": "Historically"}
|
||||
0.56250 {"entailment": "Unfortunately", "not_entailment": "Interestingly"}
|
||||
0.56250 {"entailment": "Typically", "not_entailment": "Overall"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Okay", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Notably", "not_entailment": "Yet"}
|
||||
{"entailment": "Specifically", "not_entailment": "Notably"}
|
||||
{"entailment": "See", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Therefore", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Specifically", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Specifically", "not_entailment": "Ultimately"}
|
||||
{"entailment": "One", "not_entailment": "Rather"}
|
||||
{"entailment": "Yes", "not_entailment": "Certainly"}
|
||||
{"entailment": "Lastly", "not_entailment": "Regardless"}
|
||||
{"entailment": "Therefore", "not_entailment": "Overall"}
|
||||
{"entailment": "Secondly", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Today", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "See", "not_entailment": "Luckily"}
|
||||
{"entailment": "Remember", "not_entailment": "Obviously"}
|
||||
{"entailment": "So", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Basically", "not_entailment": "Essentially"}
|
||||
{"entailment": "Additionally", "not_entailment": "But"}
|
||||
{"entailment": "Specifically", "not_entailment": "Clearly"}
|
||||
{"entailment": "Lastly", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Specifically", "not_entailment": "Overall"}
|
||||
{"entailment": "Second", "not_entailment": "Instead"}
|
||||
{"entailment": "Sure", "not_entailment": "Surely"}
|
||||
{"entailment": "So", "not_entailment": "Ironically"}
|
||||
{"entailment": "Yep", "not_entailment": "Rather"}
|
||||
{"entailment": "Recently", "not_entailment": "Luckily"}
|
||||
{"entailment": "One", "not_entailment": "Still"}
|
||||
{"entailment": "Yes", "not_entailment": "Well"}
|
||||
{"entailment": "Remember", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Earlier", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Likewise", "not_entailment": "Further"}
|
||||
{"entailment": "Therefore", "not_entailment": "Luckily"}
|
||||
{"entailment": "Right", "not_entailment": "Regardless"}
|
||||
{"entailment": "Right", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "First", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Also", "not_entailment": "Instead"}
|
||||
{"entailment": "Second", "not_entailment": "Further"}
|
||||
{"entailment": "Previously", "not_entailment": "But"}
|
||||
{"entailment": "Consequently", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Additionally", "not_entailment": "Yet"}
|
||||
{"entailment": "Previously", "not_entailment": "Then"}
|
||||
{"entailment": "Specifically", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Specifically", "not_entailment": "Here"}
|
||||
{"entailment": "Likewise", "not_entailment": "Although"}
|
||||
{"entailment": "Likewise", "not_entailment": "Still"}
|
||||
{"entailment": "Sure", "not_entailment": "Thankfully"}
|
||||
{"entailment": "Second", "not_entailment": "There"}
|
||||
{"entailment": "Third", "not_entailment": "Presumably"}
|
||||
{"entailment": "Recently", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Regardless"}
|
||||
{"entailment": "Recently", "not_entailment": "Presumably"}
|
||||
{"entailment": "Recently", "not_entailment": "But"}
|
||||
{"entailment": "Sure", "not_entailment": "Luckily"}
|
||||
{"entailment": "Thus", "not_entailment": "Fortunately"}
|
||||
{"entailment": "So", "not_entailment": "Why"}
|
||||
{"entailment": "No", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "So", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Yesterday", "not_entailment": "There"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Luckily"}
|
||||
{"entailment": "Firstly", "not_entailment": "Apparently"}
|
||||
{"entailment": "Consequently", "not_entailment": "Luckily"}
|
||||
{"entailment": "Recently", "not_entailment": "Eventually"}
|
||||
{"entailment": "Previously", "not_entailment": "There"}
|
||||
{"entailment": "Firstly", "not_entailment": "Here"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "So", "not_entailment": "Luckily"}
|
||||
{"entailment": "Secondly", "not_entailment": "Mostly"}
|
||||
{"entailment": "Third", "not_entailment": "Regardless"}
|
||||
{"entailment": "One", "not_entailment": "Ah"}
|
||||
{"entailment": "Finally", "not_entailment": "Overall"}
|
||||
{"entailment": "Earlier", "not_entailment": "Alternatively"}
|
||||
{"entailment": "First", "not_entailment": "Historically"}
|
||||
{"entailment": "Similarly", "not_entailment": "Rather"}
|
||||
{"entailment": "Finally", "not_entailment": "Ironically"}
|
||||
{"entailment": "Indeed", "not_entailment": "Here"}
|
||||
{"entailment": "Earlier", "not_entailment": "Luckily"}
|
||||
{"entailment": "Earlier", "not_entailment": "Ironically"}
|
||||
{"entailment": "Firstly", "not_entailment": "Certainly"}
|
||||
{"entailment": "Similarly", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Likewise", "not_entailment": "No"}
|
||||
{"entailment": "Second", "not_entailment": "Then"}
|
||||
{"entailment": "Third", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Firstly", "not_entailment": "Fortunately"}
|
||||
{"entailment": "One", "not_entailment": "This"}
|
||||
{"entailment": "Consequently", "not_entailment": "Likely"}
|
||||
{"entailment": "Remember", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Presumably"}
|
||||
{"entailment": "Today", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Apparently", "not_entailment": "Here"}
|
||||
{"entailment": "Also", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Also", "not_entailment": "Overall"}
|
||||
{"entailment": "Additionally", "not_entailment": "Overall"}
|
||||
{"entailment": "Perhaps", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Then", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Today", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Earlier", "not_entailment": "There"}
|
||||
{"entailment": "Firstly", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Firstly", "not_entailment": "Historically"}
|
||||
{"entailment": "Unfortunately", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Typically", "not_entailment": "Overall"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Earlier", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Remember", "not_entailment": "Fortunately"}
|
||||
{"entailment": "First", "not_entailment": "Historically"}
|
||||
{"entailment": "Likewise", "not_entailment": "No"}
|
||||
{"entailment": "See", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Unfortunately", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Second", "not_entailment": "Then"}
|
||||
{"entailment": "Likewise", "not_entailment": "Further"}
|
||||
{"entailment": "Therefore", "not_entailment": "Overall"}
|
||||
{"entailment": "Specifically", "not_entailment": "Clearly"}
|
||||
{"entailment": "Lastly", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Remember", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Then", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Specifically", "not_entailment": "Overall"}
|
||||
{"entailment": "Firstly", "not_entailment": "Historically"}
|
||||
{"entailment": "So", "not_entailment": "Why"}
|
||||
{"entailment": "Thus", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Therefore", "not_entailment": "Luckily"}
|
||||
{"entailment": "No", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Secondly", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Right", "not_entailment": "Regardless"}
|
||||
{"entailment": "Right", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "So", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Therefore", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Similarly", "not_entailment": "Rather"}
|
||||
{"entailment": "Second", "not_entailment": "Further"}
|
||||
{"entailment": "First", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Also", "not_entailment": "Instead"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Presumably"}
|
||||
{"entailment": "Today", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Finally", "not_entailment": "Ironically"}
|
||||
{"entailment": "Today", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Luckily"}
|
||||
{"entailment": "Yesterday", "not_entailment": "There"}
|
||||
{"entailment": "Today", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Firstly", "not_entailment": "Apparently"}
|
||||
{"entailment": "Consequently", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Previously", "not_entailment": "But"}
|
||||
{"entailment": "Specifically", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "See", "not_entailment": "Luckily"}
|
||||
{"entailment": "Additionally", "not_entailment": "Yet"}
|
||||
{"entailment": "Specifically", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Previously", "not_entailment": "Then"}
|
||||
{"entailment": "Specifically", "not_entailment": "Here"}
|
||||
{"entailment": "Second", "not_entailment": "Instead"}
|
||||
{"entailment": "Notably", "not_entailment": "Yet"}
|
||||
{"entailment": "Likewise", "not_entailment": "Although"}
|
||||
{"entailment": "Consequently", "not_entailment": "Luckily"}
|
||||
{"entailment": "Sure", "not_entailment": "Surely"}
|
||||
{"entailment": "Recently", "not_entailment": "Eventually"}
|
||||
{"entailment": "Specifically", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Indeed", "not_entailment": "Here"}
|
||||
{"entailment": "Apparently", "not_entailment": "Here"}
|
||||
{"entailment": "Likewise", "not_entailment": "Still"}
|
||||
{"entailment": "Typically", "not_entailment": "Overall"}
|
||||
{"entailment": "Previously", "not_entailment": "There"}
|
||||
{"entailment": "Firstly", "not_entailment": "Here"}
|
||||
{"entailment": "Specifically", "not_entailment": "Notably"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Earlier", "not_entailment": "Luckily"}
|
||||
{"entailment": "Third", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Earlier", "not_entailment": "Ironically"}
|
||||
{"entailment": "Remember", "not_entailment": "Obviously"}
|
||||
{"entailment": "Earlier", "not_entailment": "There"}
|
||||
{"entailment": "So", "not_entailment": "Luckily"}
|
||||
{"entailment": "Also", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Sure", "not_entailment": "Thankfully"}
|
||||
{"entailment": "So", "not_entailment": "Ironically"}
|
||||
{"entailment": "Secondly", "not_entailment": "Mostly"}
|
||||
{"entailment": "So", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Third", "not_entailment": "Regardless"}
|
||||
{"entailment": "Second", "not_entailment": "There"}
|
||||
{"entailment": "Okay", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Third", "not_entailment": "Presumably"}
|
||||
{"entailment": "Firstly", "not_entailment": "Certainly"}
|
||||
{"entailment": "One", "not_entailment": "Ah"}
|
||||
{"entailment": "Recently", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Basically", "not_entailment": "Essentially"}
|
||||
{"entailment": "Also", "not_entailment": "Overall"}
|
||||
{"entailment": "Yep", "not_entailment": "Rather"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Regardless"}
|
||||
{"entailment": "Firstly", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Firstly", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Finally", "not_entailment": "Overall"}
|
||||
{"entailment": "Earlier", "not_entailment": "Alternatively"}
|
||||
{"entailment": "Recently", "not_entailment": "Luckily"}
|
||||
{"entailment": "One", "not_entailment": "Rather"}
|
||||
{"entailment": "One", "not_entailment": "This"}
|
||||
{"entailment": "Additionally", "not_entailment": "But"}
|
||||
{"entailment": "Recently", "not_entailment": "Presumably"}
|
||||
{"entailment": "Recently", "not_entailment": "But"}
|
||||
{"entailment": "One", "not_entailment": "Still"}
|
||||
{"entailment": "Sure", "not_entailment": "Luckily"}
|
||||
{"entailment": "Yes", "not_entailment": "Certainly"}
|
||||
{"entailment": "Additionally", "not_entailment": "Overall"}
|
||||
{"entailment": "Consequently", "not_entailment": "Likely"}
|
||||
{"entailment": "Lastly", "not_entailment": "Regardless"}
|
||||
{"entailment": "Similarly", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Yes", "not_entailment": "Well"}
|
||||
{"entailment": "Perhaps", "not_entailment": "Worldwide"}
|
|
@ -0,0 +1,100 @@
|
|||
0.87500 {"entailment": "Yes", "not_entailment": "However"}
|
||||
0.84375 {"entailment": "Exactly", "not_entailment": "Still"}
|
||||
0.84375 {"entailment": "Therefore", "not_entailment": "Also"}
|
||||
0.84375 {"entailment": "Accordingly", "not_entailment": "Notably"}
|
||||
0.81250 {"entailment": "Accordingly", "not_entailment": "Additionally"}
|
||||
0.81250 {"entailment": "Accordingly", "not_entailment": "Furthermore"}
|
||||
0.81250 {"entailment": "Exactly", "not_entailment": "Yet"}
|
||||
0.81250 {"entailment": "Exactly", "not_entailment": "Although"}
|
||||
0.81250 {"entailment": "Rather", "not_entailment": "Besides"}
|
||||
0.81250 {"entailment": "Basically", "not_entailment": "Historically"}
|
||||
0.81250 {"entailment": "Specifically", "not_entailment": "Moreover"}
|
||||
0.81250 {"entailment": "Specifically", "not_entailment": "Historically"}
|
||||
0.81250 {"entailment": "Thus", "not_entailment": "Meanwhile"}
|
||||
0.81250 {"entailment": "Consequently", "not_entailment": "Besides"}
|
||||
0.81250 {"entailment": "Essentially", "not_entailment": "Historically"}
|
||||
0.78125 {"entailment": "Granted", "not_entailment": "Besides"}
|
||||
0.78125 {"entailment": "Exactly", "not_entailment": "Nonetheless"}
|
||||
0.78125 {"entailment": "Together", "not_entailment": "Besides"}
|
||||
0.78125 {"entailment": "Hence", "not_entailment": "Besides"}
|
||||
0.75000 {"entailment": "Likewise", "not_entailment": "Besides"}
|
||||
0.75000 {"entailment": "Accordingly", "not_entailment": "Besides"}
|
||||
0.75000 {"entailment": "Yep", "not_entailment": "Although"}
|
||||
0.75000 {"entailment": "That", "not_entailment": "Yet"}
|
||||
0.75000 {"entailment": "Consequently", "not_entailment": "Notably"}
|
||||
0.75000 {"entailment": "Exactly", "not_entailment": "Besides"}
|
||||
0.75000 {"entailment": "Worldwide", "not_entailment": "Look"}
|
||||
0.75000 {"entailment": "So", "not_entailment": "Now"}
|
||||
0.75000 {"entailment": "Exactly", "not_entailment": "But"}
|
||||
0.75000 {"entailment": "Exactly", "not_entailment": "Look"}
|
||||
0.75000 {"entailment": "In", "not_entailment": "Although"}
|
||||
0.75000 {"entailment": "Normally", "not_entailment": "Besides"}
|
||||
0.75000 {"entailment": "Consequently", "not_entailment": "Also"}
|
||||
0.75000 {"entailment": "Yes", "not_entailment": "Interestingly"}
|
||||
0.75000 {"entailment": "Similarly", "not_entailment": "Besides"}
|
||||
0.75000 {"entailment": "Accordingly", "not_entailment": "Moreover"}
|
||||
0.75000 {"entailment": "There", "not_entailment": "Besides"}
|
||||
0.75000 {"entailment": "Essentially", "not_entailment": "Remember"}
|
||||
0.75000 {"entailment": "Overall", "not_entailment": "Third"}
|
||||
0.75000 {"entailment": "No", "not_entailment": "Although"}
|
||||
0.71875 {"entailment": "Worldwide", "not_entailment": "Besides"}
|
||||
0.71875 {"entailment": "Yep", "not_entailment": "Besides"}
|
||||
0.71875 {"entailment": "Right", "not_entailment": "Besides"}
|
||||
0.71875 {"entailment": "Thankfully", "not_entailment": "Besides"}
|
||||
0.71875 {"entailment": "Apparently", "not_entailment": "Interestingly"}
|
||||
0.71875 {"entailment": "Eventually", "not_entailment": "Besides"}
|
||||
0.71875 {"entailment": "Ah", "not_entailment": "Yet"}
|
||||
0.71875 {"entailment": "And", "not_entailment": "Yet"}
|
||||
0.71875 {"entailment": "Yesterday", "not_entailment": "Still"}
|
||||
0.71875 {"entailment": "Accordingly", "not_entailment": "Nevertheless"}
|
||||
0.71875 {"entailment": "Yeah", "not_entailment": "Still"}
|
||||
0.71875 {"entailment": "See", "not_entailment": "Besides"}
|
||||
0.68750 {"entailment": "In", "not_entailment": "Besides"}
|
||||
0.68750 {"entailment": "Alas", "not_entailment": "Besides"}
|
||||
0.68750 {"entailment": "Eventually", "not_entailment": "Perhaps"}
|
||||
0.68750 {"entailment": "Then", "not_entailment": "Moreover"}
|
||||
0.68750 {"entailment": "Nationwide", "not_entailment": "Besides"}
|
||||
0.68750 {"entailment": "Yep", "not_entailment": "Additionally"}
|
||||
0.68750 {"entailment": "Apparently", "not_entailment": "However"}
|
||||
0.68750 {"entailment": "In", "not_entailment": "well"}
|
||||
0.68750 {"entailment": "Eventually", "not_entailment": "Regardless"}
|
||||
0.68750 {"entailment": "Right", "not_entailment": "Yet"}
|
||||
0.68750 {"entailment": "Together", "not_entailment": "well"}
|
||||
0.68750 {"entailment": "Together", "not_entailment": "One"}
|
||||
0.68750 {"entailment": "Below", "not_entailment": "Although"}
|
||||
0.68750 {"entailment": "Worldwide", "not_entailment": "True"}
|
||||
0.68750 {"entailment": "Sadly", "not_entailment": "Anyway"}
|
||||
0.65625 {"entailment": "Approximately", "not_entailment": "well"}
|
||||
0.65625 {"entailment": "Approximately", "not_entailment": "Besides"}
|
||||
0.65625 {"entailment": "Right", "not_entailment": "One"}
|
||||
0.65625 {"entailment": "In", "not_entailment": "Look"}
|
||||
0.65625 {"entailment": "In", "not_entailment": "One"}
|
||||
0.65625 {"entailment": "Together", "not_entailment": "Look"}
|
||||
0.65625 {"entailment": "Then", "not_entailment": "Naturally"}
|
||||
0.65625 {"entailment": "Approximately", "not_entailment": "One"}
|
||||
0.65625 {"entailment": "Oh", "not_entailment": "Perhaps"}
|
||||
0.65625 {"entailment": "Exactly", "not_entailment": "Rather"}
|
||||
0.65625 {"entailment": "Yep", "not_entailment": "Nevertheless"}
|
||||
0.65625 {"entailment": "Yep", "not_entailment": "Still"}
|
||||
0.65625 {"entailment": "Right", "not_entailment": "Perhaps"}
|
||||
0.65625 {"entailment": "Presumably", "not_entailment": "Furthermore"}
|
||||
0.65625 {"entailment": "Approximately", "not_entailment": "Look"}
|
||||
0.65625 {"entailment": "No", "not_entailment": "Besides"}
|
||||
0.65625 {"entailment": "Yep", "not_entailment": "Ah"}
|
||||
0.65625 {"entailment": "There", "not_entailment": "One"}
|
||||
0.65625 {"entailment": "Accordingly", "not_entailment": "Remember"}
|
||||
0.62500 {"entailment": "Worldwide", "not_entailment": "One"}
|
||||
0.62500 {"entailment": "Further", "not_entailment": "Besides"}
|
||||
0.62500 {"entailment": "Regardless", "not_entailment": "Yet"}
|
||||
0.62500 {"entailment": "In", "not_entailment": "Still"}
|
||||
0.62500 {"entailment": "Yep", "not_entailment": "Look"}
|
||||
0.62500 {"entailment": "Accordingly", "not_entailment": "One"}
|
||||
0.62500 {"entailment": "Then", "not_entailment": "Perhaps"}
|
||||
0.62500 {"entailment": "Eventually", "not_entailment": "Nevertheless"}
|
||||
0.59375 {"entailment": "Note", "not_entailment": "Besides"}
|
||||
0.56250 {"entailment": "Yep", "not_entailment": "One"}
|
||||
0.56250 {"entailment": "No", "not_entailment": "Historically"}
|
||||
0.56250 {"entailment": "That", "not_entailment": "Look"}
|
||||
0.56250 {"entailment": "Overall", "not_entailment": "Obviously"}
|
||||
0.53125 {"entailment": "There", "not_entailment": "Look"}
|
||||
0.53125 {"entailment": "This", "not_entailment": "Look"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Yes", "not_entailment": "However"}
|
||||
{"entailment": "Exactly", "not_entailment": "Still"}
|
||||
{"entailment": "Therefore", "not_entailment": "Also"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Notably"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Additionally"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Exactly", "not_entailment": "Yet"}
|
||||
{"entailment": "Exactly", "not_entailment": "Although"}
|
||||
{"entailment": "Rather", "not_entailment": "Besides"}
|
||||
{"entailment": "Basically", "not_entailment": "Historically"}
|
||||
{"entailment": "Specifically", "not_entailment": "Moreover"}
|
||||
{"entailment": "Specifically", "not_entailment": "Historically"}
|
||||
{"entailment": "Thus", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Consequently", "not_entailment": "Besides"}
|
||||
{"entailment": "Essentially", "not_entailment": "Historically"}
|
||||
{"entailment": "Granted", "not_entailment": "Besides"}
|
||||
{"entailment": "Exactly", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Together", "not_entailment": "Besides"}
|
||||
{"entailment": "Hence", "not_entailment": "Besides"}
|
||||
{"entailment": "Likewise", "not_entailment": "Besides"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Besides"}
|
||||
{"entailment": "Yep", "not_entailment": "Although"}
|
||||
{"entailment": "That", "not_entailment": "Yet"}
|
||||
{"entailment": "Consequently", "not_entailment": "Notably"}
|
||||
{"entailment": "Exactly", "not_entailment": "Besides"}
|
||||
{"entailment": "Worldwide", "not_entailment": "Look"}
|
||||
{"entailment": "So", "not_entailment": "Now"}
|
||||
{"entailment": "Exactly", "not_entailment": "But"}
|
||||
{"entailment": "Exactly", "not_entailment": "Look"}
|
||||
{"entailment": "In", "not_entailment": "Although"}
|
||||
{"entailment": "Normally", "not_entailment": "Besides"}
|
||||
{"entailment": "Consequently", "not_entailment": "Also"}
|
||||
{"entailment": "Yes", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Similarly", "not_entailment": "Besides"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Moreover"}
|
||||
{"entailment": "There", "not_entailment": "Besides"}
|
||||
{"entailment": "Essentially", "not_entailment": "Remember"}
|
||||
{"entailment": "Overall", "not_entailment": "Third"}
|
||||
{"entailment": "No", "not_entailment": "Although"}
|
||||
{"entailment": "Worldwide", "not_entailment": "Besides"}
|
||||
{"entailment": "Yep", "not_entailment": "Besides"}
|
||||
{"entailment": "Right", "not_entailment": "Besides"}
|
||||
{"entailment": "Thankfully", "not_entailment": "Besides"}
|
||||
{"entailment": "Apparently", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Eventually", "not_entailment": "Besides"}
|
||||
{"entailment": "Ah", "not_entailment": "Yet"}
|
||||
{"entailment": "And", "not_entailment": "Yet"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Still"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Yeah", "not_entailment": "Still"}
|
||||
{"entailment": "See", "not_entailment": "Besides"}
|
||||
{"entailment": "In", "not_entailment": "Besides"}
|
||||
{"entailment": "Alas", "not_entailment": "Besides"}
|
||||
{"entailment": "Eventually", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Then", "not_entailment": "Moreover"}
|
||||
{"entailment": "Nationwide", "not_entailment": "Besides"}
|
||||
{"entailment": "Yep", "not_entailment": "Additionally"}
|
||||
{"entailment": "Apparently", "not_entailment": "However"}
|
||||
{"entailment": "In", "not_entailment": "well"}
|
||||
{"entailment": "Eventually", "not_entailment": "Regardless"}
|
||||
{"entailment": "Right", "not_entailment": "Yet"}
|
||||
{"entailment": "Together", "not_entailment": "well"}
|
||||
{"entailment": "Together", "not_entailment": "One"}
|
||||
{"entailment": "Below", "not_entailment": "Although"}
|
||||
{"entailment": "Worldwide", "not_entailment": "True"}
|
||||
{"entailment": "Sadly", "not_entailment": "Anyway"}
|
||||
{"entailment": "Approximately", "not_entailment": "well"}
|
||||
{"entailment": "Approximately", "not_entailment": "Besides"}
|
||||
{"entailment": "Right", "not_entailment": "One"}
|
||||
{"entailment": "In", "not_entailment": "Look"}
|
||||
{"entailment": "In", "not_entailment": "One"}
|
||||
{"entailment": "Together", "not_entailment": "Look"}
|
||||
{"entailment": "Then", "not_entailment": "Naturally"}
|
||||
{"entailment": "Approximately", "not_entailment": "One"}
|
||||
{"entailment": "Oh", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Exactly", "not_entailment": "Rather"}
|
||||
{"entailment": "Yep", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Yep", "not_entailment": "Still"}
|
||||
{"entailment": "Right", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Presumably", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Approximately", "not_entailment": "Look"}
|
||||
{"entailment": "No", "not_entailment": "Besides"}
|
||||
{"entailment": "Yep", "not_entailment": "Ah"}
|
||||
{"entailment": "There", "not_entailment": "One"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Remember"}
|
||||
{"entailment": "Worldwide", "not_entailment": "One"}
|
||||
{"entailment": "Further", "not_entailment": "Besides"}
|
||||
{"entailment": "Regardless", "not_entailment": "Yet"}
|
||||
{"entailment": "In", "not_entailment": "Still"}
|
||||
{"entailment": "Yep", "not_entailment": "Look"}
|
||||
{"entailment": "Accordingly", "not_entailment": "One"}
|
||||
{"entailment": "Then", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Eventually", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Note", "not_entailment": "Besides"}
|
||||
{"entailment": "Yep", "not_entailment": "One"}
|
||||
{"entailment": "No", "not_entailment": "Historically"}
|
||||
{"entailment": "That", "not_entailment": "Look"}
|
||||
{"entailment": "Overall", "not_entailment": "Obviously"}
|
||||
{"entailment": "There", "not_entailment": "Look"}
|
||||
{"entailment": "This", "not_entailment": "Look"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Worldwide", "not_entailment": "Besides"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Besides"}
|
||||
{"entailment": "Approximately", "not_entailment": "well"}
|
||||
{"entailment": "In", "not_entailment": "Besides"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Additionally"}
|
||||
{"entailment": "Granted", "not_entailment": "Besides"}
|
||||
{"entailment": "Likewise", "not_entailment": "Besides"}
|
||||
{"entailment": "Alas", "not_entailment": "Besides"}
|
||||
{"entailment": "There", "not_entailment": "Look"}
|
||||
{"entailment": "Yep", "not_entailment": "Besides"}
|
||||
{"entailment": "Eventually", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Yep", "not_entailment": "Although"}
|
||||
{"entailment": "Approximately", "not_entailment": "Besides"}
|
||||
{"entailment": "Right", "not_entailment": "Besides"}
|
||||
{"entailment": "Right", "not_entailment": "One"}
|
||||
{"entailment": "This", "not_entailment": "Look"}
|
||||
{"entailment": "That", "not_entailment": "Yet"}
|
||||
{"entailment": "Consequently", "not_entailment": "Notably"}
|
||||
{"entailment": "In", "not_entailment": "Look"}
|
||||
{"entailment": "In", "not_entailment": "One"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Then", "not_entailment": "Naturally"}
|
||||
{"entailment": "Then", "not_entailment": "Moreover"}
|
||||
{"entailment": "Together", "not_entailment": "Look"}
|
||||
{"entailment": "Exactly", "not_entailment": "Although"}
|
||||
{"entailment": "Exactly", "not_entailment": "Still"}
|
||||
{"entailment": "Exactly", "not_entailment": "Yet"}
|
||||
{"entailment": "Exactly", "not_entailment": "Besides"}
|
||||
{"entailment": "Nationwide", "not_entailment": "Besides"}
|
||||
{"entailment": "Worldwide", "not_entailment": "Look"}
|
||||
{"entailment": "Worldwide", "not_entailment": "One"}
|
||||
{"entailment": "Basically", "not_entailment": "Historically"}
|
||||
{"entailment": "Rather", "not_entailment": "Besides"}
|
||||
{"entailment": "Yep", "not_entailment": "Additionally"}
|
||||
{"entailment": "Further", "not_entailment": "Besides"}
|
||||
{"entailment": "Thankfully", "not_entailment": "Besides"}
|
||||
{"entailment": "Approximately", "not_entailment": "One"}
|
||||
{"entailment": "So", "not_entailment": "Now"}
|
||||
{"entailment": "Oh", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Specifically", "not_entailment": "Moreover"}
|
||||
{"entailment": "Specifically", "not_entailment": "Historically"}
|
||||
{"entailment": "Regardless", "not_entailment": "Yet"}
|
||||
{"entailment": "Apparently", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Exactly", "not_entailment": "Rather"}
|
||||
{"entailment": "Apparently", "not_entailment": "However"}
|
||||
{"entailment": "Note", "not_entailment": "Besides"}
|
||||
{"entailment": "Yep", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Exactly", "not_entailment": "But"}
|
||||
{"entailment": "Exactly", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Eventually", "not_entailment": "Besides"}
|
||||
{"entailment": "In", "not_entailment": "Still"}
|
||||
{"entailment": "Exactly", "not_entailment": "Look"}
|
||||
{"entailment": "In", "not_entailment": "well"}
|
||||
{"entailment": "In", "not_entailment": "Although"}
|
||||
{"entailment": "Eventually", "not_entailment": "Regardless"}
|
||||
{"entailment": "Yep", "not_entailment": "Still"}
|
||||
{"entailment": "Yep", "not_entailment": "Look"}
|
||||
{"entailment": "Yep", "not_entailment": "One"}
|
||||
{"entailment": "Normally", "not_entailment": "Besides"}
|
||||
{"entailment": "Accordingly", "not_entailment": "One"}
|
||||
{"entailment": "Ah", "not_entailment": "Yet"}
|
||||
{"entailment": "Right", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Right", "not_entailment": "Yet"}
|
||||
{"entailment": "Presumably", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Thus", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Together", "not_entailment": "well"}
|
||||
{"entailment": "And", "not_entailment": "Yet"}
|
||||
{"entailment": "Consequently", "not_entailment": "Also"}
|
||||
{"entailment": "Together", "not_entailment": "One"}
|
||||
{"entailment": "Consequently", "not_entailment": "Besides"}
|
||||
{"entailment": "Together", "not_entailment": "Besides"}
|
||||
{"entailment": "Yes", "not_entailment": "However"}
|
||||
{"entailment": "Below", "not_entailment": "Although"}
|
||||
{"entailment": "Yes", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Then", "not_entailment": "Perhaps"}
|
||||
{"entailment": "Approximately", "not_entailment": "Look"}
|
||||
{"entailment": "Hence", "not_entailment": "Besides"}
|
||||
{"entailment": "Eventually", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Therefore", "not_entailment": "Also"}
|
||||
{"entailment": "Worldwide", "not_entailment": "True"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Still"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Notably"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Similarly", "not_entailment": "Besides"}
|
||||
{"entailment": "No", "not_entailment": "Besides"}
|
||||
{"entailment": "Yeah", "not_entailment": "Still"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Moreover"}
|
||||
{"entailment": "Yep", "not_entailment": "Ah"}
|
||||
{"entailment": "See", "not_entailment": "Besides"}
|
||||
{"entailment": "There", "not_entailment": "Besides"}
|
||||
{"entailment": "There", "not_entailment": "One"}
|
||||
{"entailment": "Essentially", "not_entailment": "Historically"}
|
||||
{"entailment": "Essentially", "not_entailment": "Remember"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Remember"}
|
||||
{"entailment": "Overall", "not_entailment": "Third"}
|
||||
{"entailment": "No", "not_entailment": "Historically"}
|
||||
{"entailment": "Sadly", "not_entailment": "Anyway"}
|
||||
{"entailment": "That", "not_entailment": "Look"}
|
||||
{"entailment": "Overall", "not_entailment": "Obviously"}
|
||||
{"entailment": "No", "not_entailment": "Although"}
|
|
@ -0,0 +1,100 @@
|
|||
0.88235 {"0": "Interesting", "1": "Yep"}
|
||||
0.87500 {"0": "For", "1": "specifically"}
|
||||
0.87500 {"0": "Next", "1": "specifically"}
|
||||
0.86486 {"0": "Last", "1": "Read"}
|
||||
0.86486 {"0": "Next", "1": "Read"}
|
||||
0.86486 {"0": "ALSO", "1": "Repeat"}
|
||||
0.86486 {"0": "Perhaps", "1": "Here"}
|
||||
0.85714 {"0": "Third", "1": "Read"}
|
||||
0.85714 {"0": "Perhaps", "1": "Hi"}
|
||||
0.85714 {"0": "Later", "1": "Quick"}
|
||||
0.84848 {"0": "Perhaps", "1": "Meaning"}
|
||||
0.84848 {"0": "Typically", "1": "specifically"}
|
||||
0.84848 {"0": "then", "1": "Alright"}
|
||||
0.84211 {"0": "Maybe", "1": "Meaning"}
|
||||
0.84211 {"0": "Earlier", "1": "Read"}
|
||||
0.84211 {"0": "Additionally", "1": "Essentially"}
|
||||
0.84211 {"0": "For", "1": "Read"}
|
||||
0.84211 {"0": "then", "1": "Correction"}
|
||||
0.84211 {"0": "Yet", "1": "Rather"}
|
||||
0.84211 {"0": "Interestingly", "1": "Read"}
|
||||
0.83871 {"0": "Afterwards", "1": "Read"}
|
||||
0.83333 {"0": "Possibly", "1": "Not"}
|
||||
0.83333 {"0": "furthermore", "1": "Yep"}
|
||||
0.83333 {"0": "Same", "1": "Repeat"}
|
||||
0.83333 {"0": "Second", "1": "Especially"}
|
||||
0.83333 {"0": "Somehow", "1": "Literally"}
|
||||
0.83333 {"0": "furthermore", "1": "To"}
|
||||
0.83333 {"0": "Surely", "1": "Hi"}
|
||||
0.82759 {"0": "Since", "1": "Read"}
|
||||
0.82353 {"0": "Since", "1": "Absolutely"}
|
||||
0.82353 {"0": "also", "1": "In"}
|
||||
0.82353 {"0": "Since", "1": "Yep"}
|
||||
0.82353 {"0": "Whereas", "1": "Listen"}
|
||||
0.82353 {"0": "If", "1": "Hi"}
|
||||
0.82353 {"0": "Interestingly", "1": "specifically"}
|
||||
0.82051 {"0": "Than", "1": "To"}
|
||||
0.82051 {"0": "Whereas", "1": "Absolutely"}
|
||||
0.82051 {"0": "then", "1": "Literally"}
|
||||
0.82051 {"0": "Third", "1": "specifically"}
|
||||
0.82051 {"0": "How", "1": "specifically"}
|
||||
0.82051 {"0": "Surprisingly", "1": "Correction"}
|
||||
0.82051 {"0": "Interestingly", "1": "Truly"}
|
||||
0.82051 {"0": "Than", "1": "Repeat"}
|
||||
0.82051 {"0": "Next", "1": "Yeah"}
|
||||
0.81250 {"0": "Earlier", "1": "specifically"}
|
||||
0.81250 {"0": "Since", "1": "See"}
|
||||
0.81081 {"0": "Third", "1": "Mostly"}
|
||||
0.81081 {"0": "Sometimes", "1": "Literally"}
|
||||
0.81081 {"0": "Afterwards", "1": "On"}
|
||||
0.81081 {"0": "Normally", "1": "Literally"}
|
||||
0.81081 {"0": "Possibly", "1": "Read"}
|
||||
0.81081 {"0": "Interestingly", "1": "Mostly"}
|
||||
0.81081 {"0": "Naturally", "1": "specifically"}
|
||||
0.80000 {"0": "Yet", "1": "specifically"}
|
||||
0.80000 {"0": "Hey", "1": "Meaning"}
|
||||
0.80000 {"0": "Meanwhile", "1": "Essentially"}
|
||||
0.80000 {"0": "Then", "1": "Seriously"}
|
||||
0.80000 {"0": "After", "1": "To"}
|
||||
0.80000 {"0": "Why", "1": "Basically"}
|
||||
0.80000 {"0": "Later", "1": "specifically"}
|
||||
0.80000 {"0": "furthermore", "1": "This"}
|
||||
0.80000 {"0": "and", "1": "OR"}
|
||||
0.80000 {"0": "Often", "1": "specifically"}
|
||||
0.80000 {"0": "furthermore", "1": "Only"}
|
||||
0.78947 {"0": "Probably", "1": "Not"}
|
||||
0.78947 {"0": "As", "1": "specifically"}
|
||||
0.78947 {"0": "furthermore", "1": "Absolutely"}
|
||||
0.78947 {"0": "Maybe", "1": "Yeah"}
|
||||
0.78947 {"0": "Then", "1": "Actually"}
|
||||
0.78947 {"0": "Afterwards", "1": "Correction"}
|
||||
0.78947 {"0": "Since", "1": "This"}
|
||||
0.78947 {"0": "Alternatively", "1": "Specifically"}
|
||||
0.78947 {"0": "then", "1": "Yep"}
|
||||
0.78947 {"0": "Earlier", "1": "Correction"}
|
||||
0.78947 {"0": "then", "1": "Only"}
|
||||
0.78788 {"0": "Maybe", "1": "Not"}
|
||||
0.78788 {"0": "Afterwards", "1": "Absolutely"}
|
||||
0.78049 {"0": "Earlier", "1": "Hi"}
|
||||
0.77778 {"0": "Although", "1": "Not"}
|
||||
0.77778 {"0": "then", "1": "On"}
|
||||
0.77778 {"0": "Possibly", "1": "specifically"}
|
||||
0.77778 {"0": "then", "1": "Repeat"}
|
||||
0.77778 {"0": "Remember", "1": "specifically"}
|
||||
0.76923 {"0": "Possibly", "1": "In"}
|
||||
0.76923 {"0": "Anyway", "1": "Meaning"}
|
||||
0.76923 {"0": "Hell", "1": "Meaning"}
|
||||
0.76923 {"0": "Imagine", "1": "Repeat"}
|
||||
0.75676 {"0": "Yeah", "1": "Meaning"}
|
||||
0.75676 {"0": "Since", "1": "Correction"}
|
||||
0.75676 {"0": "Right", "1": "specifically"}
|
||||
0.75676 {"0": "Earlier", "1": "On"}
|
||||
0.75000 {"0": "Recently", "1": "specifically"}
|
||||
0.75000 {"0": "What", "1": "Meaning"}
|
||||
0.74286 {"0": "Last", "1": "Below"}
|
||||
0.73684 {"0": "Normally", "1": "specifically"}
|
||||
0.72222 {"0": "Since", "1": "Except"}
|
||||
0.72222 {"0": "Else", "1": "Not"}
|
||||
0.72222 {"0": "Sir", "1": "Yep"}
|
||||
0.68750 {"0": "Since", "1": "Nope"}
|
||||
0.68750 {"0": "Ah", "1": "Nope"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Interesting", "1": "Yep"}
|
||||
{"0": "For", "1": "specifically"}
|
||||
{"0": "Next", "1": "specifically"}
|
||||
{"0": "Last", "1": "Read"}
|
||||
{"0": "Next", "1": "Read"}
|
||||
{"0": "ALSO", "1": "Repeat"}
|
||||
{"0": "Perhaps", "1": "Here"}
|
||||
{"0": "Third", "1": "Read"}
|
||||
{"0": "Perhaps", "1": "Hi"}
|
||||
{"0": "Later", "1": "Quick"}
|
||||
{"0": "Perhaps", "1": "Meaning"}
|
||||
{"0": "Typically", "1": "specifically"}
|
||||
{"0": "then", "1": "Alright"}
|
||||
{"0": "Maybe", "1": "Meaning"}
|
||||
{"0": "Earlier", "1": "Read"}
|
||||
{"0": "Additionally", "1": "Essentially"}
|
||||
{"0": "For", "1": "Read"}
|
||||
{"0": "then", "1": "Correction"}
|
||||
{"0": "Yet", "1": "Rather"}
|
||||
{"0": "Interestingly", "1": "Read"}
|
||||
{"0": "Afterwards", "1": "Read"}
|
||||
{"0": "Possibly", "1": "Not"}
|
||||
{"0": "furthermore", "1": "Yep"}
|
||||
{"0": "Same", "1": "Repeat"}
|
||||
{"0": "Second", "1": "Especially"}
|
||||
{"0": "Somehow", "1": "Literally"}
|
||||
{"0": "furthermore", "1": "To"}
|
||||
{"0": "Surely", "1": "Hi"}
|
||||
{"0": "Since", "1": "Read"}
|
||||
{"0": "Since", "1": "Absolutely"}
|
||||
{"0": "also", "1": "In"}
|
||||
{"0": "Since", "1": "Yep"}
|
||||
{"0": "Whereas", "1": "Listen"}
|
||||
{"0": "If", "1": "Hi"}
|
||||
{"0": "Interestingly", "1": "specifically"}
|
||||
{"0": "Than", "1": "To"}
|
||||
{"0": "Whereas", "1": "Absolutely"}
|
||||
{"0": "then", "1": "Literally"}
|
||||
{"0": "Third", "1": "specifically"}
|
||||
{"0": "How", "1": "specifically"}
|
||||
{"0": "Surprisingly", "1": "Correction"}
|
||||
{"0": "Interestingly", "1": "Truly"}
|
||||
{"0": "Than", "1": "Repeat"}
|
||||
{"0": "Next", "1": "Yeah"}
|
||||
{"0": "Earlier", "1": "specifically"}
|
||||
{"0": "Since", "1": "See"}
|
||||
{"0": "Third", "1": "Mostly"}
|
||||
{"0": "Sometimes", "1": "Literally"}
|
||||
{"0": "Afterwards", "1": "On"}
|
||||
{"0": "Normally", "1": "Literally"}
|
||||
{"0": "Possibly", "1": "Read"}
|
||||
{"0": "Interestingly", "1": "Mostly"}
|
||||
{"0": "Naturally", "1": "specifically"}
|
||||
{"0": "Yet", "1": "specifically"}
|
||||
{"0": "Hey", "1": "Meaning"}
|
||||
{"0": "Meanwhile", "1": "Essentially"}
|
||||
{"0": "Then", "1": "Seriously"}
|
||||
{"0": "After", "1": "To"}
|
||||
{"0": "Why", "1": "Basically"}
|
||||
{"0": "Later", "1": "specifically"}
|
||||
{"0": "furthermore", "1": "This"}
|
||||
{"0": "and", "1": "OR"}
|
||||
{"0": "Often", "1": "specifically"}
|
||||
{"0": "furthermore", "1": "Only"}
|
||||
{"0": "Probably", "1": "Not"}
|
||||
{"0": "As", "1": "specifically"}
|
||||
{"0": "furthermore", "1": "Absolutely"}
|
||||
{"0": "Maybe", "1": "Yeah"}
|
||||
{"0": "Then", "1": "Actually"}
|
||||
{"0": "Afterwards", "1": "Correction"}
|
||||
{"0": "Since", "1": "This"}
|
||||
{"0": "Alternatively", "1": "Specifically"}
|
||||
{"0": "then", "1": "Yep"}
|
||||
{"0": "Earlier", "1": "Correction"}
|
||||
{"0": "then", "1": "Only"}
|
||||
{"0": "Maybe", "1": "Not"}
|
||||
{"0": "Afterwards", "1": "Absolutely"}
|
||||
{"0": "Earlier", "1": "Hi"}
|
||||
{"0": "Although", "1": "Not"}
|
||||
{"0": "then", "1": "On"}
|
||||
{"0": "Possibly", "1": "specifically"}
|
||||
{"0": "then", "1": "Repeat"}
|
||||
{"0": "Remember", "1": "specifically"}
|
||||
{"0": "Possibly", "1": "In"}
|
||||
{"0": "Anyway", "1": "Meaning"}
|
||||
{"0": "Hell", "1": "Meaning"}
|
||||
{"0": "Imagine", "1": "Repeat"}
|
||||
{"0": "Yeah", "1": "Meaning"}
|
||||
{"0": "Since", "1": "Correction"}
|
||||
{"0": "Right", "1": "specifically"}
|
||||
{"0": "Earlier", "1": "On"}
|
||||
{"0": "Recently", "1": "specifically"}
|
||||
{"0": "What", "1": "Meaning"}
|
||||
{"0": "Last", "1": "Below"}
|
||||
{"0": "Normally", "1": "specifically"}
|
||||
{"0": "Since", "1": "Except"}
|
||||
{"0": "Else", "1": "Not"}
|
||||
{"0": "Sir", "1": "Yep"}
|
||||
{"0": "Since", "1": "Nope"}
|
||||
{"0": "Ah", "1": "Nope"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Earlier", "1": "specifically"}
|
||||
{"0": "Meanwhile", "1": "Essentially"}
|
||||
{"0": "Possibly", "1": "Not"}
|
||||
{"0": "furthermore", "1": "Yep"}
|
||||
{"0": "Afterwards", "1": "Read"}
|
||||
{"0": "Than", "1": "To"}
|
||||
{"0": "Probably", "1": "Not"}
|
||||
{"0": "As", "1": "specifically"}
|
||||
{"0": "Maybe", "1": "Meaning"}
|
||||
{"0": "Third", "1": "Mostly"}
|
||||
{"0": "Whereas", "1": "Absolutely"}
|
||||
{"0": "then", "1": "Literally"}
|
||||
{"0": "Recently", "1": "specifically"}
|
||||
{"0": "Last", "1": "Read"}
|
||||
{"0": "Although", "1": "Not"}
|
||||
{"0": "Next", "1": "Read"}
|
||||
{"0": "Yeah", "1": "Meaning"}
|
||||
{"0": "Maybe", "1": "Not"}
|
||||
{"0": "furthermore", "1": "Absolutely"}
|
||||
{"0": "Maybe", "1": "Yeah"}
|
||||
{"0": "Since", "1": "Except"}
|
||||
{"0": "Sometimes", "1": "Literally"}
|
||||
{"0": "then", "1": "On"}
|
||||
{"0": "Possibly", "1": "In"}
|
||||
{"0": "Since", "1": "Nope"}
|
||||
{"0": "ALSO", "1": "Repeat"}
|
||||
{"0": "Possibly", "1": "specifically"}
|
||||
{"0": "Then", "1": "Actually"}
|
||||
{"0": "Afterwards", "1": "Absolutely"}
|
||||
{"0": "Earlier", "1": "Read"}
|
||||
{"0": "Third", "1": "specifically"}
|
||||
{"0": "Typically", "1": "specifically"}
|
||||
{"0": "Perhaps", "1": "Meaning"}
|
||||
{"0": "Afterwards", "1": "Correction"}
|
||||
{"0": "Since", "1": "This"}
|
||||
{"0": "Then", "1": "Seriously"}
|
||||
{"0": "Additionally", "1": "Essentially"}
|
||||
{"0": "then", "1": "Alright"}
|
||||
{"0": "Since", "1": "See"}
|
||||
{"0": "For", "1": "specifically"}
|
||||
{"0": "How", "1": "specifically"}
|
||||
{"0": "For", "1": "Read"}
|
||||
{"0": "After", "1": "To"}
|
||||
{"0": "then", "1": "Repeat"}
|
||||
{"0": "Alternatively", "1": "Specifically"}
|
||||
{"0": "Since", "1": "Yep"}
|
||||
{"0": "Since", "1": "Absolutely"}
|
||||
{"0": "also", "1": "In"}
|
||||
{"0": "Same", "1": "Repeat"}
|
||||
{"0": "Since", "1": "Read"}
|
||||
{"0": "Second", "1": "Especially"}
|
||||
{"0": "Somehow", "1": "Literally"}
|
||||
{"0": "Why", "1": "Basically"}
|
||||
{"0": "Later", "1": "specifically"}
|
||||
{"0": "then", "1": "Correction"}
|
||||
{"0": "Yet", "1": "specifically"}
|
||||
{"0": "Since", "1": "Correction"}
|
||||
{"0": "Yet", "1": "Rather"}
|
||||
{"0": "Remember", "1": "specifically"}
|
||||
{"0": "Last", "1": "Below"}
|
||||
{"0": "then", "1": "Yep"}
|
||||
{"0": "Whereas", "1": "Listen"}
|
||||
{"0": "Afterwards", "1": "On"}
|
||||
{"0": "If", "1": "Hi"}
|
||||
{"0": "Interesting", "1": "Yep"}
|
||||
{"0": "Interestingly", "1": "Read"}
|
||||
{"0": "Hey", "1": "Meaning"}
|
||||
{"0": "Next", "1": "specifically"}
|
||||
{"0": "Normally", "1": "specifically"}
|
||||
{"0": "Interestingly", "1": "specifically"}
|
||||
{"0": "Normally", "1": "Literally"}
|
||||
{"0": "Earlier", "1": "Correction"}
|
||||
{"0": "Else", "1": "Not"}
|
||||
{"0": "Earlier", "1": "Hi"}
|
||||
{"0": "Third", "1": "Read"}
|
||||
{"0": "Surprisingly", "1": "Correction"}
|
||||
{"0": "Anyway", "1": "Meaning"}
|
||||
{"0": "Right", "1": "specifically"}
|
||||
{"0": "Perhaps", "1": "Hi"}
|
||||
{"0": "What", "1": "Meaning"}
|
||||
{"0": "Earlier", "1": "On"}
|
||||
{"0": "furthermore", "1": "This"}
|
||||
{"0": "Interestingly", "1": "Truly"}
|
||||
{"0": "and", "1": "OR"}
|
||||
{"0": "Possibly", "1": "Read"}
|
||||
{"0": "furthermore", "1": "To"}
|
||||
{"0": "Sir", "1": "Yep"}
|
||||
{"0": "then", "1": "Only"}
|
||||
{"0": "Naturally", "1": "specifically"}
|
||||
{"0": "Interestingly", "1": "Mostly"}
|
||||
{"0": "Than", "1": "Repeat"}
|
||||
{"0": "Perhaps", "1": "Here"}
|
||||
{"0": "Hell", "1": "Meaning"}
|
||||
{"0": "Next", "1": "Yeah"}
|
||||
{"0": "Often", "1": "specifically"}
|
||||
{"0": "Surely", "1": "Hi"}
|
||||
{"0": "furthermore", "1": "Only"}
|
||||
{"0": "Imagine", "1": "Repeat"}
|
||||
{"0": "Ah", "1": "Nope"}
|
||||
{"0": "Later", "1": "Quick"}
|
|
@ -0,0 +1,100 @@
|
|||
0.85714 {"0": "Additionally", "1": "Alternatively"}
|
||||
0.81081 {"0": "First", "1": "Actually"}
|
||||
0.80000 {"0": "Besides", "1": "Overall"}
|
||||
0.80000 {"0": "Here", "1": "specifically"}
|
||||
0.78947 {"0": "Meanwhile", "1": "Overall"}
|
||||
0.78788 {"0": "Wonder", "1": "Repeat"}
|
||||
0.78788 {"0": "This", "1": "indeed"}
|
||||
0.78788 {"0": "Consider", "1": "Repeat"}
|
||||
0.77778 {"0": "Perhaps", "1": "Rather"}
|
||||
0.76923 {"0": "Oh", "1": "specifically"}
|
||||
0.76923 {"0": "Since", "1": "Absolutely"}
|
||||
0.76923 {"0": "Afterwards", "1": "specifically"}
|
||||
0.76923 {"0": "Yet", "1": "Rather"}
|
||||
0.76471 {"0": "Since", "1": "Approximately"}
|
||||
0.76471 {"0": "Interesting", "1": "Repeat"}
|
||||
0.76471 {"0": "Meanwhile", "1": "Instead"}
|
||||
0.76471 {"0": "Meanwhile", "1": "Rather"}
|
||||
0.76471 {"0": "Look", "1": "Sorry"}
|
||||
0.76471 {"0": "A", "1": "General"}
|
||||
0.76471 {"0": "Reader", "1": "Repeat"}
|
||||
0.75676 {"0": "Third", "1": "specifically"}
|
||||
0.75676 {"0": "Consider", "1": "Short"}
|
||||
0.75676 {"0": "Example", "1": "Really"}
|
||||
0.75676 {"0": "How", "1": "Particularly"}
|
||||
0.75676 {"0": "However", "1": "Really"}
|
||||
0.75676 {"0": "Personally", "1": "Generally"}
|
||||
0.75676 {"0": "I", "1": "Repeat"}
|
||||
0.75676 {"0": "Hey", "1": "specifically"}
|
||||
0.75000 {"0": "Imagine", "1": "indeed"}
|
||||
0.75000 {"0": "Plus", "1": "Essentially"}
|
||||
0.75000 {"0": "Apparently", "1": "General"}
|
||||
0.75000 {"0": "Example", "1": "Because"}
|
||||
0.75000 {"0": "Um", "1": "specifically"}
|
||||
0.74286 {"0": "Still", "1": "specifically"}
|
||||
0.74286 {"0": "Another", "1": "Generally"}
|
||||
0.74286 {"0": "Ask", "1": "specifically"}
|
||||
0.74286 {"0": "Example", "1": "Sorry"}
|
||||
0.73684 {"0": "Example", "1": "specifically"}
|
||||
0.73684 {"0": "Next", "1": "specifically"}
|
||||
0.73684 {"0": "Naturally", "1": "Definitely"}
|
||||
0.73684 {"0": "Next", "1": "Hence"}
|
||||
0.73684 {"0": "Above", "1": "Definitely"}
|
||||
0.73684 {"0": "As", "1": "Mostly"}
|
||||
0.73684 {"0": "Another", "1": "specifically"}
|
||||
0.73684 {"0": "Example", "1": "Questions"}
|
||||
0.73684 {"0": "Plus", "1": "Overall"}
|
||||
0.73171 {"0": "One", "1": "Definitely"}
|
||||
0.73171 {"0": "Simple", "1": "Questions"}
|
||||
0.73171 {"0": "Today", "1": "Overall"}
|
||||
0.72727 {"0": "Plus", "1": "Really"}
|
||||
0.72727 {"0": "As", "1": "specifically"}
|
||||
0.72727 {"0": "Perhaps", "1": "Overall"}
|
||||
0.72727 {"0": "Previously", "1": "Readers"}
|
||||
0.72222 {"0": "Apparently", "1": "Come"}
|
||||
0.72222 {"0": "Example", "1": "Definitely"}
|
||||
0.72222 {"0": "Though", "1": "indeed"}
|
||||
0.72222 {"0": "Meanwhile", "1": "Ultimately"}
|
||||
0.72222 {"0": "Sometimes", "1": "Definitely"}
|
||||
0.72222 {"0": "Apparently", "1": "Definitely"}
|
||||
0.72222 {"0": "Here", "1": "Honestly"}
|
||||
0.72222 {"0": "Later", "1": "Overall"}
|
||||
0.72222 {"0": "As", "1": "Not"}
|
||||
0.72222 {"0": "As", "1": "Definitely"}
|
||||
0.72222 {"0": "As", "1": "Recently"}
|
||||
0.72222 {"0": "Soon", "1": "indeed"}
|
||||
0.71795 {"0": "However", "1": "Overall"}
|
||||
0.71795 {"0": "Apparently", "1": "Together"}
|
||||
0.71795 {"0": "I", "1": "General"}
|
||||
0.71795 {"0": "Yet", "1": "Ultimately"}
|
||||
0.71795 {"0": "That", "1": "specifically"}
|
||||
0.71429 {"0": "Only", "1": "Definitely"}
|
||||
0.70588 {"0": "Since", "1": "indeed"}
|
||||
0.70588 {"0": "Regardless", "1": "specifically"}
|
||||
0.70588 {"0": "Imagine", "1": "Explain"}
|
||||
0.70588 {"0": "After", "1": "Approximately"}
|
||||
0.70588 {"0": "Only", "1": "indeed"}
|
||||
0.70270 {"0": "Apparently", "1": "Eventually"}
|
||||
0.70270 {"0": "Another", "1": "Mostly"}
|
||||
0.70270 {"0": "Look", "1": "specifically"}
|
||||
0.70270 {"0": "Yeah", "1": "specifically"}
|
||||
0.70270 {"0": "That", "1": "indeed"}
|
||||
0.70270 {"0": "In", "1": "Mostly"}
|
||||
0.70000 {"0": "How", "1": "specifically"}
|
||||
0.70000 {"0": "Apparently", "1": "Mostly"}
|
||||
0.68750 {"0": "Like", "1": "Overall"}
|
||||
0.68571 {"0": "Anyway", "1": "Instead"}
|
||||
0.68571 {"0": "This", "1": "General"}
|
||||
0.68421 {"0": "Say", "1": "specifically"}
|
||||
0.68421 {"0": "For", "1": "specifically"}
|
||||
0.68421 {"0": "Ah", "1": "Repeat"}
|
||||
0.68421 {"0": "Naturally", "1": "specifically"}
|
||||
0.68293 {"0": "When", "1": "Related"}
|
||||
0.66667 {"0": "Example", "1": "What"}
|
||||
0.66667 {"0": "Above", "1": "further"}
|
||||
0.66667 {"0": "Somehow", "1": "Come"}
|
||||
0.65000 {"0": "Example", "1": "then"}
|
||||
0.64865 {"0": "Um", "1": "Sorry"}
|
||||
0.64706 {"0": "Since", "1": "Short"}
|
||||
0.63158 {"0": "Apparently", "1": "Tell"}
|
||||
0.58824 {"0": "Um", "1": "Readers"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Additionally", "1": "Alternatively"}
|
||||
{"0": "First", "1": "Actually"}
|
||||
{"0": "Besides", "1": "Overall"}
|
||||
{"0": "Here", "1": "specifically"}
|
||||
{"0": "Meanwhile", "1": "Overall"}
|
||||
{"0": "Wonder", "1": "Repeat"}
|
||||
{"0": "This", "1": "indeed"}
|
||||
{"0": "Consider", "1": "Repeat"}
|
||||
{"0": "Perhaps", "1": "Rather"}
|
||||
{"0": "Oh", "1": "specifically"}
|
||||
{"0": "Since", "1": "Absolutely"}
|
||||
{"0": "Afterwards", "1": "specifically"}
|
||||
{"0": "Yet", "1": "Rather"}
|
||||
{"0": "Since", "1": "Approximately"}
|
||||
{"0": "Interesting", "1": "Repeat"}
|
||||
{"0": "Meanwhile", "1": "Instead"}
|
||||
{"0": "Meanwhile", "1": "Rather"}
|
||||
{"0": "Look", "1": "Sorry"}
|
||||
{"0": "A", "1": "General"}
|
||||
{"0": "Reader", "1": "Repeat"}
|
||||
{"0": "Third", "1": "specifically"}
|
||||
{"0": "Consider", "1": "Short"}
|
||||
{"0": "Example", "1": "Really"}
|
||||
{"0": "How", "1": "Particularly"}
|
||||
{"0": "However", "1": "Really"}
|
||||
{"0": "Personally", "1": "Generally"}
|
||||
{"0": "I", "1": "Repeat"}
|
||||
{"0": "Hey", "1": "specifically"}
|
||||
{"0": "Imagine", "1": "indeed"}
|
||||
{"0": "Plus", "1": "Essentially"}
|
||||
{"0": "Apparently", "1": "General"}
|
||||
{"0": "Example", "1": "Because"}
|
||||
{"0": "Um", "1": "specifically"}
|
||||
{"0": "Still", "1": "specifically"}
|
||||
{"0": "Another", "1": "Generally"}
|
||||
{"0": "Ask", "1": "specifically"}
|
||||
{"0": "Example", "1": "Sorry"}
|
||||
{"0": "Example", "1": "specifically"}
|
||||
{"0": "Next", "1": "specifically"}
|
||||
{"0": "Naturally", "1": "Definitely"}
|
||||
{"0": "Next", "1": "Hence"}
|
||||
{"0": "Above", "1": "Definitely"}
|
||||
{"0": "As", "1": "Mostly"}
|
||||
{"0": "Another", "1": "specifically"}
|
||||
{"0": "Example", "1": "Questions"}
|
||||
{"0": "Plus", "1": "Overall"}
|
||||
{"0": "One", "1": "Definitely"}
|
||||
{"0": "Simple", "1": "Questions"}
|
||||
{"0": "Today", "1": "Overall"}
|
||||
{"0": "Plus", "1": "Really"}
|
||||
{"0": "As", "1": "specifically"}
|
||||
{"0": "Perhaps", "1": "Overall"}
|
||||
{"0": "Previously", "1": "Readers"}
|
||||
{"0": "Apparently", "1": "Come"}
|
||||
{"0": "Example", "1": "Definitely"}
|
||||
{"0": "Though", "1": "indeed"}
|
||||
{"0": "Meanwhile", "1": "Ultimately"}
|
||||
{"0": "Sometimes", "1": "Definitely"}
|
||||
{"0": "Apparently", "1": "Definitely"}
|
||||
{"0": "Here", "1": "Honestly"}
|
||||
{"0": "Later", "1": "Overall"}
|
||||
{"0": "As", "1": "Not"}
|
||||
{"0": "As", "1": "Definitely"}
|
||||
{"0": "As", "1": "Recently"}
|
||||
{"0": "Soon", "1": "indeed"}
|
||||
{"0": "However", "1": "Overall"}
|
||||
{"0": "Apparently", "1": "Together"}
|
||||
{"0": "I", "1": "General"}
|
||||
{"0": "Yet", "1": "Ultimately"}
|
||||
{"0": "That", "1": "specifically"}
|
||||
{"0": "Only", "1": "Definitely"}
|
||||
{"0": "Since", "1": "indeed"}
|
||||
{"0": "Regardless", "1": "specifically"}
|
||||
{"0": "Imagine", "1": "Explain"}
|
||||
{"0": "After", "1": "Approximately"}
|
||||
{"0": "Only", "1": "indeed"}
|
||||
{"0": "Apparently", "1": "Eventually"}
|
||||
{"0": "Another", "1": "Mostly"}
|
||||
{"0": "Look", "1": "specifically"}
|
||||
{"0": "Yeah", "1": "specifically"}
|
||||
{"0": "That", "1": "indeed"}
|
||||
{"0": "In", "1": "Mostly"}
|
||||
{"0": "How", "1": "specifically"}
|
||||
{"0": "Apparently", "1": "Mostly"}
|
||||
{"0": "Like", "1": "Overall"}
|
||||
{"0": "Anyway", "1": "Instead"}
|
||||
{"0": "This", "1": "General"}
|
||||
{"0": "Say", "1": "specifically"}
|
||||
{"0": "For", "1": "specifically"}
|
||||
{"0": "Ah", "1": "Repeat"}
|
||||
{"0": "Naturally", "1": "specifically"}
|
||||
{"0": "When", "1": "Related"}
|
||||
{"0": "Example", "1": "What"}
|
||||
{"0": "Above", "1": "further"}
|
||||
{"0": "Somehow", "1": "Come"}
|
||||
{"0": "Example", "1": "then"}
|
||||
{"0": "Um", "1": "Sorry"}
|
||||
{"0": "Since", "1": "Short"}
|
||||
{"0": "Apparently", "1": "Tell"}
|
||||
{"0": "Um", "1": "Readers"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Apparently", "1": "Come"}
|
||||
{"0": "Wonder", "1": "Repeat"}
|
||||
{"0": "Example", "1": "specifically"}
|
||||
{"0": "Next", "1": "specifically"}
|
||||
{"0": "Say", "1": "specifically"}
|
||||
{"0": "Since", "1": "Approximately"}
|
||||
{"0": "Ah", "1": "Repeat"}
|
||||
{"0": "For", "1": "specifically"}
|
||||
{"0": "Imagine", "1": "indeed"}
|
||||
{"0": "Interesting", "1": "Repeat"}
|
||||
{"0": "Example", "1": "Definitely"}
|
||||
{"0": "Plus", "1": "Really"}
|
||||
{"0": "Third", "1": "specifically"}
|
||||
{"0": "Here", "1": "specifically"}
|
||||
{"0": "Additionally", "1": "Alternatively"}
|
||||
{"0": "Consider", "1": "Short"}
|
||||
{"0": "Meanwhile", "1": "Overall"}
|
||||
{"0": "This", "1": "indeed"}
|
||||
{"0": "Oh", "1": "specifically"}
|
||||
{"0": "Meanwhile", "1": "Instead"}
|
||||
{"0": "Since", "1": "Short"}
|
||||
{"0": "Naturally", "1": "Definitely"}
|
||||
{"0": "When", "1": "Related"}
|
||||
{"0": "Anyway", "1": "Instead"}
|
||||
{"0": "Like", "1": "Overall"}
|
||||
{"0": "Example", "1": "What"}
|
||||
{"0": "Next", "1": "Hence"}
|
||||
{"0": "Since", "1": "indeed"}
|
||||
{"0": "Example", "1": "then"}
|
||||
{"0": "Still", "1": "specifically"}
|
||||
{"0": "How", "1": "specifically"}
|
||||
{"0": "However", "1": "Overall"}
|
||||
{"0": "One", "1": "Definitely"}
|
||||
{"0": "Apparently", "1": "Eventually"}
|
||||
{"0": "Apparently", "1": "Together"}
|
||||
{"0": "Though", "1": "indeed"}
|
||||
{"0": "Apparently", "1": "Mostly"}
|
||||
{"0": "Plus", "1": "Essentially"}
|
||||
{"0": "Meanwhile", "1": "Rather"}
|
||||
{"0": "Besides", "1": "Overall"}
|
||||
{"0": "Example", "1": "Really"}
|
||||
{"0": "Since", "1": "Absolutely"}
|
||||
{"0": "Another", "1": "Mostly"}
|
||||
{"0": "Meanwhile", "1": "Ultimately"}
|
||||
{"0": "Above", "1": "Definitely"}
|
||||
{"0": "Naturally", "1": "specifically"}
|
||||
{"0": "This", "1": "General"}
|
||||
{"0": "Look", "1": "Sorry"}
|
||||
{"0": "Above", "1": "further"}
|
||||
{"0": "Sometimes", "1": "Definitely"}
|
||||
{"0": "Apparently", "1": "Definitely"}
|
||||
{"0": "Somehow", "1": "Come"}
|
||||
{"0": "Apparently", "1": "General"}
|
||||
{"0": "Another", "1": "Generally"}
|
||||
{"0": "A", "1": "General"}
|
||||
{"0": "Here", "1": "Honestly"}
|
||||
{"0": "Later", "1": "Overall"}
|
||||
{"0": "How", "1": "Particularly"}
|
||||
{"0": "Perhaps", "1": "Rather"}
|
||||
{"0": "Um", "1": "Readers"}
|
||||
{"0": "As", "1": "specifically"}
|
||||
{"0": "Example", "1": "Because"}
|
||||
{"0": "Regardless", "1": "specifically"}
|
||||
{"0": "However", "1": "Really"}
|
||||
{"0": "Simple", "1": "Questions"}
|
||||
{"0": "Um", "1": "Sorry"}
|
||||
{"0": "As", "1": "Mostly"}
|
||||
{"0": "Look", "1": "specifically"}
|
||||
{"0": "I", "1": "General"}
|
||||
{"0": "As", "1": "Not"}
|
||||
{"0": "Ask", "1": "specifically"}
|
||||
{"0": "Afterwards", "1": "specifically"}
|
||||
{"0": "As", "1": "Definitely"}
|
||||
{"0": "Yeah", "1": "specifically"}
|
||||
{"0": "Apparently", "1": "Tell"}
|
||||
{"0": "Yet", "1": "Rather"}
|
||||
{"0": "Yet", "1": "Ultimately"}
|
||||
{"0": "Personally", "1": "Generally"}
|
||||
{"0": "I", "1": "Repeat"}
|
||||
{"0": "That", "1": "indeed"}
|
||||
{"0": "Perhaps", "1": "Overall"}
|
||||
{"0": "First", "1": "Actually"}
|
||||
{"0": "Imagine", "1": "Explain"}
|
||||
{"0": "That", "1": "specifically"}
|
||||
{"0": "Consider", "1": "Repeat"}
|
||||
{"0": "Um", "1": "specifically"}
|
||||
{"0": "Reader", "1": "Repeat"}
|
||||
{"0": "After", "1": "Approximately"}
|
||||
{"0": "Another", "1": "specifically"}
|
||||
{"0": "In", "1": "Mostly"}
|
||||
{"0": "As", "1": "Recently"}
|
||||
{"0": "Previously", "1": "Readers"}
|
||||
{"0": "Example", "1": "Sorry"}
|
||||
{"0": "Today", "1": "Overall"}
|
||||
{"0": "Hey", "1": "specifically"}
|
||||
{"0": "Example", "1": "Questions"}
|
||||
{"0": "Plus", "1": "Overall"}
|
||||
{"0": "Only", "1": "indeed"}
|
||||
{"0": "Only", "1": "Definitely"}
|
||||
{"0": "Soon", "1": "indeed"}
|
|
@ -0,0 +1,100 @@
|
|||
0.81081 {"0": "Today", "1": "Okay"}
|
||||
0.80000 {"0": "Fourth", "1": "Correction"}
|
||||
0.80000 {"0": "The", "1": "indeed"}
|
||||
0.80000 {"0": "Imagine", "1": "Er"}
|
||||
0.80000 {"0": "To", "1": "Except"}
|
||||
0.78947 {"0": "On", "1": "Absolutely"}
|
||||
0.78947 {"0": "Question", "1": "Wait"}
|
||||
0.78788 {"0": "Thus", "1": "Really"}
|
||||
0.78049 {"0": "Since", "1": "Absolutely"}
|
||||
0.78049 {"0": "Example", "1": "Literally"}
|
||||
0.78049 {"0": "Ah", "1": "Absolutely"}
|
||||
0.78049 {"0": "Since", "1": "Literally"}
|
||||
0.76923 {"0": "After", "1": "Absolutely"}
|
||||
0.76923 {"0": "Look", "1": "Sure"}
|
||||
0.76923 {"0": "To", "1": "Absolutely"}
|
||||
0.76923 {"0": "Again", "1": "Actually"}
|
||||
0.76923 {"0": "Second", "1": "Actually"}
|
||||
0.76923 {"0": "Tomorrow", "1": "A"}
|
||||
0.76923 {"0": "Consequently", "1": "Rather"}
|
||||
0.76190 {"0": "Think", "1": "Short"}
|
||||
0.76190 {"0": "Hence", "1": "Particularly"}
|
||||
0.76190 {"0": "so", "1": "Absolutely"}
|
||||
0.76190 {"0": "That", "1": "Not"}
|
||||
0.76190 {"0": "Man", "1": "indeed"}
|
||||
0.76190 {"0": "See", "1": "Yep"}
|
||||
0.76190 {"0": "Think", "1": "Asked"}
|
||||
0.76190 {"0": "When", "1": "Any"}
|
||||
0.76190 {"0": "Ah", "1": "Usually"}
|
||||
0.76190 {"0": "Thus", "1": "Rather"}
|
||||
0.75676 {"0": "Imagine", "1": "Absolutely"}
|
||||
0.75000 {"0": "Therefore", "1": "Actually"}
|
||||
0.75000 {"0": "Probably", "1": "Definitely"}
|
||||
0.75000 {"0": "Today", "1": "specifically"}
|
||||
0.75000 {"0": "Approximately", "1": "Usually"}
|
||||
0.75000 {"0": "Overall", "1": "Particularly"}
|
||||
0.75000 {"0": "Example", "1": "specifically"}
|
||||
0.75000 {"0": "Next", "1": "Please"}
|
||||
0.75000 {"0": "PLUS", "1": "A"}
|
||||
0.75000 {"0": "Later", "1": "Certainly"}
|
||||
0.75000 {"0": "A", "1": "Absolutely"}
|
||||
0.75000 {"0": "Next", "1": "Really"}
|
||||
0.75000 {"0": "Where", "1": "specifically"}
|
||||
0.75000 {"0": "Man", "1": "Usually"}
|
||||
0.75000 {"0": "Example", "1": "Simply"}
|
||||
0.74419 {"0": "Think", "1": "indeed"}
|
||||
0.74419 {"0": "Imagine", "1": "indeed"}
|
||||
0.74419 {"0": "When", "1": "indeed"}
|
||||
0.74419 {"0": "Later", "1": "specifically"}
|
||||
0.74419 {"0": "Sir", "1": "Sorry"}
|
||||
0.74419 {"0": "Since", "1": "indeed"}
|
||||
0.74419 {"0": "Imagine", "1": "Usually"}
|
||||
0.74419 {"0": "Approximately", "1": "Nor"}
|
||||
0.74419 {"0": "General", "1": "indeed"}
|
||||
0.73684 {"0": "Fourth", "1": "Absolutely"}
|
||||
0.73171 {"0": "Answer", "1": "or"}
|
||||
0.73171 {"0": "Here", "1": "Particularly"}
|
||||
0.73171 {"0": "How", "1": "Honestly"}
|
||||
0.73171 {"0": "Think", "1": "Nor"}
|
||||
0.73171 {"0": "Fourth", "1": "furthermore"}
|
||||
0.73171 {"0": "Imagine", "1": "Hell"}
|
||||
0.73171 {"0": "Meanwhile", "1": "Worse"}
|
||||
0.73171 {"0": "Later", "1": "Better"}
|
||||
0.73171 {"0": "Man", "1": "Truly"}
|
||||
0.73171 {"0": "Say", "1": "or"}
|
||||
0.73171 {"0": "How", "1": "or"}
|
||||
0.73171 {"0": "Man", "1": "Yep"}
|
||||
0.73171 {"0": "After", "1": "Literally"}
|
||||
0.72727 {"0": "Man", "1": "Absolutely"}
|
||||
0.72727 {"0": "Two", "1": "Somehow"}
|
||||
0.72727 {"0": "Yet", "1": "Certainly"}
|
||||
0.72727 {"0": "Tomorrow", "1": "Historically"}
|
||||
0.72727 {"0": "Tomorrow", "1": "Readers"}
|
||||
0.72727 {"0": "Now", "1": "Actually"}
|
||||
0.72727 {"0": "Which", "1": "Definitely"}
|
||||
0.72727 {"0": "How", "1": "Worse"}
|
||||
0.72222 {"0": "Basically", "1": "Actually"}
|
||||
0.72222 {"0": "General", "1": "Correction"}
|
||||
0.71795 {"0": "Imagine", "1": "Any"}
|
||||
0.71795 {"0": "Tomorrow", "1": "Absolutely"}
|
||||
0.71795 {"0": "Else", "1": "specifically"}
|
||||
0.71795 {"0": "Imagine", "1": "Except"}
|
||||
0.71795 {"0": "Else", "1": "Definitely"}
|
||||
0.71795 {"0": "Below", "1": "specifically"}
|
||||
0.71429 {"0": "Thus", "1": "Essentially"}
|
||||
0.71429 {"0": "Simple", "1": "specifically"}
|
||||
0.71429 {"0": "Whereas", "1": "indeed"}
|
||||
0.71429 {"0": "Think", "1": "specifically"}
|
||||
0.71429 {"0": "Else", "1": "Accordingly"}
|
||||
0.71429 {"0": "Tomorrow", "1": "Previously"}
|
||||
0.71429 {"0": "A", "1": "indeed"}
|
||||
0.70000 {"0": "But", "1": "Especially"}
|
||||
0.69767 {"0": "Still", "1": "Better"}
|
||||
0.69767 {"0": "Next", "1": "Particularly"}
|
||||
0.69767 {"0": "Thus", "1": "Particularly"}
|
||||
0.69767 {"0": "See", "1": "specifically"}
|
||||
0.69767 {"0": "Remember", "1": "or"}
|
||||
0.68421 {"0": "Today", "1": "Better"}
|
||||
0.68421 {"0": "Tomorrow", "1": "indeed"}
|
||||
0.66667 {"0": "But", "1": "Particularly"}
|
||||
0.66667 {"0": "Approximately", "1": "Often"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Today", "1": "Okay"}
|
||||
{"0": "Fourth", "1": "Correction"}
|
||||
{"0": "The", "1": "indeed"}
|
||||
{"0": "Imagine", "1": "Er"}
|
||||
{"0": "To", "1": "Except"}
|
||||
{"0": "On", "1": "Absolutely"}
|
||||
{"0": "Question", "1": "Wait"}
|
||||
{"0": "Thus", "1": "Really"}
|
||||
{"0": "Since", "1": "Absolutely"}
|
||||
{"0": "Example", "1": "Literally"}
|
||||
{"0": "Ah", "1": "Absolutely"}
|
||||
{"0": "Since", "1": "Literally"}
|
||||
{"0": "After", "1": "Absolutely"}
|
||||
{"0": "Look", "1": "Sure"}
|
||||
{"0": "To", "1": "Absolutely"}
|
||||
{"0": "Again", "1": "Actually"}
|
||||
{"0": "Second", "1": "Actually"}
|
||||
{"0": "Tomorrow", "1": "A"}
|
||||
{"0": "Consequently", "1": "Rather"}
|
||||
{"0": "Think", "1": "Short"}
|
||||
{"0": "Hence", "1": "Particularly"}
|
||||
{"0": "so", "1": "Absolutely"}
|
||||
{"0": "That", "1": "Not"}
|
||||
{"0": "Man", "1": "indeed"}
|
||||
{"0": "See", "1": "Yep"}
|
||||
{"0": "Think", "1": "Asked"}
|
||||
{"0": "When", "1": "Any"}
|
||||
{"0": "Ah", "1": "Usually"}
|
||||
{"0": "Thus", "1": "Rather"}
|
||||
{"0": "Imagine", "1": "Absolutely"}
|
||||
{"0": "Therefore", "1": "Actually"}
|
||||
{"0": "Probably", "1": "Definitely"}
|
||||
{"0": "Today", "1": "specifically"}
|
||||
{"0": "Approximately", "1": "Usually"}
|
||||
{"0": "Overall", "1": "Particularly"}
|
||||
{"0": "Example", "1": "specifically"}
|
||||
{"0": "Next", "1": "Please"}
|
||||
{"0": "PLUS", "1": "A"}
|
||||
{"0": "Later", "1": "Certainly"}
|
||||
{"0": "A", "1": "Absolutely"}
|
||||
{"0": "Next", "1": "Really"}
|
||||
{"0": "Where", "1": "specifically"}
|
||||
{"0": "Man", "1": "Usually"}
|
||||
{"0": "Example", "1": "Simply"}
|
||||
{"0": "Think", "1": "indeed"}
|
||||
{"0": "Imagine", "1": "indeed"}
|
||||
{"0": "When", "1": "indeed"}
|
||||
{"0": "Later", "1": "specifically"}
|
||||
{"0": "Sir", "1": "Sorry"}
|
||||
{"0": "Since", "1": "indeed"}
|
||||
{"0": "Imagine", "1": "Usually"}
|
||||
{"0": "Approximately", "1": "Nor"}
|
||||
{"0": "General", "1": "indeed"}
|
||||
{"0": "Fourth", "1": "Absolutely"}
|
||||
{"0": "Answer", "1": "or"}
|
||||
{"0": "Here", "1": "Particularly"}
|
||||
{"0": "How", "1": "Honestly"}
|
||||
{"0": "Think", "1": "Nor"}
|
||||
{"0": "Fourth", "1": "furthermore"}
|
||||
{"0": "Imagine", "1": "Hell"}
|
||||
{"0": "Meanwhile", "1": "Worse"}
|
||||
{"0": "Later", "1": "Better"}
|
||||
{"0": "Man", "1": "Truly"}
|
||||
{"0": "Say", "1": "or"}
|
||||
{"0": "How", "1": "or"}
|
||||
{"0": "Man", "1": "Yep"}
|
||||
{"0": "After", "1": "Literally"}
|
||||
{"0": "Man", "1": "Absolutely"}
|
||||
{"0": "Two", "1": "Somehow"}
|
||||
{"0": "Yet", "1": "Certainly"}
|
||||
{"0": "Tomorrow", "1": "Historically"}
|
||||
{"0": "Tomorrow", "1": "Readers"}
|
||||
{"0": "Now", "1": "Actually"}
|
||||
{"0": "Which", "1": "Definitely"}
|
||||
{"0": "How", "1": "Worse"}
|
||||
{"0": "Basically", "1": "Actually"}
|
||||
{"0": "General", "1": "Correction"}
|
||||
{"0": "Imagine", "1": "Any"}
|
||||
{"0": "Tomorrow", "1": "Absolutely"}
|
||||
{"0": "Else", "1": "specifically"}
|
||||
{"0": "Imagine", "1": "Except"}
|
||||
{"0": "Else", "1": "Definitely"}
|
||||
{"0": "Below", "1": "specifically"}
|
||||
{"0": "Thus", "1": "Essentially"}
|
||||
{"0": "Simple", "1": "specifically"}
|
||||
{"0": "Whereas", "1": "indeed"}
|
||||
{"0": "Think", "1": "specifically"}
|
||||
{"0": "Else", "1": "Accordingly"}
|
||||
{"0": "Tomorrow", "1": "Previously"}
|
||||
{"0": "A", "1": "indeed"}
|
||||
{"0": "But", "1": "Especially"}
|
||||
{"0": "Still", "1": "Better"}
|
||||
{"0": "Next", "1": "Particularly"}
|
||||
{"0": "Thus", "1": "Particularly"}
|
||||
{"0": "See", "1": "specifically"}
|
||||
{"0": "Remember", "1": "or"}
|
||||
{"0": "Today", "1": "Better"}
|
||||
{"0": "Tomorrow", "1": "indeed"}
|
||||
{"0": "But", "1": "Particularly"}
|
||||
{"0": "Approximately", "1": "Often"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Think", "1": "indeed"}
|
||||
{"0": "After", "1": "Absolutely"}
|
||||
{"0": "Look", "1": "Sure"}
|
||||
{"0": "Imagine", "1": "indeed"}
|
||||
{"0": "Tomorrow", "1": "indeed"}
|
||||
{"0": "Today", "1": "Better"}
|
||||
{"0": "Answer", "1": "or"}
|
||||
{"0": "Think", "1": "Short"}
|
||||
{"0": "Here", "1": "Particularly"}
|
||||
{"0": "Today", "1": "Okay"}
|
||||
{"0": "Since", "1": "Absolutely"}
|
||||
{"0": "To", "1": "Absolutely"}
|
||||
{"0": "Man", "1": "Absolutely"}
|
||||
{"0": "When", "1": "indeed"}
|
||||
{"0": "Fourth", "1": "Correction"}
|
||||
{"0": "Later", "1": "specifically"}
|
||||
{"0": "Imagine", "1": "Any"}
|
||||
{"0": "Basically", "1": "Actually"}
|
||||
{"0": "Tomorrow", "1": "Absolutely"}
|
||||
{"0": "Therefore", "1": "Actually"}
|
||||
{"0": "Again", "1": "Actually"}
|
||||
{"0": "The", "1": "indeed"}
|
||||
{"0": "Probably", "1": "Definitely"}
|
||||
{"0": "Hence", "1": "Particularly"}
|
||||
{"0": "Second", "1": "Actually"}
|
||||
{"0": "Today", "1": "specifically"}
|
||||
{"0": "so", "1": "Absolutely"}
|
||||
{"0": "Tomorrow", "1": "A"}
|
||||
{"0": "Two", "1": "Somehow"}
|
||||
{"0": "Sir", "1": "Sorry"}
|
||||
{"0": "Think", "1": "Nor"}
|
||||
{"0": "How", "1": "Honestly"}
|
||||
{"0": "Still", "1": "Better"}
|
||||
{"0": "Thus", "1": "Essentially"}
|
||||
{"0": "Simple", "1": "specifically"}
|
||||
{"0": "Fourth", "1": "furthermore"}
|
||||
{"0": "Next", "1": "Particularly"}
|
||||
{"0": "Else", "1": "specifically"}
|
||||
{"0": "Whereas", "1": "indeed"}
|
||||
{"0": "Imagine", "1": "Hell"}
|
||||
{"0": "Approximately", "1": "Usually"}
|
||||
{"0": "Thus", "1": "Particularly"}
|
||||
{"0": "Meanwhile", "1": "Worse"}
|
||||
{"0": "Overall", "1": "Particularly"}
|
||||
{"0": "Yet", "1": "Certainly"}
|
||||
{"0": "That", "1": "Not"}
|
||||
{"0": "General", "1": "Correction"}
|
||||
{"0": "Imagine", "1": "Except"}
|
||||
{"0": "Imagine", "1": "Er"}
|
||||
{"0": "But", "1": "Particularly"}
|
||||
{"0": "Example", "1": "Literally"}
|
||||
{"0": "But", "1": "Especially"}
|
||||
{"0": "Example", "1": "specifically"}
|
||||
{"0": "Think", "1": "specifically"}
|
||||
{"0": "Else", "1": "Accordingly"}
|
||||
{"0": "Next", "1": "Please"}
|
||||
{"0": "Else", "1": "Definitely"}
|
||||
{"0": "To", "1": "Except"}
|
||||
{"0": "Below", "1": "specifically"}
|
||||
{"0": "Fourth", "1": "Absolutely"}
|
||||
{"0": "Imagine", "1": "Absolutely"}
|
||||
{"0": "Tomorrow", "1": "Previously"}
|
||||
{"0": "Tomorrow", "1": "Historically"}
|
||||
{"0": "A", "1": "indeed"}
|
||||
{"0": "See", "1": "specifically"}
|
||||
{"0": "On", "1": "Absolutely"}
|
||||
{"0": "Ah", "1": "Absolutely"}
|
||||
{"0": "Since", "1": "indeed"}
|
||||
{"0": "PLUS", "1": "A"}
|
||||
{"0": "Since", "1": "Literally"}
|
||||
{"0": "Tomorrow", "1": "Readers"}
|
||||
{"0": "Man", "1": "indeed"}
|
||||
{"0": "Now", "1": "Actually"}
|
||||
{"0": "Question", "1": "Wait"}
|
||||
{"0": "See", "1": "Yep"}
|
||||
{"0": "A", "1": "Absolutely"}
|
||||
{"0": "Later", "1": "Certainly"}
|
||||
{"0": "Man", "1": "Truly"}
|
||||
{"0": "Later", "1": "Better"}
|
||||
{"0": "Next", "1": "Really"}
|
||||
{"0": "Think", "1": "Asked"}
|
||||
{"0": "Which", "1": "Definitely"}
|
||||
{"0": "Say", "1": "or"}
|
||||
{"0": "When", "1": "Any"}
|
||||
{"0": "Remember", "1": "or"}
|
||||
{"0": "Ah", "1": "Usually"}
|
||||
{"0": "How", "1": "or"}
|
||||
{"0": "Where", "1": "specifically"}
|
||||
{"0": "Man", "1": "Usually"}
|
||||
{"0": "Man", "1": "Yep"}
|
||||
{"0": "How", "1": "Worse"}
|
||||
{"0": "Thus", "1": "Really"}
|
||||
{"0": "Imagine", "1": "Usually"}
|
||||
{"0": "After", "1": "Literally"}
|
||||
{"0": "Example", "1": "Simply"}
|
||||
{"0": "Thus", "1": "Rather"}
|
||||
{"0": "Approximately", "1": "Often"}
|
||||
{"0": "Consequently", "1": "Rather"}
|
||||
{"0": "General", "1": "indeed"}
|
||||
{"0": "Approximately", "1": "Nor"}
|
|
@ -0,0 +1,100 @@
|
|||
0.86486 {"0": "Since", "1": "Me"}
|
||||
0.85714 {"0": "Best", "1": "Um"}
|
||||
0.85714 {"0": "Beyond", "1": "Ironically"}
|
||||
0.84848 {"0": "Currently", "1": "Uh"}
|
||||
0.84211 {"0": "Most", "1": "Uh"}
|
||||
0.84211 {"0": "Best", "1": "Come"}
|
||||
0.83333 {"0": "Now", "1": "Seriously"}
|
||||
0.83333 {"0": "Today", "1": "Okay"}
|
||||
0.83333 {"0": "That", "1": "Correction"}
|
||||
0.83333 {"0": "By", "1": "Correction"}
|
||||
0.83333 {"0": "Best", "1": "Any"}
|
||||
0.82353 {"0": "One", "1": "Er"}
|
||||
0.82353 {"0": "Generally", "1": "Wait"}
|
||||
0.82353 {"0": "An", "1": "Correction"}
|
||||
0.82051 {"0": "Meanwhile", "1": "Seriously"}
|
||||
0.82051 {"0": "Below", "1": "Absolutely"}
|
||||
0.81250 {"0": "Recently", "1": "Hopefully"}
|
||||
0.81250 {"0": "That", "1": "Hell"}
|
||||
0.81081 {"0": "Now", "1": "Really"}
|
||||
0.81081 {"0": "Naturally", "1": "Definitely"}
|
||||
0.81081 {"0": "Two", "1": "Sorry"}
|
||||
0.81081 {"0": "Before", "1": "Hmm"}
|
||||
0.81081 {"0": "You", "1": "Correction"}
|
||||
0.81081 {"0": "One", "1": "Literally"}
|
||||
0.81081 {"0": "Afterwards", "1": "Hell"}
|
||||
0.81081 {"0": "Next", "1": "Perhaps"}
|
||||
0.81081 {"0": "Naturally", "1": "Literally"}
|
||||
0.81081 {"0": "Third", "1": "Certainly"}
|
||||
0.81081 {"0": "Clearly", "1": "Hell"}
|
||||
0.81081 {"0": "Most", "1": "Read"}
|
||||
0.80000 {"0": "Look", "1": "Yep"}
|
||||
0.80000 {"0": "Most", "1": "Literally"}
|
||||
0.80000 {"0": "Before", "1": "Correction"}
|
||||
0.80000 {"0": "How", "1": "Ok"}
|
||||
0.80000 {"0": "Most", "1": "Good"}
|
||||
0.80000 {"0": "Then", "1": "Really"}
|
||||
0.78947 {"0": "After", "1": "Correction"}
|
||||
0.78947 {"0": "Third", "1": "OR"}
|
||||
0.78947 {"0": "Any", "1": "God"}
|
||||
0.78947 {"0": "See", "1": "Correction"}
|
||||
0.78947 {"0": "Afterwards", "1": "Correction"}
|
||||
0.78947 {"0": "Apparently", "1": "Literally"}
|
||||
0.78788 {"0": "Naturally", "1": "Certainly"}
|
||||
0.78788 {"0": "Where", "1": "Me"}
|
||||
0.78788 {"0": "Above", "1": "Literally"}
|
||||
0.78788 {"0": "When", "1": "Wow"}
|
||||
0.78049 {"0": "Most", "1": "Absolutely"}
|
||||
0.78049 {"0": "Ladies", "1": "Sorry"}
|
||||
0.77778 {"0": "Next", "1": "or"}
|
||||
0.77778 {"0": "Online", "1": "Hmm"}
|
||||
0.77778 {"0": "Naturally", "1": "Yeah"}
|
||||
0.77778 {"0": "Initially", "1": "Uh"}
|
||||
0.77778 {"0": "A", "1": "Correction"}
|
||||
0.77778 {"0": "And", "1": "Or"}
|
||||
0.77778 {"0": "Interesting", "1": "Correction"}
|
||||
0.77419 {"0": "Since", "1": "Um"}
|
||||
0.77419 {"0": "Because", "1": "Ok"}
|
||||
0.76923 {"0": "Finally", "1": "Alternatively"}
|
||||
0.76923 {"0": "Earlier", "1": "Absolutely"}
|
||||
0.76923 {"0": "Later", "1": "Hell"}
|
||||
0.76471 {"0": "Where", "1": "Nor"}
|
||||
0.76471 {"0": "Currently", "1": "Personally"}
|
||||
0.76471 {"0": "Naturally", "1": "Say"}
|
||||
0.76471 {"0": "When", "1": "Correction"}
|
||||
0.75676 {"0": "Since", "1": "Correction"}
|
||||
0.75676 {"0": "Where", "1": "Correction"}
|
||||
0.75676 {"0": "To", "1": "Correction"}
|
||||
0.75676 {"0": "Beyond", "1": "Literally"}
|
||||
0.75676 {"0": "Two", "1": "That"}
|
||||
0.75676 {"0": "Naturally", "1": "Hell"}
|
||||
0.74286 {"0": "Currently", "1": "Maybe"}
|
||||
0.74286 {"0": "Where", "1": "God"}
|
||||
0.74286 {"0": "Afterwards", "1": "Nor"}
|
||||
0.73333 {"0": "As", "1": "Correction"}
|
||||
0.72727 {"0": "As", "1": "Hell"}
|
||||
0.72727 {"0": "After", "1": "Yep"}
|
||||
0.72727 {"0": "For", "1": "Er"}
|
||||
0.72727 {"0": "Parents", "1": "Literally"}
|
||||
0.72727 {"0": "How", "1": "Oh"}
|
||||
0.72727 {"0": "Since", "1": "Hmm"}
|
||||
0.72222 {"0": "One", "1": "Yep"}
|
||||
0.72222 {"0": "Next", "1": "Particularly"}
|
||||
0.70968 {"0": "As", "1": "Absolutely"}
|
||||
0.70968 {"0": "As", "1": "Literally"}
|
||||
0.70968 {"0": "Parents", "1": "See"}
|
||||
0.70588 {"0": "On", "1": "Yep"}
|
||||
0.70588 {"0": "When", "1": "God"}
|
||||
0.70588 {"0": "Currently", "1": "Ok"}
|
||||
0.70588 {"0": "Currently", "1": "Unfortunately"}
|
||||
0.70270 {"0": "Um", "1": "Sorry"}
|
||||
0.70270 {"0": "How", "1": "Possibly"}
|
||||
0.68571 {"0": "General", "1": "Uh"}
|
||||
0.68421 {"0": "Interesting", "1": "Less"}
|
||||
0.66667 {"0": "Note", "1": "Interesting"}
|
||||
0.66667 {"0": "Basically", "1": "Indeed"}
|
||||
0.66667 {"0": "General", "1": "Hell"}
|
||||
0.66667 {"0": "Parents", "1": "God"}
|
||||
0.66667 {"0": "For", "1": "Probably"}
|
||||
0.66667 {"0": "Often", "1": "Hell"}
|
||||
0.64706 {"0": "As", "1": "Nor"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Since", "1": "Me"}
|
||||
{"0": "Best", "1": "Um"}
|
||||
{"0": "Beyond", "1": "Ironically"}
|
||||
{"0": "Currently", "1": "Uh"}
|
||||
{"0": "Most", "1": "Uh"}
|
||||
{"0": "Best", "1": "Come"}
|
||||
{"0": "Now", "1": "Seriously"}
|
||||
{"0": "Today", "1": "Okay"}
|
||||
{"0": "That", "1": "Correction"}
|
||||
{"0": "By", "1": "Correction"}
|
||||
{"0": "Best", "1": "Any"}
|
||||
{"0": "One", "1": "Er"}
|
||||
{"0": "Generally", "1": "Wait"}
|
||||
{"0": "An", "1": "Correction"}
|
||||
{"0": "Meanwhile", "1": "Seriously"}
|
||||
{"0": "Below", "1": "Absolutely"}
|
||||
{"0": "Recently", "1": "Hopefully"}
|
||||
{"0": "That", "1": "Hell"}
|
||||
{"0": "Now", "1": "Really"}
|
||||
{"0": "Naturally", "1": "Definitely"}
|
||||
{"0": "Two", "1": "Sorry"}
|
||||
{"0": "Before", "1": "Hmm"}
|
||||
{"0": "You", "1": "Correction"}
|
||||
{"0": "One", "1": "Literally"}
|
||||
{"0": "Afterwards", "1": "Hell"}
|
||||
{"0": "Next", "1": "Perhaps"}
|
||||
{"0": "Naturally", "1": "Literally"}
|
||||
{"0": "Third", "1": "Certainly"}
|
||||
{"0": "Clearly", "1": "Hell"}
|
||||
{"0": "Most", "1": "Read"}
|
||||
{"0": "Look", "1": "Yep"}
|
||||
{"0": "Most", "1": "Literally"}
|
||||
{"0": "Before", "1": "Correction"}
|
||||
{"0": "How", "1": "Ok"}
|
||||
{"0": "Most", "1": "Good"}
|
||||
{"0": "Then", "1": "Really"}
|
||||
{"0": "After", "1": "Correction"}
|
||||
{"0": "Third", "1": "OR"}
|
||||
{"0": "Any", "1": "God"}
|
||||
{"0": "See", "1": "Correction"}
|
||||
{"0": "Afterwards", "1": "Correction"}
|
||||
{"0": "Apparently", "1": "Literally"}
|
||||
{"0": "Naturally", "1": "Certainly"}
|
||||
{"0": "Where", "1": "Me"}
|
||||
{"0": "Above", "1": "Literally"}
|
||||
{"0": "When", "1": "Wow"}
|
||||
{"0": "Most", "1": "Absolutely"}
|
||||
{"0": "Ladies", "1": "Sorry"}
|
||||
{"0": "Next", "1": "or"}
|
||||
{"0": "Online", "1": "Hmm"}
|
||||
{"0": "Naturally", "1": "Yeah"}
|
||||
{"0": "Initially", "1": "Uh"}
|
||||
{"0": "A", "1": "Correction"}
|
||||
{"0": "And", "1": "Or"}
|
||||
{"0": "Interesting", "1": "Correction"}
|
||||
{"0": "Since", "1": "Um"}
|
||||
{"0": "Because", "1": "Ok"}
|
||||
{"0": "Finally", "1": "Alternatively"}
|
||||
{"0": "Earlier", "1": "Absolutely"}
|
||||
{"0": "Later", "1": "Hell"}
|
||||
{"0": "Where", "1": "Nor"}
|
||||
{"0": "Currently", "1": "Personally"}
|
||||
{"0": "Naturally", "1": "Say"}
|
||||
{"0": "When", "1": "Correction"}
|
||||
{"0": "Since", "1": "Correction"}
|
||||
{"0": "Where", "1": "Correction"}
|
||||
{"0": "To", "1": "Correction"}
|
||||
{"0": "Beyond", "1": "Literally"}
|
||||
{"0": "Two", "1": "That"}
|
||||
{"0": "Naturally", "1": "Hell"}
|
||||
{"0": "Currently", "1": "Maybe"}
|
||||
{"0": "Where", "1": "God"}
|
||||
{"0": "Afterwards", "1": "Nor"}
|
||||
{"0": "As", "1": "Correction"}
|
||||
{"0": "As", "1": "Hell"}
|
||||
{"0": "After", "1": "Yep"}
|
||||
{"0": "For", "1": "Er"}
|
||||
{"0": "Parents", "1": "Literally"}
|
||||
{"0": "How", "1": "Oh"}
|
||||
{"0": "Since", "1": "Hmm"}
|
||||
{"0": "One", "1": "Yep"}
|
||||
{"0": "Next", "1": "Particularly"}
|
||||
{"0": "As", "1": "Absolutely"}
|
||||
{"0": "As", "1": "Literally"}
|
||||
{"0": "Parents", "1": "See"}
|
||||
{"0": "On", "1": "Yep"}
|
||||
{"0": "When", "1": "God"}
|
||||
{"0": "Currently", "1": "Ok"}
|
||||
{"0": "Currently", "1": "Unfortunately"}
|
||||
{"0": "Um", "1": "Sorry"}
|
||||
{"0": "How", "1": "Possibly"}
|
||||
{"0": "General", "1": "Uh"}
|
||||
{"0": "Interesting", "1": "Less"}
|
||||
{"0": "Note", "1": "Interesting"}
|
||||
{"0": "Basically", "1": "Indeed"}
|
||||
{"0": "General", "1": "Hell"}
|
||||
{"0": "Parents", "1": "God"}
|
||||
{"0": "For", "1": "Probably"}
|
||||
{"0": "Often", "1": "Hell"}
|
||||
{"0": "As", "1": "Nor"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Now", "1": "Seriously"}
|
||||
{"0": "Next", "1": "or"}
|
||||
{"0": "Currently", "1": "Maybe"}
|
||||
{"0": "Now", "1": "Really"}
|
||||
{"0": "Since", "1": "Correction"}
|
||||
{"0": "As", "1": "Correction"}
|
||||
{"0": "Naturally", "1": "Definitely"}
|
||||
{"0": "Look", "1": "Yep"}
|
||||
{"0": "As", "1": "Absolutely"}
|
||||
{"0": "Meanwhile", "1": "Seriously"}
|
||||
{"0": "Where", "1": "God"}
|
||||
{"0": "Most", "1": "Literally"}
|
||||
{"0": "Today", "1": "Okay"}
|
||||
{"0": "How", "1": "Ok"}
|
||||
{"0": "Currently", "1": "Personally"}
|
||||
{"0": "Where", "1": "Nor"}
|
||||
{"0": "As", "1": "Literally"}
|
||||
{"0": "Online", "1": "Hmm"}
|
||||
{"0": "After", "1": "Correction"}
|
||||
{"0": "On", "1": "Yep"}
|
||||
{"0": "One", "1": "Er"}
|
||||
{"0": "Interesting", "1": "Less"}
|
||||
{"0": "Naturally", "1": "Yeah"}
|
||||
{"0": "Where", "1": "Correction"}
|
||||
{"0": "As", "1": "Hell"}
|
||||
{"0": "Note", "1": "Interesting"}
|
||||
{"0": "After", "1": "Yep"}
|
||||
{"0": "Before", "1": "Hmm"}
|
||||
{"0": "Two", "1": "Sorry"}
|
||||
{"0": "You", "1": "Correction"}
|
||||
{"0": "To", "1": "Correction"}
|
||||
{"0": "Since", "1": "Me"}
|
||||
{"0": "Most", "1": "Uh"}
|
||||
{"0": "Afterwards", "1": "Nor"}
|
||||
{"0": "Basically", "1": "Indeed"}
|
||||
{"0": "Beyond", "1": "Literally"}
|
||||
{"0": "That", "1": "Correction"}
|
||||
{"0": "One", "1": "Literally"}
|
||||
{"0": "Afterwards", "1": "Hell"}
|
||||
{"0": "By", "1": "Correction"}
|
||||
{"0": "Next", "1": "Perhaps"}
|
||||
{"0": "Often", "1": "Hell"}
|
||||
{"0": "When", "1": "God"}
|
||||
{"0": "For", "1": "Er"}
|
||||
{"0": "Recently", "1": "Hopefully"}
|
||||
{"0": "Parents", "1": "God"}
|
||||
{"0": "As", "1": "Nor"}
|
||||
{"0": "Finally", "1": "Alternatively"}
|
||||
{"0": "Earlier", "1": "Absolutely"}
|
||||
{"0": "Naturally", "1": "Certainly"}
|
||||
{"0": "Currently", "1": "Ok"}
|
||||
{"0": "Where", "1": "Me"}
|
||||
{"0": "Naturally", "1": "Literally"}
|
||||
{"0": "Best", "1": "Um"}
|
||||
{"0": "Below", "1": "Absolutely"}
|
||||
{"0": "Most", "1": "Absolutely"}
|
||||
{"0": "That", "1": "Hell"}
|
||||
{"0": "Third", "1": "OR"}
|
||||
{"0": "Currently", "1": "Uh"}
|
||||
{"0": "Most", "1": "Good"}
|
||||
{"0": "For", "1": "Probably"}
|
||||
{"0": "Beyond", "1": "Ironically"}
|
||||
{"0": "Later", "1": "Hell"}
|
||||
{"0": "Parents", "1": "Literally"}
|
||||
{"0": "Any", "1": "God"}
|
||||
{"0": "Third", "1": "Certainly"}
|
||||
{"0": "Naturally", "1": "Say"}
|
||||
{"0": "Best", "1": "Any"}
|
||||
{"0": "Since", "1": "Um"}
|
||||
{"0": "How", "1": "Oh"}
|
||||
{"0": "Generally", "1": "Wait"}
|
||||
{"0": "Um", "1": "Sorry"}
|
||||
{"0": "How", "1": "Possibly"}
|
||||
{"0": "Clearly", "1": "Hell"}
|
||||
{"0": "An", "1": "Correction"}
|
||||
{"0": "Ladies", "1": "Sorry"}
|
||||
{"0": "Parents", "1": "See"}
|
||||
{"0": "Initially", "1": "Uh"}
|
||||
{"0": "Currently", "1": "Unfortunately"}
|
||||
{"0": "Most", "1": "Read"}
|
||||
{"0": "Then", "1": "Really"}
|
||||
{"0": "General", "1": "Uh"}
|
||||
{"0": "A", "1": "Correction"}
|
||||
{"0": "And", "1": "Or"}
|
||||
{"0": "Best", "1": "Come"}
|
||||
{"0": "Before", "1": "Correction"}
|
||||
{"0": "One", "1": "Yep"}
|
||||
{"0": "See", "1": "Correction"}
|
||||
{"0": "Afterwards", "1": "Correction"}
|
||||
{"0": "Apparently", "1": "Literally"}
|
||||
{"0": "Above", "1": "Literally"}
|
||||
{"0": "Two", "1": "That"}
|
||||
{"0": "Because", "1": "Ok"}
|
||||
{"0": "When", "1": "Correction"}
|
||||
{"0": "General", "1": "Hell"}
|
||||
{"0": "Next", "1": "Particularly"}
|
||||
{"0": "Naturally", "1": "Hell"}
|
||||
{"0": "Interesting", "1": "Correction"}
|
||||
{"0": "Since", "1": "Hmm"}
|
||||
{"0": "When", "1": "Wow"}
|
|
@ -0,0 +1,100 @@
|
|||
0.90909 {"0": "Fourth", "1": "Often"}
|
||||
0.88235 {"0": "Fourth", "1": "To"}
|
||||
0.88235 {"0": "Interesting", "1": "Any"}
|
||||
0.88235 {"0": "Third", "1": "How"}
|
||||
0.88235 {"0": "Third", "1": "Regardless"}
|
||||
0.87500 {"0": "Second", "1": "Therefore"}
|
||||
0.87500 {"0": "Third", "1": "Nevertheless"}
|
||||
0.86667 {"0": "Plus", "1": "Yes"}
|
||||
0.85714 {"0": "Fourth", "1": "Initially"}
|
||||
0.85714 {"0": "Two", "1": "Before"}
|
||||
0.85714 {"0": "First", "1": "Meaning"}
|
||||
0.85714 {"0": "Third", "1": "Even"}
|
||||
0.85714 {"0": "Lastly", "1": "Therefore"}
|
||||
0.85714 {"0": "Last", "1": "On"}
|
||||
0.85714 {"0": "Better", "1": "Meaning"}
|
||||
0.84848 {"0": "Another", "1": "As"}
|
||||
0.84848 {"0": "Third", "1": "Typically"}
|
||||
0.84211 {"0": "Fourth", "1": "Above"}
|
||||
0.83871 {"0": "Third", "1": "Obviously"}
|
||||
0.83871 {"0": "Third", "1": "Yet"}
|
||||
0.83333 {"0": "AND", "1": "On"}
|
||||
0.83333 {"0": "Last", "1": "Typically"}
|
||||
0.83333 {"0": "Together", "1": "Any"}
|
||||
0.83333 {"0": "Finally", "1": "Basically"}
|
||||
0.83333 {"0": "Fourth", "1": "Though"}
|
||||
0.83333 {"0": "Afterwards", "1": "Not"}
|
||||
0.83333 {"0": "Lastly", "1": "Generally"}
|
||||
0.83333 {"0": "Another", "1": "Is"}
|
||||
0.82353 {"0": "Second", "1": "However"}
|
||||
0.82353 {"0": "Fourth", "1": "Usually"}
|
||||
0.82353 {"0": "AND", "1": "In"}
|
||||
0.82353 {"0": "Next", "1": "Meaning"}
|
||||
0.82353 {"0": "Fourth", "1": "Friends"}
|
||||
0.82353 {"0": "Beyond", "1": "To"}
|
||||
0.82353 {"0": "But", "1": "Meaning"}
|
||||
0.82353 {"0": "Interesting", "1": "Friends"}
|
||||
0.82353 {"0": "Third", "1": "Accordingly"}
|
||||
0.82353 {"0": "Third", "1": "Is"}
|
||||
0.82353 {"0": "Parents", "1": "Friends"}
|
||||
0.82353 {"0": "Third", "1": "Firstly"}
|
||||
0.82353 {"0": "Fourth", "1": "General"}
|
||||
0.82353 {"0": "AND", "1": "Is"}
|
||||
0.82051 {"0": "AND", "1": "Not"}
|
||||
0.82051 {"0": "AND", "1": "Come"}
|
||||
0.81250 {"0": "Third", "1": "Still"}
|
||||
0.81250 {"0": "Next", "1": "Say"}
|
||||
0.81250 {"0": "Third", "1": "Exactly"}
|
||||
0.81081 {"0": "Finally", "1": "Therefore"}
|
||||
0.81081 {"0": "AND", "1": "Any"}
|
||||
0.81081 {"0": "AND", "1": "Simply"}
|
||||
0.81081 {"0": "AND", "1": "A"}
|
||||
0.81081 {"0": "Below", "1": "Is"}
|
||||
0.81081 {"0": "and", "1": "Ask"}
|
||||
0.81081 {"0": "AND", "1": "As"}
|
||||
0.81081 {"0": "Afterwards", "1": "Any"}
|
||||
0.81081 {"0": "Third", "1": "Remember"}
|
||||
0.81081 {"0": "PLUS", "1": "Yep"}
|
||||
0.81081 {"0": "Afterwards", "1": "If"}
|
||||
0.81081 {"0": "AND", "1": "Sir"}
|
||||
0.81081 {"0": "Afterwards", "1": "Else"}
|
||||
0.81081 {"0": "Heck", "1": "Meaning"}
|
||||
0.81081 {"0": "AND", "1": "Wonder"}
|
||||
0.81081 {"0": "then", "1": "Is"}
|
||||
0.81081 {"0": "Another", "1": "For"}
|
||||
0.81081 {"0": "Best", "1": "Repeat"}
|
||||
0.81081 {"0": "Second", "1": "Meaning"}
|
||||
0.81081 {"0": "AND", "1": "specifically"}
|
||||
0.81081 {"0": "Better", "1": "Rather"}
|
||||
0.81081 {"0": "and", "1": "Generally"}
|
||||
0.80000 {"0": "AND", "1": "See"}
|
||||
0.80000 {"0": "Below", "1": "For"}
|
||||
0.80000 {"0": "Below", "1": "On"}
|
||||
0.80000 {"0": "AND", "1": "Approximately"}
|
||||
0.80000 {"0": "Two", "1": "Any"}
|
||||
0.80000 {"0": "Third", "1": "Currently"}
|
||||
0.80000 {"0": "PLUS", "1": "Repeat"}
|
||||
0.78947 {"0": "AND", "1": "Else"}
|
||||
0.78947 {"0": "Beyond", "1": "Repeat"}
|
||||
0.78947 {"0": "Another", "1": "On"}
|
||||
0.78947 {"0": "AND", "1": "Often"}
|
||||
0.78947 {"0": "Here", "1": "Say"}
|
||||
0.78788 {"0": "Third", "1": "Sometimes"}
|
||||
0.78788 {"0": "AND", "1": "This"}
|
||||
0.77778 {"0": "AND", "1": "For"}
|
||||
0.77778 {"0": "Third", "1": "Say"}
|
||||
0.77778 {"0": "Two", "1": "Friends"}
|
||||
0.77778 {"0": "Beyond", "1": "Approximately"}
|
||||
0.77778 {"0": "AND", "1": "Repeat"}
|
||||
0.77778 {"0": "AND", "1": "Even"}
|
||||
0.76923 {"0": "Best", "1": "Check"}
|
||||
0.76471 {"0": "AND", "1": "Friends"}
|
||||
0.76471 {"0": "AND", "1": "By"}
|
||||
0.76471 {"0": "Fourth", "1": "Approximately"}
|
||||
0.75676 {"0": "Best", "1": "Friends"}
|
||||
0.75676 {"0": "Best", "1": "Any"}
|
||||
0.75000 {"0": "AND", "1": "Ladies"}
|
||||
0.75000 {"0": "AND", "1": "Sometimes"}
|
||||
0.74286 {"0": "Best", "1": "Normally"}
|
||||
0.74286 {"0": "AND", "1": "Since"}
|
||||
0.73684 {"0": "Best", "1": "Since"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Fourth", "1": "Often"}
|
||||
{"0": "Fourth", "1": "To"}
|
||||
{"0": "Interesting", "1": "Any"}
|
||||
{"0": "Third", "1": "How"}
|
||||
{"0": "Third", "1": "Regardless"}
|
||||
{"0": "Second", "1": "Therefore"}
|
||||
{"0": "Third", "1": "Nevertheless"}
|
||||
{"0": "Plus", "1": "Yes"}
|
||||
{"0": "Fourth", "1": "Initially"}
|
||||
{"0": "Two", "1": "Before"}
|
||||
{"0": "First", "1": "Meaning"}
|
||||
{"0": "Third", "1": "Even"}
|
||||
{"0": "Lastly", "1": "Therefore"}
|
||||
{"0": "Last", "1": "On"}
|
||||
{"0": "Better", "1": "Meaning"}
|
||||
{"0": "Another", "1": "As"}
|
||||
{"0": "Third", "1": "Typically"}
|
||||
{"0": "Fourth", "1": "Above"}
|
||||
{"0": "Third", "1": "Obviously"}
|
||||
{"0": "Third", "1": "Yet"}
|
||||
{"0": "AND", "1": "On"}
|
||||
{"0": "Last", "1": "Typically"}
|
||||
{"0": "Together", "1": "Any"}
|
||||
{"0": "Finally", "1": "Basically"}
|
||||
{"0": "Fourth", "1": "Though"}
|
||||
{"0": "Afterwards", "1": "Not"}
|
||||
{"0": "Lastly", "1": "Generally"}
|
||||
{"0": "Another", "1": "Is"}
|
||||
{"0": "Second", "1": "However"}
|
||||
{"0": "Fourth", "1": "Usually"}
|
||||
{"0": "AND", "1": "In"}
|
||||
{"0": "Next", "1": "Meaning"}
|
||||
{"0": "Fourth", "1": "Friends"}
|
||||
{"0": "Beyond", "1": "To"}
|
||||
{"0": "But", "1": "Meaning"}
|
||||
{"0": "Interesting", "1": "Friends"}
|
||||
{"0": "Third", "1": "Accordingly"}
|
||||
{"0": "Third", "1": "Is"}
|
||||
{"0": "Parents", "1": "Friends"}
|
||||
{"0": "Third", "1": "Firstly"}
|
||||
{"0": "Fourth", "1": "General"}
|
||||
{"0": "AND", "1": "Is"}
|
||||
{"0": "AND", "1": "Not"}
|
||||
{"0": "AND", "1": "Come"}
|
||||
{"0": "Third", "1": "Still"}
|
||||
{"0": "Next", "1": "Say"}
|
||||
{"0": "Third", "1": "Exactly"}
|
||||
{"0": "Finally", "1": "Therefore"}
|
||||
{"0": "AND", "1": "Any"}
|
||||
{"0": "AND", "1": "Simply"}
|
||||
{"0": "AND", "1": "A"}
|
||||
{"0": "Below", "1": "Is"}
|
||||
{"0": "and", "1": "Ask"}
|
||||
{"0": "AND", "1": "As"}
|
||||
{"0": "Afterwards", "1": "Any"}
|
||||
{"0": "Third", "1": "Remember"}
|
||||
{"0": "PLUS", "1": "Yep"}
|
||||
{"0": "Afterwards", "1": "If"}
|
||||
{"0": "AND", "1": "Sir"}
|
||||
{"0": "Afterwards", "1": "Else"}
|
||||
{"0": "Heck", "1": "Meaning"}
|
||||
{"0": "AND", "1": "Wonder"}
|
||||
{"0": "then", "1": "Is"}
|
||||
{"0": "Another", "1": "For"}
|
||||
{"0": "Best", "1": "Repeat"}
|
||||
{"0": "Second", "1": "Meaning"}
|
||||
{"0": "AND", "1": "specifically"}
|
||||
{"0": "Better", "1": "Rather"}
|
||||
{"0": "and", "1": "Generally"}
|
||||
{"0": "AND", "1": "See"}
|
||||
{"0": "Below", "1": "For"}
|
||||
{"0": "Below", "1": "On"}
|
||||
{"0": "AND", "1": "Approximately"}
|
||||
{"0": "Two", "1": "Any"}
|
||||
{"0": "Third", "1": "Currently"}
|
||||
{"0": "PLUS", "1": "Repeat"}
|
||||
{"0": "AND", "1": "Else"}
|
||||
{"0": "Beyond", "1": "Repeat"}
|
||||
{"0": "Another", "1": "On"}
|
||||
{"0": "AND", "1": "Often"}
|
||||
{"0": "Here", "1": "Say"}
|
||||
{"0": "Third", "1": "Sometimes"}
|
||||
{"0": "AND", "1": "This"}
|
||||
{"0": "AND", "1": "For"}
|
||||
{"0": "Third", "1": "Say"}
|
||||
{"0": "Two", "1": "Friends"}
|
||||
{"0": "Beyond", "1": "Approximately"}
|
||||
{"0": "AND", "1": "Repeat"}
|
||||
{"0": "AND", "1": "Even"}
|
||||
{"0": "Best", "1": "Check"}
|
||||
{"0": "AND", "1": "Friends"}
|
||||
{"0": "AND", "1": "By"}
|
||||
{"0": "Fourth", "1": "Approximately"}
|
||||
{"0": "Best", "1": "Friends"}
|
||||
{"0": "Best", "1": "Any"}
|
||||
{"0": "AND", "1": "Ladies"}
|
||||
{"0": "AND", "1": "Sometimes"}
|
||||
{"0": "Best", "1": "Normally"}
|
||||
{"0": "AND", "1": "Since"}
|
||||
{"0": "Best", "1": "Since"}
|
|
@ -0,0 +1,100 @@
|
|||
{"0": "Second", "1": "Therefore"}
|
||||
{"0": "AND", "1": "For"}
|
||||
{"0": "Fourth", "1": "Initially"}
|
||||
{"0": "Below", "1": "For"}
|
||||
{"0": "Second", "1": "However"}
|
||||
{"0": "Plus", "1": "Yes"}
|
||||
{"0": "Finally", "1": "Therefore"}
|
||||
{"0": "AND", "1": "Else"}
|
||||
{"0": "AND", "1": "See"}
|
||||
{"0": "AND", "1": "Ladies"}
|
||||
{"0": "Best", "1": "Friends"}
|
||||
{"0": "Fourth", "1": "Usually"}
|
||||
{"0": "Best", "1": "Any"}
|
||||
{"0": "AND", "1": "Any"}
|
||||
{"0": "AND", "1": "In"}
|
||||
{"0": "AND", "1": "Not"}
|
||||
{"0": "Best", "1": "Normally"}
|
||||
{"0": "AND", "1": "Simply"}
|
||||
{"0": "AND", "1": "On"}
|
||||
{"0": "Next", "1": "Meaning"}
|
||||
{"0": "AND", "1": "A"}
|
||||
{"0": "AND", "1": "Come"}
|
||||
{"0": "Last", "1": "Typically"}
|
||||
{"0": "Fourth", "1": "Friends"}
|
||||
{"0": "Another", "1": "As"}
|
||||
{"0": "Below", "1": "On"}
|
||||
{"0": "Below", "1": "Is"}
|
||||
{"0": "Third", "1": "Sometimes"}
|
||||
{"0": "Third", "1": "Typically"}
|
||||
{"0": "and", "1": "Ask"}
|
||||
{"0": "Together", "1": "Any"}
|
||||
{"0": "AND", "1": "As"}
|
||||
{"0": "Third", "1": "Say"}
|
||||
{"0": "Finally", "1": "Basically"}
|
||||
{"0": "AND", "1": "Friends"}
|
||||
{"0": "AND", "1": "Approximately"}
|
||||
{"0": "Two", "1": "Any"}
|
||||
{"0": "AND", "1": "Sometimes"}
|
||||
{"0": "Beyond", "1": "Repeat"}
|
||||
{"0": "Fourth", "1": "To"}
|
||||
{"0": "Two", "1": "Before"}
|
||||
{"0": "But", "1": "Meaning"}
|
||||
{"0": "Afterwards", "1": "Any"}
|
||||
{"0": "Beyond", "1": "To"}
|
||||
{"0": "Another", "1": "On"}
|
||||
{"0": "Two", "1": "Friends"}
|
||||
{"0": "Fourth", "1": "Above"}
|
||||
{"0": "Third", "1": "Remember"}
|
||||
{"0": "Best", "1": "Check"}
|
||||
{"0": "AND", "1": "Since"}
|
||||
{"0": "AND", "1": "By"}
|
||||
{"0": "Fourth", "1": "Often"}
|
||||
{"0": "Interesting", "1": "Friends"}
|
||||
{"0": "Third", "1": "Currently"}
|
||||
{"0": "Interesting", "1": "Any"}
|
||||
{"0": "Fourth", "1": "Approximately"}
|
||||
{"0": "First", "1": "Meaning"}
|
||||
{"0": "AND", "1": "This"}
|
||||
{"0": "Best", "1": "Since"}
|
||||
{"0": "PLUS", "1": "Repeat"}
|
||||
{"0": "PLUS", "1": "Yep"}
|
||||
{"0": "Fourth", "1": "Though"}
|
||||
{"0": "Third", "1": "How"}
|
||||
{"0": "Third", "1": "Even"}
|
||||
{"0": "Third", "1": "Accordingly"}
|
||||
{"0": "Third", "1": "Is"}
|
||||
{"0": "Lastly", "1": "Therefore"}
|
||||
{"0": "Parents", "1": "Friends"}
|
||||
{"0": "Afterwards", "1": "If"}
|
||||
{"0": "AND", "1": "Sir"}
|
||||
{"0": "Afterwards", "1": "Else"}
|
||||
{"0": "Afterwards", "1": "Not"}
|
||||
{"0": "Lastly", "1": "Generally"}
|
||||
{"0": "Third", "1": "Firstly"}
|
||||
{"0": "AND", "1": "Often"}
|
||||
{"0": "Heck", "1": "Meaning"}
|
||||
{"0": "Beyond", "1": "Approximately"}
|
||||
{"0": "Third", "1": "Still"}
|
||||
{"0": "AND", "1": "Wonder"}
|
||||
{"0": "Here", "1": "Say"}
|
||||
{"0": "Next", "1": "Say"}
|
||||
{"0": "then", "1": "Is"}
|
||||
{"0": "Third", "1": "Regardless"}
|
||||
{"0": "Last", "1": "On"}
|
||||
{"0": "Another", "1": "For"}
|
||||
{"0": "Better", "1": "Meaning"}
|
||||
{"0": "Second", "1": "Meaning"}
|
||||
{"0": "Best", "1": "Repeat"}
|
||||
{"0": "AND", "1": "Repeat"}
|
||||
{"0": "AND", "1": "specifically"}
|
||||
{"0": "Better", "1": "Rather"}
|
||||
{"0": "Third", "1": "Exactly"}
|
||||
{"0": "Another", "1": "Is"}
|
||||
{"0": "and", "1": "Generally"}
|
||||
{"0": "Fourth", "1": "General"}
|
||||
{"0": "Third", "1": "Nevertheless"}
|
||||
{"0": "Third", "1": "Obviously"}
|
||||
{"0": "AND", "1": "Is"}
|
||||
{"0": "Third", "1": "Yet"}
|
||||
{"0": "AND", "1": "Even"}
|
|
@ -0,0 +1,100 @@
|
|||
0.90625 {"entailment": "More", "not_entailment": "meanwhile"}
|
||||
0.87500 {"entailment": "Really", "not_entailment": "Only"}
|
||||
0.87500 {"entailment": "More", "not_entailment": "Next"}
|
||||
0.84375 {"entailment": "Really", "not_entailment": "and"}
|
||||
0.84375 {"entailment": "indeed", "not_entailment": "While"}
|
||||
0.84375 {"entailment": "Yep", "not_entailment": "Soon"}
|
||||
0.84375 {"entailment": "Really", "not_entailment": "Otherwise"}
|
||||
0.84375 {"entailment": "indeed", "not_entailment": "Besides"}
|
||||
0.84375 {"entailment": "Basically", "not_entailment": "Besides"}
|
||||
0.84375 {"entailment": "Why", "not_entailment": "and"}
|
||||
0.84375 {"entailment": "Certainly", "not_entailment": "and"}
|
||||
0.84375 {"entailment": "Sure", "not_entailment": "meanwhile"}
|
||||
0.84375 {"entailment": "Specifically", "not_entailment": "Additionally"}
|
||||
0.81250 {"entailment": "Below", "not_entailment": "meanwhile"}
|
||||
0.81250 {"entailment": "Obviously", "not_entailment": "Since"}
|
||||
0.81250 {"entailment": "Clearly", "not_entailment": "and"}
|
||||
0.81250 {"entailment": "Basically", "not_entailment": "Since"}
|
||||
0.81250 {"entailment": "Therefore", "not_entailment": "Furthermore"}
|
||||
0.81250 {"entailment": "Hence", "not_entailment": "Further"}
|
||||
0.81250 {"entailment": "Seriously", "not_entailment": "Alas"}
|
||||
0.81250 {"entailment": "Obviously", "not_entailment": "Otherwise"}
|
||||
0.81250 {"entailment": "Therefore", "not_entailment": "Nevertheless"}
|
||||
0.81250 {"entailment": "See", "not_entailment": "meanwhile"}
|
||||
0.81250 {"entailment": "YES", "not_entailment": "and"}
|
||||
0.81250 {"entailment": "Why", "not_entailment": "however"}
|
||||
0.81250 {"entailment": "Thus", "not_entailment": "Furthermore"}
|
||||
0.81250 {"entailment": "Certainly", "not_entailment": "Besides"}
|
||||
0.81250 {"entailment": "YES", "not_entailment": "Besides"}
|
||||
0.81250 {"entailment": "indeed", "not_entailment": "also"}
|
||||
0.81250 {"entailment": "Why", "not_entailment": "Fortunately"}
|
||||
0.81250 {"entailment": "Rather", "not_entailment": "Since"}
|
||||
0.81250 {"entailment": "Or", "not_entailment": "meanwhile"}
|
||||
0.78125 {"entailment": "indeed", "not_entailment": "Since"}
|
||||
0.78125 {"entailment": "YES", "not_entailment": "Since"}
|
||||
0.78125 {"entailment": "So", "not_entailment": "Meanwhile"}
|
||||
0.78125 {"entailment": "Therefore", "not_entailment": "But"}
|
||||
0.78125 {"entailment": "YES", "not_entailment": "meanwhile"}
|
||||
0.78125 {"entailment": "Naturally", "not_entailment": "Fortunately"}
|
||||
0.78125 {"entailment": "Seriously", "not_entailment": "Otherwise"}
|
||||
0.78125 {"entailment": "Indeed", "not_entailment": "However"}
|
||||
0.78125 {"entailment": "Or", "not_entailment": "and"}
|
||||
0.78125 {"entailment": "Why", "not_entailment": "Next"}
|
||||
0.78125 {"entailment": "Again", "not_entailment": "Unfortunately"}
|
||||
0.78125 {"entailment": "Literally", "not_entailment": "meanwhile"}
|
||||
0.78125 {"entailment": "Sure", "not_entailment": "and"}
|
||||
0.78125 {"entailment": "yes", "not_entailment": "and"}
|
||||
0.78125 {"entailment": "Right", "not_entailment": "Since"}
|
||||
0.78125 {"entailment": "Certainly", "not_entailment": "While"}
|
||||
0.78125 {"entailment": "Hence", "not_entailment": "Recently"}
|
||||
0.78125 {"entailment": "Seriously", "not_entailment": "Since"}
|
||||
0.78125 {"entailment": "Rather", "not_entailment": "Afterwards"}
|
||||
0.78125 {"entailment": "Essentially", "not_entailment": "Later"}
|
||||
0.75000 {"entailment": "So", "not_entailment": "Unfortunately"}
|
||||
0.75000 {"entailment": "Tonight", "not_entailment": "Yesterday"}
|
||||
0.75000 {"entailment": "Therefore", "not_entailment": "Meanwhile"}
|
||||
0.75000 {"entailment": "Yeah", "not_entailment": "Alas"}
|
||||
0.75000 {"entailment": "YES", "not_entailment": "Luckily"}
|
||||
0.75000 {"entailment": "Note", "not_entailment": "meanwhile"}
|
||||
0.75000 {"entailment": "yes", "not_entailment": "Yet"}
|
||||
0.75000 {"entailment": "Why", "not_entailment": "meanwhile"}
|
||||
0.75000 {"entailment": "Sure", "not_entailment": "Luckily"}
|
||||
0.75000 {"entailment": "Right", "not_entailment": "Sadly"}
|
||||
0.75000 {"entailment": "Thus", "not_entailment": "Unfortunately"}
|
||||
0.75000 {"entailment": "Hence", "not_entailment": "But"}
|
||||
0.71875 {"entailment": "Clearly", "not_entailment": "Fortunately"}
|
||||
0.71875 {"entailment": "Typically", "not_entailment": "Although"}
|
||||
0.71875 {"entailment": "Basically", "not_entailment": "Yesterday"}
|
||||
0.71875 {"entailment": "Basically", "not_entailment": "Sadly"}
|
||||
0.71875 {"entailment": "YES", "not_entailment": "Thankfully"}
|
||||
0.71875 {"entailment": "indeed", "not_entailment": "and"}
|
||||
0.71875 {"entailment": "indeed", "not_entailment": "Yet"}
|
||||
0.71875 {"entailment": "Sure", "not_entailment": "Sadly"}
|
||||
0.71875 {"entailment": "Yep", "not_entailment": "Unfortunately"}
|
||||
0.71875 {"entailment": "yes", "not_entailment": "Otherwise"}
|
||||
0.71875 {"entailment": "YES", "not_entailment": "Nationwide"}
|
||||
0.71875 {"entailment": "Really", "not_entailment": "however"}
|
||||
0.71875 {"entailment": "Certainly", "not_entailment": "Since"}
|
||||
0.71875 {"entailment": "Hence", "not_entailment": "meanwhile"}
|
||||
0.71875 {"entailment": "indeed", "not_entailment": "Ultimately"}
|
||||
0.71875 {"entailment": "indeed", "not_entailment": "There"}
|
||||
0.68750 {"entailment": "Hence", "not_entailment": "Yet"}
|
||||
0.68750 {"entailment": "YES", "not_entailment": "Worldwide"}
|
||||
0.68750 {"entailment": "YES", "not_entailment": "Alas"}
|
||||
0.68750 {"entailment": "Certainly", "not_entailment": "Although"}
|
||||
0.68750 {"entailment": "Historically", "not_entailment": "Since"}
|
||||
0.68750 {"entailment": "Naturally", "not_entailment": "Yesterday"}
|
||||
0.68750 {"entailment": "Essentially", "not_entailment": "Yesterday"}
|
||||
0.65625 {"entailment": "Obviously", "not_entailment": "Sadly"}
|
||||
0.65625 {"entailment": "yes", "not_entailment": "Alas"}
|
||||
0.65625 {"entailment": "Hence", "not_entailment": "today"}
|
||||
0.65625 {"entailment": "yes", "not_entailment": "Sadly"}
|
||||
0.65625 {"entailment": "Right", "not_entailment": "however"}
|
||||
0.65625 {"entailment": "Right", "not_entailment": "Nationwide"}
|
||||
0.65625 {"entailment": "YES", "not_entailment": "now"}
|
||||
0.65625 {"entailment": "Yeah", "not_entailment": "Sadly"}
|
||||
0.65625 {"entailment": "Seriously", "not_entailment": "however"}
|
||||
0.65625 {"entailment": "Certainly", "not_entailment": "Thankfully"}
|
||||
0.62500 {"entailment": "Hence", "not_entailment": "Although"}
|
||||
0.62500 {"entailment": "Specifically", "not_entailment": "today"}
|
||||
0.62500 {"entailment": "Essentially", "not_entailment": "Since"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "More", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Really", "not_entailment": "Only"}
|
||||
{"entailment": "More", "not_entailment": "Next"}
|
||||
{"entailment": "Really", "not_entailment": "and"}
|
||||
{"entailment": "indeed", "not_entailment": "While"}
|
||||
{"entailment": "Yep", "not_entailment": "Soon"}
|
||||
{"entailment": "Really", "not_entailment": "Otherwise"}
|
||||
{"entailment": "indeed", "not_entailment": "Besides"}
|
||||
{"entailment": "Basically", "not_entailment": "Besides"}
|
||||
{"entailment": "Why", "not_entailment": "and"}
|
||||
{"entailment": "Certainly", "not_entailment": "and"}
|
||||
{"entailment": "Sure", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Specifically", "not_entailment": "Additionally"}
|
||||
{"entailment": "Below", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Obviously", "not_entailment": "Since"}
|
||||
{"entailment": "Clearly", "not_entailment": "and"}
|
||||
{"entailment": "Basically", "not_entailment": "Since"}
|
||||
{"entailment": "Therefore", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Hence", "not_entailment": "Further"}
|
||||
{"entailment": "Seriously", "not_entailment": "Alas"}
|
||||
{"entailment": "Obviously", "not_entailment": "Otherwise"}
|
||||
{"entailment": "Therefore", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "See", "not_entailment": "meanwhile"}
|
||||
{"entailment": "YES", "not_entailment": "and"}
|
||||
{"entailment": "Why", "not_entailment": "however"}
|
||||
{"entailment": "Thus", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Certainly", "not_entailment": "Besides"}
|
||||
{"entailment": "YES", "not_entailment": "Besides"}
|
||||
{"entailment": "indeed", "not_entailment": "also"}
|
||||
{"entailment": "Why", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Rather", "not_entailment": "Since"}
|
||||
{"entailment": "Or", "not_entailment": "meanwhile"}
|
||||
{"entailment": "indeed", "not_entailment": "Since"}
|
||||
{"entailment": "YES", "not_entailment": "Since"}
|
||||
{"entailment": "So", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Therefore", "not_entailment": "But"}
|
||||
{"entailment": "YES", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Naturally", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Seriously", "not_entailment": "Otherwise"}
|
||||
{"entailment": "Indeed", "not_entailment": "However"}
|
||||
{"entailment": "Or", "not_entailment": "and"}
|
||||
{"entailment": "Why", "not_entailment": "Next"}
|
||||
{"entailment": "Again", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Literally", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Sure", "not_entailment": "and"}
|
||||
{"entailment": "yes", "not_entailment": "and"}
|
||||
{"entailment": "Right", "not_entailment": "Since"}
|
||||
{"entailment": "Certainly", "not_entailment": "While"}
|
||||
{"entailment": "Hence", "not_entailment": "Recently"}
|
||||
{"entailment": "Seriously", "not_entailment": "Since"}
|
||||
{"entailment": "Rather", "not_entailment": "Afterwards"}
|
||||
{"entailment": "Essentially", "not_entailment": "Later"}
|
||||
{"entailment": "So", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Tonight", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Therefore", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Yeah", "not_entailment": "Alas"}
|
||||
{"entailment": "YES", "not_entailment": "Luckily"}
|
||||
{"entailment": "Note", "not_entailment": "meanwhile"}
|
||||
{"entailment": "yes", "not_entailment": "Yet"}
|
||||
{"entailment": "Why", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Sure", "not_entailment": "Luckily"}
|
||||
{"entailment": "Right", "not_entailment": "Sadly"}
|
||||
{"entailment": "Thus", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Hence", "not_entailment": "But"}
|
||||
{"entailment": "Clearly", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Typically", "not_entailment": "Although"}
|
||||
{"entailment": "Basically", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Basically", "not_entailment": "Sadly"}
|
||||
{"entailment": "YES", "not_entailment": "Thankfully"}
|
||||
{"entailment": "indeed", "not_entailment": "and"}
|
||||
{"entailment": "indeed", "not_entailment": "Yet"}
|
||||
{"entailment": "Sure", "not_entailment": "Sadly"}
|
||||
{"entailment": "Yep", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "yes", "not_entailment": "Otherwise"}
|
||||
{"entailment": "YES", "not_entailment": "Nationwide"}
|
||||
{"entailment": "Really", "not_entailment": "however"}
|
||||
{"entailment": "Certainly", "not_entailment": "Since"}
|
||||
{"entailment": "Hence", "not_entailment": "meanwhile"}
|
||||
{"entailment": "indeed", "not_entailment": "Ultimately"}
|
||||
{"entailment": "indeed", "not_entailment": "There"}
|
||||
{"entailment": "Hence", "not_entailment": "Yet"}
|
||||
{"entailment": "YES", "not_entailment": "Worldwide"}
|
||||
{"entailment": "YES", "not_entailment": "Alas"}
|
||||
{"entailment": "Certainly", "not_entailment": "Although"}
|
||||
{"entailment": "Historically", "not_entailment": "Since"}
|
||||
{"entailment": "Naturally", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Essentially", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Obviously", "not_entailment": "Sadly"}
|
||||
{"entailment": "yes", "not_entailment": "Alas"}
|
||||
{"entailment": "Hence", "not_entailment": "today"}
|
||||
{"entailment": "yes", "not_entailment": "Sadly"}
|
||||
{"entailment": "Right", "not_entailment": "however"}
|
||||
{"entailment": "Right", "not_entailment": "Nationwide"}
|
||||
{"entailment": "YES", "not_entailment": "now"}
|
||||
{"entailment": "Yeah", "not_entailment": "Sadly"}
|
||||
{"entailment": "Seriously", "not_entailment": "however"}
|
||||
{"entailment": "Certainly", "not_entailment": "Thankfully"}
|
||||
{"entailment": "Hence", "not_entailment": "Although"}
|
||||
{"entailment": "Specifically", "not_entailment": "today"}
|
||||
{"entailment": "Essentially", "not_entailment": "Since"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Obviously", "not_entailment": "Since"}
|
||||
{"entailment": "So", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Below", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Obviously", "not_entailment": "Sadly"}
|
||||
{"entailment": "Clearly", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Hence", "not_entailment": "Yet"}
|
||||
{"entailment": "Typically", "not_entailment": "Although"}
|
||||
{"entailment": "Clearly", "not_entailment": "and"}
|
||||
{"entailment": "Basically", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Basically", "not_entailment": "Since"}
|
||||
{"entailment": "Therefore", "not_entailment": "Furthermore"}
|
||||
{"entailment": "indeed", "not_entailment": "Since"}
|
||||
{"entailment": "Hence", "not_entailment": "Although"}
|
||||
{"entailment": "Hence", "not_entailment": "Further"}
|
||||
{"entailment": "More", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Basically", "not_entailment": "Sadly"}
|
||||
{"entailment": "Tonight", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Seriously", "not_entailment": "Alas"}
|
||||
{"entailment": "Really", "not_entailment": "and"}
|
||||
{"entailment": "Obviously", "not_entailment": "Otherwise"}
|
||||
{"entailment": "YES", "not_entailment": "Since"}
|
||||
{"entailment": "indeed", "not_entailment": "While"}
|
||||
{"entailment": "So", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Yep", "not_entailment": "Soon"}
|
||||
{"entailment": "Therefore", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Therefore", "not_entailment": "But"}
|
||||
{"entailment": "Really", "not_entailment": "Otherwise"}
|
||||
{"entailment": "Therefore", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "indeed", "not_entailment": "Besides"}
|
||||
{"entailment": "See", "not_entailment": "meanwhile"}
|
||||
{"entailment": "YES", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Yeah", "not_entailment": "Alas"}
|
||||
{"entailment": "YES", "not_entailment": "and"}
|
||||
{"entailment": "yes", "not_entailment": "Alas"}
|
||||
{"entailment": "YES", "not_entailment": "Luckily"}
|
||||
{"entailment": "Note", "not_entailment": "meanwhile"}
|
||||
{"entailment": "YES", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Basically", "not_entailment": "Besides"}
|
||||
{"entailment": "indeed", "not_entailment": "and"}
|
||||
{"entailment": "YES", "not_entailment": "Thankfully"}
|
||||
{"entailment": "indeed", "not_entailment": "Yet"}
|
||||
{"entailment": "Naturally", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Hence", "not_entailment": "today"}
|
||||
{"entailment": "YES", "not_entailment": "Alas"}
|
||||
{"entailment": "Really", "not_entailment": "Only"}
|
||||
{"entailment": "Seriously", "not_entailment": "Otherwise"}
|
||||
{"entailment": "Specifically", "not_entailment": "today"}
|
||||
{"entailment": "yes", "not_entailment": "Sadly"}
|
||||
{"entailment": "Why", "not_entailment": "and"}
|
||||
{"entailment": "Sure", "not_entailment": "Sadly"}
|
||||
{"entailment": "yes", "not_entailment": "Yet"}
|
||||
{"entailment": "Why", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Yep", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Why", "not_entailment": "however"}
|
||||
{"entailment": "Thus", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Indeed", "not_entailment": "However"}
|
||||
{"entailment": "Or", "not_entailment": "and"}
|
||||
{"entailment": "Why", "not_entailment": "Next"}
|
||||
{"entailment": "Sure", "not_entailment": "Luckily"}
|
||||
{"entailment": "Again", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "yes", "not_entailment": "Otherwise"}
|
||||
{"entailment": "More", "not_entailment": "Next"}
|
||||
{"entailment": "Literally", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Right", "not_entailment": "however"}
|
||||
{"entailment": "Sure", "not_entailment": "and"}
|
||||
{"entailment": "Certainly", "not_entailment": "Besides"}
|
||||
{"entailment": "YES", "not_entailment": "Nationwide"}
|
||||
{"entailment": "Really", "not_entailment": "however"}
|
||||
{"entailment": "yes", "not_entailment": "and"}
|
||||
{"entailment": "Right", "not_entailment": "Since"}
|
||||
{"entailment": "Certainly", "not_entailment": "and"}
|
||||
{"entailment": "Certainly", "not_entailment": "Although"}
|
||||
{"entailment": "Right", "not_entailment": "Sadly"}
|
||||
{"entailment": "Sure", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Right", "not_entailment": "Nationwide"}
|
||||
{"entailment": "Certainly", "not_entailment": "Since"}
|
||||
{"entailment": "Thus", "not_entailment": "Unfortunately"}
|
||||
{"entailment": "Historically", "not_entailment": "Since"}
|
||||
{"entailment": "YES", "not_entailment": "now"}
|
||||
{"entailment": "Certainly", "not_entailment": "While"}
|
||||
{"entailment": "Hence", "not_entailment": "meanwhile"}
|
||||
{"entailment": "YES", "not_entailment": "Besides"}
|
||||
{"entailment": "Yeah", "not_entailment": "Sadly"}
|
||||
{"entailment": "Why", "not_entailment": "Fortunately"}
|
||||
{"entailment": "indeed", "not_entailment": "also"}
|
||||
{"entailment": "Naturally", "not_entailment": "Yesterday"}
|
||||
{"entailment": "indeed", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Hence", "not_entailment": "Recently"}
|
||||
{"entailment": "Seriously", "not_entailment": "however"}
|
||||
{"entailment": "Seriously", "not_entailment": "Since"}
|
||||
{"entailment": "Specifically", "not_entailment": "Additionally"}
|
||||
{"entailment": "Rather", "not_entailment": "Since"}
|
||||
{"entailment": "Rather", "not_entailment": "Afterwards"}
|
||||
{"entailment": "Or", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Hence", "not_entailment": "But"}
|
||||
{"entailment": "Certainly", "not_entailment": "Thankfully"}
|
||||
{"entailment": "indeed", "not_entailment": "There"}
|
||||
{"entailment": "Essentially", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Essentially", "not_entailment": "Later"}
|
||||
{"entailment": "Essentially", "not_entailment": "Since"}
|
|
@ -0,0 +1,100 @@
|
|||
0.78125 {"entailment": "Clearly", "not_entailment": "Similarly"}
|
||||
0.78125 {"entailment": "Literally", "not_entailment": "Second"}
|
||||
0.75000 {"entailment": "indeed", "not_entailment": "Later"}
|
||||
0.75000 {"entailment": "indeed", "not_entailment": "And"}
|
||||
0.75000 {"entailment": "Still", "not_entailment": "Later"}
|
||||
0.75000 {"entailment": "Nationwide", "not_entailment": "Soon"}
|
||||
0.75000 {"entailment": "Literally", "not_entailment": "Plus"}
|
||||
0.75000 {"entailment": "Literally", "not_entailment": "Together"}
|
||||
0.75000 {"entailment": "Historically", "not_entailment": "Besides"}
|
||||
0.75000 {"entailment": "Nevertheless", "not_entailment": "Then"}
|
||||
0.71875 {"entailment": "indeed", "not_entailment": "Together"}
|
||||
0.71875 {"entailment": "Seriously", "not_entailment": "Plus"}
|
||||
0.71875 {"entailment": "Seriously", "not_entailment": "Next"}
|
||||
0.71875 {"entailment": "Rather", "not_entailment": "and"}
|
||||
0.71875 {"entailment": "Rather", "not_entailment": "Secondly"}
|
||||
0.71875 {"entailment": "Literally", "not_entailment": "Lastly"}
|
||||
0.71875 {"entailment": "again", "not_entailment": "and"}
|
||||
0.71875 {"entailment": "again", "not_entailment": "Eventually"}
|
||||
0.71875 {"entailment": "Otherwise", "not_entailment": "And"}
|
||||
0.68750 {"entailment": "No", "not_entailment": "Today"}
|
||||
0.68750 {"entailment": "Still", "not_entailment": "Surprisingly"}
|
||||
0.68750 {"entailment": "Yeah", "not_entailment": "Oh"}
|
||||
0.68750 {"entailment": "Alas", "not_entailment": "Next"}
|
||||
0.68750 {"entailment": "Historically", "not_entailment": "Plus"}
|
||||
0.68750 {"entailment": "Yet", "not_entailment": "Additionally"}
|
||||
0.68750 {"entailment": "Obviously", "not_entailment": "Ultimately"}
|
||||
0.68750 {"entailment": "Overall", "not_entailment": "Together"}
|
||||
0.68750 {"entailment": "Certainly", "not_entailment": "Together"}
|
||||
0.68750 {"entailment": "Apparently", "not_entailment": "And"}
|
||||
0.68750 {"entailment": "Initially", "not_entailment": "and"}
|
||||
0.68750 {"entailment": "Initially", "not_entailment": "And"}
|
||||
0.68750 {"entailment": "Nevertheless", "not_entailment": "Furthermore"}
|
||||
0.68750 {"entailment": "Nevertheless", "not_entailment": "Interestingly"}
|
||||
0.65625 {"entailment": "Naturally", "not_entailment": "Plus"}
|
||||
0.65625 {"entailment": "Clearly", "not_entailment": "Plus"}
|
||||
0.65625 {"entailment": "Again", "not_entailment": "Meanwhile"}
|
||||
0.65625 {"entailment": "Nonetheless", "not_entailment": "Notably"}
|
||||
0.65625 {"entailment": "indeed", "not_entailment": "Plus"}
|
||||
0.65625 {"entailment": "Nationwide", "not_entailment": "and"}
|
||||
0.65625 {"entailment": "Otherwise", "not_entailment": "Besides"}
|
||||
0.65625 {"entailment": "Overall", "not_entailment": "Soon"}
|
||||
0.65625 {"entailment": "Typically", "not_entailment": "Plus"}
|
||||
0.65625 {"entailment": "Rather", "not_entailment": "Interestingly"}
|
||||
0.65625 {"entailment": "Rather", "not_entailment": "Yesterday"}
|
||||
0.65625 {"entailment": "Rather", "not_entailment": "also"}
|
||||
0.65625 {"entailment": "Nationwide", "not_entailment": "also"}
|
||||
0.65625 {"entailment": "Accordingly", "not_entailment": "Interestingly"}
|
||||
0.65625 {"entailment": "again", "not_entailment": "Lastly"}
|
||||
0.65625 {"entailment": "Clearly", "not_entailment": "Essentially"}
|
||||
0.65625 {"entailment": "Nonetheless", "not_entailment": "Lastly"}
|
||||
0.62500 {"entailment": "Yeah", "not_entailment": "Basically"}
|
||||
0.62500 {"entailment": "again", "not_entailment": "Plus"}
|
||||
0.62500 {"entailment": "Still", "not_entailment": "Plus"}
|
||||
0.62500 {"entailment": "Yet", "not_entailment": "Interestingly"}
|
||||
0.62500 {"entailment": "Thus", "not_entailment": "Plus"}
|
||||
0.62500 {"entailment": "Still", "not_entailment": "And"}
|
||||
0.62500 {"entailment": "There", "not_entailment": "Lastly"}
|
||||
0.62500 {"entailment": "Initially", "not_entailment": "Next"}
|
||||
0.62500 {"entailment": "Initially", "not_entailment": "Plus"}
|
||||
0.62500 {"entailment": "Hence", "not_entailment": "Plus"}
|
||||
0.62500 {"entailment": "Fortunately", "not_entailment": "Next"}
|
||||
0.62500 {"entailment": "again", "not_entailment": "This"}
|
||||
0.62500 {"entailment": "Above", "not_entailment": "Together"}
|
||||
0.62500 {"entailment": "Historically", "not_entailment": "This"}
|
||||
0.62500 {"entailment": "Nonetheless", "not_entailment": "Additionally"}
|
||||
0.62500 {"entailment": "Nevertheless", "not_entailment": "Plus"}
|
||||
0.59375 {"entailment": "Otherwise", "not_entailment": "Plus"}
|
||||
0.59375 {"entailment": "Otherwise", "not_entailment": "and"}
|
||||
0.59375 {"entailment": "Obviously", "not_entailment": "Plus"}
|
||||
0.59375 {"entailment": "again", "not_entailment": "More"}
|
||||
0.59375 {"entailment": "Apparently", "not_entailment": "Plus"}
|
||||
0.59375 {"entailment": "Yet", "not_entailment": "And"}
|
||||
0.59375 {"entailment": "again", "not_entailment": "Next"}
|
||||
0.59375 {"entailment": "Again", "not_entailment": "Furthermore"}
|
||||
0.59375 {"entailment": "Certainly", "not_entailment": "Plus"}
|
||||
0.59375 {"entailment": "No", "not_entailment": "Plus"}
|
||||
0.59375 {"entailment": "Likewise", "not_entailment": "Together"}
|
||||
0.59375 {"entailment": "Still", "not_entailment": "Secondly"}
|
||||
0.59375 {"entailment": "No", "not_entailment": "Interestingly"}
|
||||
0.59375 {"entailment": "Typically", "not_entailment": "Together"}
|
||||
0.59375 {"entailment": "Therefore", "not_entailment": "Additionally"}
|
||||
0.59375 {"entailment": "Nationwide", "not_entailment": "Together"}
|
||||
0.59375 {"entailment": "Unfortunately", "not_entailment": "Ironically"}
|
||||
0.59375 {"entailment": "Hence", "not_entailment": "Besides"}
|
||||
0.59375 {"entailment": "Clearly", "not_entailment": "Second"}
|
||||
0.59375 {"entailment": "Historically", "not_entailment": "Essentially"}
|
||||
0.56250 {"entailment": "Nonetheless", "not_entailment": "Further"}
|
||||
0.56250 {"entailment": "Otherwise", "not_entailment": "Or"}
|
||||
0.56250 {"entailment": "again", "not_entailment": "Secondly"}
|
||||
0.56250 {"entailment": "Fortunately", "not_entailment": "Plus"}
|
||||
0.56250 {"entailment": "Yeah", "not_entailment": "Lastly"}
|
||||
0.56250 {"entailment": "Actually", "not_entailment": "Plus"}
|
||||
0.56250 {"entailment": "Sadly", "not_entailment": "Similarly"}
|
||||
0.53125 {"entailment": "There", "not_entailment": "Together"}
|
||||
0.53125 {"entailment": "Eventually", "not_entailment": "Plus"}
|
||||
0.53125 {"entailment": "First", "not_entailment": "Plus"}
|
||||
0.53125 {"entailment": "After", "not_entailment": "Soon"}
|
||||
0.53125 {"entailment": "Otherwise", "not_entailment": "Suddenly"}
|
||||
0.50000 {"entailment": "Instead", "not_entailment": "Plus"}
|
||||
0.43750 {"entailment": "After", "not_entailment": "Tonight"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Clearly", "not_entailment": "Similarly"}
|
||||
{"entailment": "Literally", "not_entailment": "Second"}
|
||||
{"entailment": "indeed", "not_entailment": "Later"}
|
||||
{"entailment": "indeed", "not_entailment": "And"}
|
||||
{"entailment": "Still", "not_entailment": "Later"}
|
||||
{"entailment": "Nationwide", "not_entailment": "Soon"}
|
||||
{"entailment": "Literally", "not_entailment": "Plus"}
|
||||
{"entailment": "Literally", "not_entailment": "Together"}
|
||||
{"entailment": "Historically", "not_entailment": "Besides"}
|
||||
{"entailment": "Nevertheless", "not_entailment": "Then"}
|
||||
{"entailment": "indeed", "not_entailment": "Together"}
|
||||
{"entailment": "Seriously", "not_entailment": "Plus"}
|
||||
{"entailment": "Seriously", "not_entailment": "Next"}
|
||||
{"entailment": "Rather", "not_entailment": "and"}
|
||||
{"entailment": "Rather", "not_entailment": "Secondly"}
|
||||
{"entailment": "Literally", "not_entailment": "Lastly"}
|
||||
{"entailment": "again", "not_entailment": "and"}
|
||||
{"entailment": "again", "not_entailment": "Eventually"}
|
||||
{"entailment": "Otherwise", "not_entailment": "And"}
|
||||
{"entailment": "No", "not_entailment": "Today"}
|
||||
{"entailment": "Still", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Yeah", "not_entailment": "Oh"}
|
||||
{"entailment": "Alas", "not_entailment": "Next"}
|
||||
{"entailment": "Historically", "not_entailment": "Plus"}
|
||||
{"entailment": "Yet", "not_entailment": "Additionally"}
|
||||
{"entailment": "Obviously", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Overall", "not_entailment": "Together"}
|
||||
{"entailment": "Certainly", "not_entailment": "Together"}
|
||||
{"entailment": "Apparently", "not_entailment": "And"}
|
||||
{"entailment": "Initially", "not_entailment": "and"}
|
||||
{"entailment": "Initially", "not_entailment": "And"}
|
||||
{"entailment": "Nevertheless", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Nevertheless", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Naturally", "not_entailment": "Plus"}
|
||||
{"entailment": "Clearly", "not_entailment": "Plus"}
|
||||
{"entailment": "Again", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Nonetheless", "not_entailment": "Notably"}
|
||||
{"entailment": "indeed", "not_entailment": "Plus"}
|
||||
{"entailment": "Nationwide", "not_entailment": "and"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Besides"}
|
||||
{"entailment": "Overall", "not_entailment": "Soon"}
|
||||
{"entailment": "Typically", "not_entailment": "Plus"}
|
||||
{"entailment": "Rather", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Rather", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Rather", "not_entailment": "also"}
|
||||
{"entailment": "Nationwide", "not_entailment": "also"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Interestingly"}
|
||||
{"entailment": "again", "not_entailment": "Lastly"}
|
||||
{"entailment": "Clearly", "not_entailment": "Essentially"}
|
||||
{"entailment": "Nonetheless", "not_entailment": "Lastly"}
|
||||
{"entailment": "Yeah", "not_entailment": "Basically"}
|
||||
{"entailment": "again", "not_entailment": "Plus"}
|
||||
{"entailment": "Still", "not_entailment": "Plus"}
|
||||
{"entailment": "Yet", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Thus", "not_entailment": "Plus"}
|
||||
{"entailment": "Still", "not_entailment": "And"}
|
||||
{"entailment": "There", "not_entailment": "Lastly"}
|
||||
{"entailment": "Initially", "not_entailment": "Next"}
|
||||
{"entailment": "Initially", "not_entailment": "Plus"}
|
||||
{"entailment": "Hence", "not_entailment": "Plus"}
|
||||
{"entailment": "Fortunately", "not_entailment": "Next"}
|
||||
{"entailment": "again", "not_entailment": "This"}
|
||||
{"entailment": "Above", "not_entailment": "Together"}
|
||||
{"entailment": "Historically", "not_entailment": "This"}
|
||||
{"entailment": "Nonetheless", "not_entailment": "Additionally"}
|
||||
{"entailment": "Nevertheless", "not_entailment": "Plus"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Plus"}
|
||||
{"entailment": "Otherwise", "not_entailment": "and"}
|
||||
{"entailment": "Obviously", "not_entailment": "Plus"}
|
||||
{"entailment": "again", "not_entailment": "More"}
|
||||
{"entailment": "Apparently", "not_entailment": "Plus"}
|
||||
{"entailment": "Yet", "not_entailment": "And"}
|
||||
{"entailment": "again", "not_entailment": "Next"}
|
||||
{"entailment": "Again", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Certainly", "not_entailment": "Plus"}
|
||||
{"entailment": "No", "not_entailment": "Plus"}
|
||||
{"entailment": "Likewise", "not_entailment": "Together"}
|
||||
{"entailment": "Still", "not_entailment": "Secondly"}
|
||||
{"entailment": "No", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Typically", "not_entailment": "Together"}
|
||||
{"entailment": "Therefore", "not_entailment": "Additionally"}
|
||||
{"entailment": "Nationwide", "not_entailment": "Together"}
|
||||
{"entailment": "Unfortunately", "not_entailment": "Ironically"}
|
||||
{"entailment": "Hence", "not_entailment": "Besides"}
|
||||
{"entailment": "Clearly", "not_entailment": "Second"}
|
||||
{"entailment": "Historically", "not_entailment": "Essentially"}
|
||||
{"entailment": "Nonetheless", "not_entailment": "Further"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Or"}
|
||||
{"entailment": "again", "not_entailment": "Secondly"}
|
||||
{"entailment": "Fortunately", "not_entailment": "Plus"}
|
||||
{"entailment": "Yeah", "not_entailment": "Lastly"}
|
||||
{"entailment": "Actually", "not_entailment": "Plus"}
|
||||
{"entailment": "Sadly", "not_entailment": "Similarly"}
|
||||
{"entailment": "There", "not_entailment": "Together"}
|
||||
{"entailment": "Eventually", "not_entailment": "Plus"}
|
||||
{"entailment": "First", "not_entailment": "Plus"}
|
||||
{"entailment": "After", "not_entailment": "Soon"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Suddenly"}
|
||||
{"entailment": "Instead", "not_entailment": "Plus"}
|
||||
{"entailment": "After", "not_entailment": "Tonight"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Obviously", "not_entailment": "Plus"}
|
||||
{"entailment": "Naturally", "not_entailment": "Plus"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Plus"}
|
||||
{"entailment": "Otherwise", "not_entailment": "and"}
|
||||
{"entailment": "again", "not_entailment": "More"}
|
||||
{"entailment": "There", "not_entailment": "Together"}
|
||||
{"entailment": "Clearly", "not_entailment": "Plus"}
|
||||
{"entailment": "Again", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "No", "not_entailment": "Today"}
|
||||
{"entailment": "Apparently", "not_entailment": "Plus"}
|
||||
{"entailment": "Eventually", "not_entailment": "Plus"}
|
||||
{"entailment": "Yet", "not_entailment": "And"}
|
||||
{"entailment": "again", "not_entailment": "Next"}
|
||||
{"entailment": "Again", "not_entailment": "Furthermore"}
|
||||
{"entailment": "indeed", "not_entailment": "Later"}
|
||||
{"entailment": "Nonetheless", "not_entailment": "Notably"}
|
||||
{"entailment": "First", "not_entailment": "Plus"}
|
||||
{"entailment": "Still", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Certainly", "not_entailment": "Plus"}
|
||||
{"entailment": "indeed", "not_entailment": "Plus"}
|
||||
{"entailment": "Instead", "not_entailment": "Plus"}
|
||||
{"entailment": "Nationwide", "not_entailment": "and"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Besides"}
|
||||
{"entailment": "No", "not_entailment": "Plus"}
|
||||
{"entailment": "Likewise", "not_entailment": "Together"}
|
||||
{"entailment": "Nonetheless", "not_entailment": "Further"}
|
||||
{"entailment": "Overall", "not_entailment": "Soon"}
|
||||
{"entailment": "Yeah", "not_entailment": "Oh"}
|
||||
{"entailment": "Yeah", "not_entailment": "Basically"}
|
||||
{"entailment": "again", "not_entailment": "Plus"}
|
||||
{"entailment": "Still", "not_entailment": "Plus"}
|
||||
{"entailment": "indeed", "not_entailment": "Together"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Or"}
|
||||
{"entailment": "indeed", "not_entailment": "And"}
|
||||
{"entailment": "Alas", "not_entailment": "Next"}
|
||||
{"entailment": "Yet", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Typically", "not_entailment": "Plus"}
|
||||
{"entailment": "Historically", "not_entailment": "Plus"}
|
||||
{"entailment": "Rather", "not_entailment": "Interestingly"}
|
||||
{"entailment": "After", "not_entailment": "Soon"}
|
||||
{"entailment": "Still", "not_entailment": "Secondly"}
|
||||
{"entailment": "After", "not_entailment": "Tonight"}
|
||||
{"entailment": "Seriously", "not_entailment": "Plus"}
|
||||
{"entailment": "Seriously", "not_entailment": "Next"}
|
||||
{"entailment": "Rather", "not_entailment": "and"}
|
||||
{"entailment": "Still", "not_entailment": "And"}
|
||||
{"entailment": "Thus", "not_entailment": "Plus"}
|
||||
{"entailment": "Rather", "not_entailment": "Secondly"}
|
||||
{"entailment": "No", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Rather", "not_entailment": "also"}
|
||||
{"entailment": "Rather", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Still", "not_entailment": "Later"}
|
||||
{"entailment": "Typically", "not_entailment": "Together"}
|
||||
{"entailment": "Literally", "not_entailment": "Lastly"}
|
||||
{"entailment": "Yet", "not_entailment": "Additionally"}
|
||||
{"entailment": "Therefore", "not_entailment": "Additionally"}
|
||||
{"entailment": "Nationwide", "not_entailment": "Together"}
|
||||
{"entailment": "Nationwide", "not_entailment": "Soon"}
|
||||
{"entailment": "There", "not_entailment": "Lastly"}
|
||||
{"entailment": "Nationwide", "not_entailment": "also"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Obviously", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Overall", "not_entailment": "Together"}
|
||||
{"entailment": "Certainly", "not_entailment": "Together"}
|
||||
{"entailment": "again", "not_entailment": "Lastly"}
|
||||
{"entailment": "again", "not_entailment": "and"}
|
||||
{"entailment": "Apparently", "not_entailment": "And"}
|
||||
{"entailment": "again", "not_entailment": "Secondly"}
|
||||
{"entailment": "Initially", "not_entailment": "and"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Suddenly"}
|
||||
{"entailment": "Initially", "not_entailment": "Next"}
|
||||
{"entailment": "Initially", "not_entailment": "And"}
|
||||
{"entailment": "Initially", "not_entailment": "Plus"}
|
||||
{"entailment": "Unfortunately", "not_entailment": "Ironically"}
|
||||
{"entailment": "Hence", "not_entailment": "Plus"}
|
||||
{"entailment": "again", "not_entailment": "Eventually"}
|
||||
{"entailment": "Hence", "not_entailment": "Besides"}
|
||||
{"entailment": "Clearly", "not_entailment": "Essentially"}
|
||||
{"entailment": "Clearly", "not_entailment": "Similarly"}
|
||||
{"entailment": "Clearly", "not_entailment": "Second"}
|
||||
{"entailment": "Fortunately", "not_entailment": "Plus"}
|
||||
{"entailment": "Literally", "not_entailment": "Plus"}
|
||||
{"entailment": "Literally", "not_entailment": "Together"}
|
||||
{"entailment": "Fortunately", "not_entailment": "Next"}
|
||||
{"entailment": "Otherwise", "not_entailment": "And"}
|
||||
{"entailment": "again", "not_entailment": "This"}
|
||||
{"entailment": "Above", "not_entailment": "Together"}
|
||||
{"entailment": "Literally", "not_entailment": "Second"}
|
||||
{"entailment": "Historically", "not_entailment": "This"}
|
||||
{"entailment": "Yeah", "not_entailment": "Lastly"}
|
||||
{"entailment": "Nevertheless", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Nonetheless", "not_entailment": "Additionally"}
|
||||
{"entailment": "Actually", "not_entailment": "Plus"}
|
||||
{"entailment": "Nonetheless", "not_entailment": "Lastly"}
|
||||
{"entailment": "Historically", "not_entailment": "Besides"}
|
||||
{"entailment": "Nevertheless", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Sadly", "not_entailment": "Similarly"}
|
||||
{"entailment": "Nevertheless", "not_entailment": "Plus"}
|
||||
{"entailment": "Historically", "not_entailment": "Essentially"}
|
||||
{"entailment": "Nevertheless", "not_entailment": "Then"}
|
|
@ -0,0 +1,100 @@
|
|||
0.75000 {"entailment": "Initially", "not_entailment": "Conversely"}
|
||||
0.71875 {"entailment": "Online", "not_entailment": "Luckily"}
|
||||
0.68750 {"entailment": "Basically", "not_entailment": "Ironically"}
|
||||
0.68750 {"entailment": "Certainly", "not_entailment": "Presumably"}
|
||||
0.68750 {"entailment": "Tomorrow", "not_entailment": "And"}
|
||||
0.65625 {"entailment": "Here", "not_entailment": "And"}
|
||||
0.65625 {"entailment": "Hence", "not_entailment": "Ironically"}
|
||||
0.65625 {"entailment": "Below", "not_entailment": "Conversely"}
|
||||
0.65625 {"entailment": "This", "not_entailment": "Worse"}
|
||||
0.65625 {"entailment": "Again", "not_entailment": "Ironically"}
|
||||
0.62500 {"entailment": "Naturally", "not_entailment": "Ironically"}
|
||||
0.62500 {"entailment": "Hence", "not_entailment": "Yet"}
|
||||
0.62500 {"entailment": "There", "not_entailment": "Luckily"}
|
||||
0.62500 {"entailment": "There", "not_entailment": "Worse"}
|
||||
0.62500 {"entailment": "Therefore", "not_entailment": "Ironically"}
|
||||
0.62500 {"entailment": "So", "not_entailment": "Ironically"}
|
||||
0.62500 {"entailment": "Again", "not_entailment": "Interestingly"}
|
||||
0.62500 {"entailment": "Still", "not_entailment": "Ironically"}
|
||||
0.62500 {"entailment": "Normally", "not_entailment": "Oh"}
|
||||
0.62500 {"entailment": "Tomorrow", "not_entailment": "Luckily"}
|
||||
0.62500 {"entailment": "today", "not_entailment": "But"}
|
||||
0.62500 {"entailment": "Accordingly", "not_entailment": "Ironically"}
|
||||
0.62500 {"entailment": "Below", "not_entailment": "Worse"}
|
||||
0.62500 {"entailment": "Accordingly", "not_entailment": "Worse"}
|
||||
0.59375 {"entailment": "Below", "not_entailment": "Alternatively"}
|
||||
0.59375 {"entailment": "Currently", "not_entailment": "Meanwhile"}
|
||||
0.59375 {"entailment": "And", "not_entailment": "Ironically"}
|
||||
0.59375 {"entailment": "Accordingly", "not_entailment": "Yet"}
|
||||
0.59375 {"entailment": "This", "not_entailment": "Conversely"}
|
||||
0.59375 {"entailment": "Online", "not_entailment": "Right"}
|
||||
0.59375 {"entailment": "Tonight", "not_entailment": "Yeah"}
|
||||
0.59375 {"entailment": "Next", "not_entailment": "Luckily"}
|
||||
0.59375 {"entailment": "Thus", "not_entailment": "Ironically"}
|
||||
0.59375 {"entailment": "again", "not_entailment": "True"}
|
||||
0.59375 {"entailment": "Nonetheless", "not_entailment": "Ironically"}
|
||||
0.59375 {"entailment": "yes", "not_entailment": "Sure"}
|
||||
0.59375 {"entailment": "Accordingly", "not_entailment": "Likewise"}
|
||||
0.56250 {"entailment": "Clearly", "not_entailment": "Plus"}
|
||||
0.56250 {"entailment": "Essentially", "not_entailment": "Well"}
|
||||
0.56250 {"entailment": "This", "not_entailment": "Luckily"}
|
||||
0.56250 {"entailment": "Moreover", "not_entailment": "Meanwhile"}
|
||||
0.56250 {"entailment": "Generally", "not_entailment": "Worse"}
|
||||
0.56250 {"entailment": "Tonight", "not_entailment": "Eventually"}
|
||||
0.56250 {"entailment": "Clearly", "not_entailment": "Further"}
|
||||
0.56250 {"entailment": "Ultimately", "not_entailment": "Ironically"}
|
||||
0.56250 {"entailment": "today", "not_entailment": "Ironically"}
|
||||
0.56250 {"entailment": "Again", "not_entailment": "Meanwhile"}
|
||||
0.56250 {"entailment": "Clearly", "not_entailment": "True"}
|
||||
0.56250 {"entailment": "today", "not_entailment": "Conversely"}
|
||||
0.56250 {"entailment": "First", "not_entailment": "Luckily"}
|
||||
0.56250 {"entailment": "again", "not_entailment": "Later"}
|
||||
0.53125 {"entailment": "Clearly", "not_entailment": "Alas"}
|
||||
0.53125 {"entailment": "Otherwise", "not_entailment": "Worse"}
|
||||
0.53125 {"entailment": "Typically", "not_entailment": "Ironically"}
|
||||
0.53125 {"entailment": "Originally", "not_entailment": "Luckily"}
|
||||
0.53125 {"entailment": "This", "not_entailment": "Ironically"}
|
||||
0.53125 {"entailment": "Now", "not_entailment": "Surprisingly"}
|
||||
0.53125 {"entailment": "Online", "not_entailment": "Sure"}
|
||||
0.53125 {"entailment": "Tonight", "not_entailment": "Luckily"}
|
||||
0.53125 {"entailment": "There", "not_entailment": "Eventually"}
|
||||
0.53125 {"entailment": "Obviously", "not_entailment": "Ironically"}
|
||||
0.53125 {"entailment": "True", "not_entailment": "Luckily"}
|
||||
0.53125 {"entailment": "Accordingly", "not_entailment": "Together"}
|
||||
0.53125 {"entailment": "Yesterday", "not_entailment": "Later"}
|
||||
0.50000 {"entailment": "Certainly", "not_entailment": "Oh"}
|
||||
0.50000 {"entailment": "Certainly", "not_entailment": "Worse"}
|
||||
0.50000 {"entailment": "Tomorrow", "not_entailment": "Already"}
|
||||
0.50000 {"entailment": "Similarly", "not_entailment": "Ironically"}
|
||||
0.50000 {"entailment": "Typically", "not_entailment": "Naturally"}
|
||||
0.50000 {"entailment": "Tonight", "not_entailment": "Sure"}
|
||||
0.50000 {"entailment": "also", "not_entailment": "Conversely"}
|
||||
0.50000 {"entailment": "Tonight", "not_entailment": "Later"}
|
||||
0.50000 {"entailment": "Tonight", "not_entailment": "Then"}
|
||||
0.50000 {"entailment": "Naturally", "not_entailment": "Interestingly"}
|
||||
0.50000 {"entailment": "Tomorrow", "not_entailment": "Sure"}
|
||||
0.50000 {"entailment": "today", "not_entailment": "Well"}
|
||||
0.46875 {"entailment": "Clearly", "not_entailment": "Sadly"}
|
||||
0.46875 {"entailment": "today", "not_entailment": "Later"}
|
||||
0.46875 {"entailment": "First", "not_entailment": "Alas"}
|
||||
0.46875 {"entailment": "This", "not_entailment": "Eventually"}
|
||||
0.46875 {"entailment": "Currently", "not_entailment": "Ironically"}
|
||||
0.46875 {"entailment": "Originally", "not_entailment": "Eventually"}
|
||||
0.46875 {"entailment": "Today", "not_entailment": "Now"}
|
||||
0.46875 {"entailment": "Obviously", "not_entailment": "Sadly"}
|
||||
0.46875 {"entailment": "Obviously", "not_entailment": "Interestingly"}
|
||||
0.46875 {"entailment": "Overall", "not_entailment": "Fortunately"}
|
||||
0.46875 {"entailment": "Still", "not_entailment": "Meanwhile"}
|
||||
0.46875 {"entailment": "Clearly", "not_entailment": "Surprisingly"}
|
||||
0.46875 {"entailment": "First", "not_entailment": "Fortunately"}
|
||||
0.46875 {"entailment": "Certainly", "not_entailment": "Sure"}
|
||||
0.46875 {"entailment": "Otherwise", "not_entailment": "Suddenly"}
|
||||
0.43750 {"entailment": "Moreover", "not_entailment": "Ironically"}
|
||||
0.43750 {"entailment": "again", "not_entailment": "Sure"}
|
||||
0.43750 {"entailment": "Certainly", "not_entailment": "Or"}
|
||||
0.43750 {"entailment": "indeed", "not_entailment": "Rather"}
|
||||
0.43750 {"entailment": "Below", "not_entailment": "Right"}
|
||||
0.40625 {"entailment": "Today", "not_entailment": "Previously"}
|
||||
0.40625 {"entailment": "Naturally", "not_entailment": "Fortunately"}
|
||||
0.40625 {"entailment": "This", "not_entailment": "Then"}
|
||||
0.37500 {"entailment": "Additionally", "not_entailment": "Recently"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Initially", "not_entailment": "Conversely"}
|
||||
{"entailment": "Online", "not_entailment": "Luckily"}
|
||||
{"entailment": "Basically", "not_entailment": "Ironically"}
|
||||
{"entailment": "Certainly", "not_entailment": "Presumably"}
|
||||
{"entailment": "Tomorrow", "not_entailment": "And"}
|
||||
{"entailment": "Here", "not_entailment": "And"}
|
||||
{"entailment": "Hence", "not_entailment": "Ironically"}
|
||||
{"entailment": "Below", "not_entailment": "Conversely"}
|
||||
{"entailment": "This", "not_entailment": "Worse"}
|
||||
{"entailment": "Again", "not_entailment": "Ironically"}
|
||||
{"entailment": "Naturally", "not_entailment": "Ironically"}
|
||||
{"entailment": "Hence", "not_entailment": "Yet"}
|
||||
{"entailment": "There", "not_entailment": "Luckily"}
|
||||
{"entailment": "There", "not_entailment": "Worse"}
|
||||
{"entailment": "Therefore", "not_entailment": "Ironically"}
|
||||
{"entailment": "So", "not_entailment": "Ironically"}
|
||||
{"entailment": "Again", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Still", "not_entailment": "Ironically"}
|
||||
{"entailment": "Normally", "not_entailment": "Oh"}
|
||||
{"entailment": "Tomorrow", "not_entailment": "Luckily"}
|
||||
{"entailment": "today", "not_entailment": "But"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Ironically"}
|
||||
{"entailment": "Below", "not_entailment": "Worse"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Worse"}
|
||||
{"entailment": "Below", "not_entailment": "Alternatively"}
|
||||
{"entailment": "Currently", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "And", "not_entailment": "Ironically"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Yet"}
|
||||
{"entailment": "This", "not_entailment": "Conversely"}
|
||||
{"entailment": "Online", "not_entailment": "Right"}
|
||||
{"entailment": "Tonight", "not_entailment": "Yeah"}
|
||||
{"entailment": "Next", "not_entailment": "Luckily"}
|
||||
{"entailment": "Thus", "not_entailment": "Ironically"}
|
||||
{"entailment": "again", "not_entailment": "True"}
|
||||
{"entailment": "Nonetheless", "not_entailment": "Ironically"}
|
||||
{"entailment": "yes", "not_entailment": "Sure"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Likewise"}
|
||||
{"entailment": "Clearly", "not_entailment": "Plus"}
|
||||
{"entailment": "Essentially", "not_entailment": "Well"}
|
||||
{"entailment": "This", "not_entailment": "Luckily"}
|
||||
{"entailment": "Moreover", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Generally", "not_entailment": "Worse"}
|
||||
{"entailment": "Tonight", "not_entailment": "Eventually"}
|
||||
{"entailment": "Clearly", "not_entailment": "Further"}
|
||||
{"entailment": "Ultimately", "not_entailment": "Ironically"}
|
||||
{"entailment": "today", "not_entailment": "Ironically"}
|
||||
{"entailment": "Again", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Clearly", "not_entailment": "True"}
|
||||
{"entailment": "today", "not_entailment": "Conversely"}
|
||||
{"entailment": "First", "not_entailment": "Luckily"}
|
||||
{"entailment": "again", "not_entailment": "Later"}
|
||||
{"entailment": "Clearly", "not_entailment": "Alas"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Worse"}
|
||||
{"entailment": "Typically", "not_entailment": "Ironically"}
|
||||
{"entailment": "Originally", "not_entailment": "Luckily"}
|
||||
{"entailment": "This", "not_entailment": "Ironically"}
|
||||
{"entailment": "Now", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Online", "not_entailment": "Sure"}
|
||||
{"entailment": "Tonight", "not_entailment": "Luckily"}
|
||||
{"entailment": "There", "not_entailment": "Eventually"}
|
||||
{"entailment": "Obviously", "not_entailment": "Ironically"}
|
||||
{"entailment": "True", "not_entailment": "Luckily"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Together"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Later"}
|
||||
{"entailment": "Certainly", "not_entailment": "Oh"}
|
||||
{"entailment": "Certainly", "not_entailment": "Worse"}
|
||||
{"entailment": "Tomorrow", "not_entailment": "Already"}
|
||||
{"entailment": "Similarly", "not_entailment": "Ironically"}
|
||||
{"entailment": "Typically", "not_entailment": "Naturally"}
|
||||
{"entailment": "Tonight", "not_entailment": "Sure"}
|
||||
{"entailment": "also", "not_entailment": "Conversely"}
|
||||
{"entailment": "Tonight", "not_entailment": "Later"}
|
||||
{"entailment": "Tonight", "not_entailment": "Then"}
|
||||
{"entailment": "Naturally", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Tomorrow", "not_entailment": "Sure"}
|
||||
{"entailment": "today", "not_entailment": "Well"}
|
||||
{"entailment": "Clearly", "not_entailment": "Sadly"}
|
||||
{"entailment": "today", "not_entailment": "Later"}
|
||||
{"entailment": "First", "not_entailment": "Alas"}
|
||||
{"entailment": "This", "not_entailment": "Eventually"}
|
||||
{"entailment": "Currently", "not_entailment": "Ironically"}
|
||||
{"entailment": "Originally", "not_entailment": "Eventually"}
|
||||
{"entailment": "Today", "not_entailment": "Now"}
|
||||
{"entailment": "Obviously", "not_entailment": "Sadly"}
|
||||
{"entailment": "Obviously", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Overall", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Still", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Clearly", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "First", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Certainly", "not_entailment": "Sure"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Suddenly"}
|
||||
{"entailment": "Moreover", "not_entailment": "Ironically"}
|
||||
{"entailment": "again", "not_entailment": "Sure"}
|
||||
{"entailment": "Certainly", "not_entailment": "Or"}
|
||||
{"entailment": "indeed", "not_entailment": "Rather"}
|
||||
{"entailment": "Below", "not_entailment": "Right"}
|
||||
{"entailment": "Today", "not_entailment": "Previously"}
|
||||
{"entailment": "Naturally", "not_entailment": "Fortunately"}
|
||||
{"entailment": "This", "not_entailment": "Then"}
|
||||
{"entailment": "Additionally", "not_entailment": "Recently"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Naturally", "not_entailment": "Ironically"}
|
||||
{"entailment": "Moreover", "not_entailment": "Ironically"}
|
||||
{"entailment": "Certainly", "not_entailment": "Oh"}
|
||||
{"entailment": "Below", "not_entailment": "Alternatively"}
|
||||
{"entailment": "Here", "not_entailment": "And"}
|
||||
{"entailment": "Currently", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Hence", "not_entailment": "Ironically"}
|
||||
{"entailment": "Clearly", "not_entailment": "Sadly"}
|
||||
{"entailment": "today", "not_entailment": "Later"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Worse"}
|
||||
{"entailment": "Clearly", "not_entailment": "Alas"}
|
||||
{"entailment": "First", "not_entailment": "Alas"}
|
||||
{"entailment": "And", "not_entailment": "Ironically"}
|
||||
{"entailment": "Hence", "not_entailment": "Yet"}
|
||||
{"entailment": "Clearly", "not_entailment": "Plus"}
|
||||
{"entailment": "Online", "not_entailment": "Luckily"}
|
||||
{"entailment": "Basically", "not_entailment": "Ironically"}
|
||||
{"entailment": "Certainly", "not_entailment": "Worse"}
|
||||
{"entailment": "Below", "not_entailment": "Conversely"}
|
||||
{"entailment": "Tomorrow", "not_entailment": "Already"}
|
||||
{"entailment": "There", "not_entailment": "Luckily"}
|
||||
{"entailment": "There", "not_entailment": "Worse"}
|
||||
{"entailment": "Typically", "not_entailment": "Ironically"}
|
||||
{"entailment": "Essentially", "not_entailment": "Well"}
|
||||
{"entailment": "Similarly", "not_entailment": "Ironically"}
|
||||
{"entailment": "Originally", "not_entailment": "Luckily"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Yet"}
|
||||
{"entailment": "This", "not_entailment": "Luckily"}
|
||||
{"entailment": "Moreover", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Typically", "not_entailment": "Naturally"}
|
||||
{"entailment": "This", "not_entailment": "Conversely"}
|
||||
{"entailment": "Online", "not_entailment": "Right"}
|
||||
{"entailment": "Tonight", "not_entailment": "Yeah"}
|
||||
{"entailment": "This", "not_entailment": "Eventually"}
|
||||
{"entailment": "This", "not_entailment": "Ironically"}
|
||||
{"entailment": "Now", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Generally", "not_entailment": "Worse"}
|
||||
{"entailment": "Tonight", "not_entailment": "Eventually"}
|
||||
{"entailment": "Therefore", "not_entailment": "Ironically"}
|
||||
{"entailment": "Clearly", "not_entailment": "Further"}
|
||||
{"entailment": "Currently", "not_entailment": "Ironically"}
|
||||
{"entailment": "Initially", "not_entailment": "Conversely"}
|
||||
{"entailment": "Online", "not_entailment": "Sure"}
|
||||
{"entailment": "Ultimately", "not_entailment": "Ironically"}
|
||||
{"entailment": "Tonight", "not_entailment": "Luckily"}
|
||||
{"entailment": "This", "not_entailment": "Worse"}
|
||||
{"entailment": "today", "not_entailment": "Ironically"}
|
||||
{"entailment": "Next", "not_entailment": "Luckily"}
|
||||
{"entailment": "Tonight", "not_entailment": "Sure"}
|
||||
{"entailment": "There", "not_entailment": "Eventually"}
|
||||
{"entailment": "Originally", "not_entailment": "Eventually"}
|
||||
{"entailment": "So", "not_entailment": "Ironically"}
|
||||
{"entailment": "Again", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Again", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Again", "not_entailment": "Ironically"}
|
||||
{"entailment": "Thus", "not_entailment": "Ironically"}
|
||||
{"entailment": "Today", "not_entailment": "Now"}
|
||||
{"entailment": "Today", "not_entailment": "Previously"}
|
||||
{"entailment": "Obviously", "not_entailment": "Sadly"}
|
||||
{"entailment": "Overall", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Obviously", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Obviously", "not_entailment": "Ironically"}
|
||||
{"entailment": "again", "not_entailment": "Sure"}
|
||||
{"entailment": "Still", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Still", "not_entailment": "Ironically"}
|
||||
{"entailment": "again", "not_entailment": "True"}
|
||||
{"entailment": "also", "not_entailment": "Conversely"}
|
||||
{"entailment": "Clearly", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Clearly", "not_entailment": "True"}
|
||||
{"entailment": "Tonight", "not_entailment": "Later"}
|
||||
{"entailment": "Tonight", "not_entailment": "Then"}
|
||||
{"entailment": "First", "not_entailment": "Fortunately"}
|
||||
{"entailment": "Additionally", "not_entailment": "Recently"}
|
||||
{"entailment": "Normally", "not_entailment": "Oh"}
|
||||
{"entailment": "True", "not_entailment": "Luckily"}
|
||||
{"entailment": "today", "not_entailment": "Conversely"}
|
||||
{"entailment": "First", "not_entailment": "Luckily"}
|
||||
{"entailment": "Nonetheless", "not_entailment": "Ironically"}
|
||||
{"entailment": "Naturally", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Certainly", "not_entailment": "Presumably"}
|
||||
{"entailment": "Tomorrow", "not_entailment": "Luckily"}
|
||||
{"entailment": "yes", "not_entailment": "Sure"}
|
||||
{"entailment": "Certainly", "not_entailment": "Or"}
|
||||
{"entailment": "Tomorrow", "not_entailment": "And"}
|
||||
{"entailment": "Tomorrow", "not_entailment": "Sure"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Likewise"}
|
||||
{"entailment": "today", "not_entailment": "Well"}
|
||||
{"entailment": "today", "not_entailment": "But"}
|
||||
{"entailment": "indeed", "not_entailment": "Rather"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Ironically"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Together"}
|
||||
{"entailment": "Certainly", "not_entailment": "Sure"}
|
||||
{"entailment": "Naturally", "not_entailment": "Fortunately"}
|
||||
{"entailment": "again", "not_entailment": "Later"}
|
||||
{"entailment": "This", "not_entailment": "Then"}
|
||||
{"entailment": "Below", "not_entailment": "Worse"}
|
||||
{"entailment": "Accordingly", "not_entailment": "Worse"}
|
||||
{"entailment": "Yesterday", "not_entailment": "Later"}
|
||||
{"entailment": "Below", "not_entailment": "Right"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Suddenly"}
|
|
@ -0,0 +1,100 @@
|
|||
0.81250 {"entailment": "Clearly", "not_entailment": "Yet"}
|
||||
0.75000 {"entailment": "Accordingly", "not_entailment": "meanwhile"}
|
||||
0.75000 {"entailment": "So", "not_entailment": "Meanwhile"}
|
||||
0.75000 {"entailment": "yes", "not_entailment": "Plus"}
|
||||
0.71875 {"entailment": "Clearly", "not_entailment": "Ironically"}
|
||||
0.71875 {"entailment": "Historically", "not_entailment": "Further"}
|
||||
0.71875 {"entailment": "Literally", "not_entailment": "meanwhile"}
|
||||
0.71875 {"entailment": "Overall", "not_entailment": "meanwhile"}
|
||||
0.68750 {"entailment": "Therefore", "not_entailment": "Further"}
|
||||
0.68750 {"entailment": "Indeed", "not_entailment": "Meanwhile"}
|
||||
0.68750 {"entailment": "Indeed", "not_entailment": "Ironically"}
|
||||
0.68750 {"entailment": "Naturally", "not_entailment": "also"}
|
||||
0.68750 {"entailment": "More", "not_entailment": "also"}
|
||||
0.65625 {"entailment": "Indeed", "not_entailment": "Also"}
|
||||
0.65625 {"entailment": "Consequently", "not_entailment": "and"}
|
||||
0.65625 {"entailment": "There", "not_entailment": "and"}
|
||||
0.65625 {"entailment": "indeed", "not_entailment": "also"}
|
||||
0.65625 {"entailment": "Therefore", "not_entailment": "Ironically"}
|
||||
0.65625 {"entailment": "Eventually", "not_entailment": "Later"}
|
||||
0.65625 {"entailment": "Certainly", "not_entailment": "Today"}
|
||||
0.62500 {"entailment": "Therefore", "not_entailment": "Interestingly"}
|
||||
0.62500 {"entailment": "Obviously", "not_entailment": "Now"}
|
||||
0.62500 {"entailment": "So", "not_entailment": "Now"}
|
||||
0.62500 {"entailment": "indeed", "not_entailment": "meanwhile"}
|
||||
0.62500 {"entailment": "There", "not_entailment": "Besides"}
|
||||
0.62500 {"entailment": "Hence", "not_entailment": "Interestingly"}
|
||||
0.62500 {"entailment": "indeed", "not_entailment": "Anyway"}
|
||||
0.62500 {"entailment": "True", "not_entailment": "and"}
|
||||
0.62500 {"entailment": "indeed", "not_entailment": "Lastly"}
|
||||
0.62500 {"entailment": "Seriously", "not_entailment": "See"}
|
||||
0.62500 {"entailment": "Certainly", "not_entailment": "Still"}
|
||||
0.62500 {"entailment": "Eventually", "not_entailment": "Plus"}
|
||||
0.59375 {"entailment": "Worldwide", "not_entailment": "meanwhile"}
|
||||
0.59375 {"entailment": "Eventually", "not_entailment": "also"}
|
||||
0.59375 {"entailment": "Literally", "not_entailment": "Why"}
|
||||
0.59375 {"entailment": "Certainly", "not_entailment": "well"}
|
||||
0.59375 {"entailment": "Initially", "not_entailment": "however"}
|
||||
0.59375 {"entailment": "There", "not_entailment": "also"}
|
||||
0.59375 {"entailment": "Alternatively", "not_entailment": "Although"}
|
||||
0.59375 {"entailment": "True", "not_entailment": "also"}
|
||||
0.59375 {"entailment": "Consequently", "not_entailment": "Plus"}
|
||||
0.59375 {"entailment": "Consequently", "not_entailment": "But"}
|
||||
0.59375 {"entailment": "Certainly", "not_entailment": "Obviously"}
|
||||
0.59375 {"entailment": "Certainly", "not_entailment": "Regardless"}
|
||||
0.59375 {"entailment": "indeed", "not_entailment": "Further"}
|
||||
0.59375 {"entailment": "Actually", "not_entailment": "Ironically"}
|
||||
0.59375 {"entailment": "Overall", "not_entailment": "Interestingly"}
|
||||
0.59375 {"entailment": "indeed", "not_entailment": "Thankfully"}
|
||||
0.56250 {"entailment": "Sadly", "not_entailment": "But"}
|
||||
0.56250 {"entailment": "Presumably", "not_entailment": "Notably"}
|
||||
0.56250 {"entailment": "Historically", "not_entailment": "Nevertheless"}
|
||||
0.56250 {"entailment": "Nevertheless", "not_entailment": "But"}
|
||||
0.56250 {"entailment": "Worldwide", "not_entailment": "Previously"}
|
||||
0.56250 {"entailment": "Furthermore", "not_entailment": "Meanwhile"}
|
||||
0.56250 {"entailment": "Consequently", "not_entailment": "Yet"}
|
||||
0.56250 {"entailment": "Unfortunately", "not_entailment": "also"}
|
||||
0.56250 {"entailment": "Likewise", "not_entailment": "Ironically"}
|
||||
0.56250 {"entailment": "Accordingly", "not_entailment": "and"}
|
||||
0.56250 {"entailment": "Indeed", "not_entailment": "Additionally"}
|
||||
0.56250 {"entailment": "Overall", "not_entailment": "also"}
|
||||
0.56250 {"entailment": "Basically", "not_entailment": "Next"}
|
||||
0.56250 {"entailment": "indeed", "not_entailment": "Notably"}
|
||||
0.56250 {"entailment": "indeed", "not_entailment": "Luckily"}
|
||||
0.53125 {"entailment": "Basically", "not_entailment": "See"}
|
||||
0.53125 {"entailment": "Eventually", "not_entailment": "and"}
|
||||
0.53125 {"entailment": "Clearly", "not_entailment": "See"}
|
||||
0.53125 {"entailment": "There", "not_entailment": "Anyway"}
|
||||
0.53125 {"entailment": "Therefore", "not_entailment": "Now"}
|
||||
0.53125 {"entailment": "Otherwise", "not_entailment": "Although"}
|
||||
0.53125 {"entailment": "Literally", "not_entailment": "Yeah"}
|
||||
0.53125 {"entailment": "Obviously", "not_entailment": "Only"}
|
||||
0.53125 {"entailment": "Consequently", "not_entailment": "also"}
|
||||
0.53125 {"entailment": "Consequently", "not_entailment": "however"}
|
||||
0.53125 {"entailment": "Literally", "not_entailment": "Look"}
|
||||
0.53125 {"entailment": "Overall", "not_entailment": "Luckily"}
|
||||
0.53125 {"entailment": "Alternatively", "not_entailment": "Recently"}
|
||||
0.53125 {"entailment": "Right", "not_entailment": "Remember"}
|
||||
0.50000 {"entailment": "Certainly", "not_entailment": "Note"}
|
||||
0.50000 {"entailment": "Overall", "not_entailment": "Previously"}
|
||||
0.50000 {"entailment": "Then", "not_entailment": "But"}
|
||||
0.50000 {"entailment": "There", "not_entailment": "Above"}
|
||||
0.50000 {"entailment": "Eventually", "not_entailment": "Above"}
|
||||
0.50000 {"entailment": "Worldwide", "not_entailment": "now"}
|
||||
0.46875 {"entailment": "Seriously", "not_entailment": "Why"}
|
||||
0.46875 {"entailment": "Unfortunately", "not_entailment": "But"}
|
||||
0.46875 {"entailment": "Consequently", "not_entailment": "Likewise"}
|
||||
0.46875 {"entailment": "No", "not_entailment": "See"}
|
||||
0.46875 {"entailment": "Lastly", "not_entailment": "Luckily"}
|
||||
0.46875 {"entailment": "Similarly", "not_entailment": "also"}
|
||||
0.43750 {"entailment": "There", "not_entailment": "Only"}
|
||||
0.43750 {"entailment": "Overall", "not_entailment": "First"}
|
||||
0.43750 {"entailment": "Consequently", "not_entailment": "Accordingly"}
|
||||
0.43750 {"entailment": "Perhaps", "not_entailment": "Note"}
|
||||
0.43750 {"entailment": "Alternatively", "not_entailment": "Luckily"}
|
||||
0.43750 {"entailment": "Actually", "not_entailment": "Remember"}
|
||||
0.40625 {"entailment": "Alternatively", "not_entailment": "Only"}
|
||||
0.40625 {"entailment": "Basically", "not_entailment": "Remember"}
|
||||
0.37500 {"entailment": "Lastly", "not_entailment": "Only"}
|
||||
0.37500 {"entailment": "Eventually", "not_entailment": "Only"}
|
||||
0.34375 {"entailment": "More", "not_entailment": "Only"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Clearly", "not_entailment": "Yet"}
|
||||
{"entailment": "Accordingly", "not_entailment": "meanwhile"}
|
||||
{"entailment": "So", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "yes", "not_entailment": "Plus"}
|
||||
{"entailment": "Clearly", "not_entailment": "Ironically"}
|
||||
{"entailment": "Historically", "not_entailment": "Further"}
|
||||
{"entailment": "Literally", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Overall", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Therefore", "not_entailment": "Further"}
|
||||
{"entailment": "Indeed", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Indeed", "not_entailment": "Ironically"}
|
||||
{"entailment": "Naturally", "not_entailment": "also"}
|
||||
{"entailment": "More", "not_entailment": "also"}
|
||||
{"entailment": "Indeed", "not_entailment": "Also"}
|
||||
{"entailment": "Consequently", "not_entailment": "and"}
|
||||
{"entailment": "There", "not_entailment": "and"}
|
||||
{"entailment": "indeed", "not_entailment": "also"}
|
||||
{"entailment": "Therefore", "not_entailment": "Ironically"}
|
||||
{"entailment": "Eventually", "not_entailment": "Later"}
|
||||
{"entailment": "Certainly", "not_entailment": "Today"}
|
||||
{"entailment": "Therefore", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Obviously", "not_entailment": "Now"}
|
||||
{"entailment": "So", "not_entailment": "Now"}
|
||||
{"entailment": "indeed", "not_entailment": "meanwhile"}
|
||||
{"entailment": "There", "not_entailment": "Besides"}
|
||||
{"entailment": "Hence", "not_entailment": "Interestingly"}
|
||||
{"entailment": "indeed", "not_entailment": "Anyway"}
|
||||
{"entailment": "True", "not_entailment": "and"}
|
||||
{"entailment": "indeed", "not_entailment": "Lastly"}
|
||||
{"entailment": "Seriously", "not_entailment": "See"}
|
||||
{"entailment": "Certainly", "not_entailment": "Still"}
|
||||
{"entailment": "Eventually", "not_entailment": "Plus"}
|
||||
{"entailment": "Worldwide", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Eventually", "not_entailment": "also"}
|
||||
{"entailment": "Literally", "not_entailment": "Why"}
|
||||
{"entailment": "Certainly", "not_entailment": "well"}
|
||||
{"entailment": "Initially", "not_entailment": "however"}
|
||||
{"entailment": "There", "not_entailment": "also"}
|
||||
{"entailment": "Alternatively", "not_entailment": "Although"}
|
||||
{"entailment": "True", "not_entailment": "also"}
|
||||
{"entailment": "Consequently", "not_entailment": "Plus"}
|
||||
{"entailment": "Consequently", "not_entailment": "But"}
|
||||
{"entailment": "Certainly", "not_entailment": "Obviously"}
|
||||
{"entailment": "Certainly", "not_entailment": "Regardless"}
|
||||
{"entailment": "indeed", "not_entailment": "Further"}
|
||||
{"entailment": "Actually", "not_entailment": "Ironically"}
|
||||
{"entailment": "Overall", "not_entailment": "Interestingly"}
|
||||
{"entailment": "indeed", "not_entailment": "Thankfully"}
|
||||
{"entailment": "Sadly", "not_entailment": "But"}
|
||||
{"entailment": "Presumably", "not_entailment": "Notably"}
|
||||
{"entailment": "Historically", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Nevertheless", "not_entailment": "But"}
|
||||
{"entailment": "Worldwide", "not_entailment": "Previously"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Consequently", "not_entailment": "Yet"}
|
||||
{"entailment": "Unfortunately", "not_entailment": "also"}
|
||||
{"entailment": "Likewise", "not_entailment": "Ironically"}
|
||||
{"entailment": "Accordingly", "not_entailment": "and"}
|
||||
{"entailment": "Indeed", "not_entailment": "Additionally"}
|
||||
{"entailment": "Overall", "not_entailment": "also"}
|
||||
{"entailment": "Basically", "not_entailment": "Next"}
|
||||
{"entailment": "indeed", "not_entailment": "Notably"}
|
||||
{"entailment": "indeed", "not_entailment": "Luckily"}
|
||||
{"entailment": "Basically", "not_entailment": "See"}
|
||||
{"entailment": "Eventually", "not_entailment": "and"}
|
||||
{"entailment": "Clearly", "not_entailment": "See"}
|
||||
{"entailment": "There", "not_entailment": "Anyway"}
|
||||
{"entailment": "Therefore", "not_entailment": "Now"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Although"}
|
||||
{"entailment": "Literally", "not_entailment": "Yeah"}
|
||||
{"entailment": "Obviously", "not_entailment": "Only"}
|
||||
{"entailment": "Consequently", "not_entailment": "also"}
|
||||
{"entailment": "Consequently", "not_entailment": "however"}
|
||||
{"entailment": "Literally", "not_entailment": "Look"}
|
||||
{"entailment": "Overall", "not_entailment": "Luckily"}
|
||||
{"entailment": "Alternatively", "not_entailment": "Recently"}
|
||||
{"entailment": "Right", "not_entailment": "Remember"}
|
||||
{"entailment": "Certainly", "not_entailment": "Note"}
|
||||
{"entailment": "Overall", "not_entailment": "Previously"}
|
||||
{"entailment": "Then", "not_entailment": "But"}
|
||||
{"entailment": "There", "not_entailment": "Above"}
|
||||
{"entailment": "Eventually", "not_entailment": "Above"}
|
||||
{"entailment": "Worldwide", "not_entailment": "now"}
|
||||
{"entailment": "Seriously", "not_entailment": "Why"}
|
||||
{"entailment": "Unfortunately", "not_entailment": "But"}
|
||||
{"entailment": "Consequently", "not_entailment": "Likewise"}
|
||||
{"entailment": "No", "not_entailment": "See"}
|
||||
{"entailment": "Lastly", "not_entailment": "Luckily"}
|
||||
{"entailment": "Similarly", "not_entailment": "also"}
|
||||
{"entailment": "There", "not_entailment": "Only"}
|
||||
{"entailment": "Overall", "not_entailment": "First"}
|
||||
{"entailment": "Consequently", "not_entailment": "Accordingly"}
|
||||
{"entailment": "Perhaps", "not_entailment": "Note"}
|
||||
{"entailment": "Alternatively", "not_entailment": "Luckily"}
|
||||
{"entailment": "Actually", "not_entailment": "Remember"}
|
||||
{"entailment": "Alternatively", "not_entailment": "Only"}
|
||||
{"entailment": "Basically", "not_entailment": "Remember"}
|
||||
{"entailment": "Lastly", "not_entailment": "Only"}
|
||||
{"entailment": "Eventually", "not_entailment": "Only"}
|
||||
{"entailment": "More", "not_entailment": "Only"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "Worldwide", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Unfortunately", "not_entailment": "But"}
|
||||
{"entailment": "Therefore", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Seriously", "not_entailment": "Why"}
|
||||
{"entailment": "Certainly", "not_entailment": "Note"}
|
||||
{"entailment": "Indeed", "not_entailment": "Also"}
|
||||
{"entailment": "Clearly", "not_entailment": "Yet"}
|
||||
{"entailment": "Obviously", "not_entailment": "Now"}
|
||||
{"entailment": "Eventually", "not_entailment": "also"}
|
||||
{"entailment": "Literally", "not_entailment": "Why"}
|
||||
{"entailment": "Basically", "not_entailment": "See"}
|
||||
{"entailment": "Accordingly", "not_entailment": "meanwhile"}
|
||||
{"entailment": "So", "not_entailment": "Now"}
|
||||
{"entailment": "Lastly", "not_entailment": "Only"}
|
||||
{"entailment": "There", "not_entailment": "and"}
|
||||
{"entailment": "Consequently", "not_entailment": "and"}
|
||||
{"entailment": "Sadly", "not_entailment": "But"}
|
||||
{"entailment": "Therefore", "not_entailment": "Further"}
|
||||
{"entailment": "Presumably", "not_entailment": "Notably"}
|
||||
{"entailment": "Overall", "not_entailment": "Previously"}
|
||||
{"entailment": "Eventually", "not_entailment": "and"}
|
||||
{"entailment": "There", "not_entailment": "Only"}
|
||||
{"entailment": "indeed", "not_entailment": "also"}
|
||||
{"entailment": "Indeed", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "indeed", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Consequently", "not_entailment": "Likewise"}
|
||||
{"entailment": "Clearly", "not_entailment": "See"}
|
||||
{"entailment": "Certainly", "not_entailment": "well"}
|
||||
{"entailment": "Clearly", "not_entailment": "Ironically"}
|
||||
{"entailment": "Overall", "not_entailment": "First"}
|
||||
{"entailment": "There", "not_entailment": "Besides"}
|
||||
{"entailment": "There", "not_entailment": "Anyway"}
|
||||
{"entailment": "Historically", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Then", "not_entailment": "But"}
|
||||
{"entailment": "Initially", "not_entailment": "however"}
|
||||
{"entailment": "Consequently", "not_entailment": "Accordingly"}
|
||||
{"entailment": "Therefore", "not_entailment": "Ironically"}
|
||||
{"entailment": "No", "not_entailment": "See"}
|
||||
{"entailment": "Therefore", "not_entailment": "Now"}
|
||||
{"entailment": "Indeed", "not_entailment": "Ironically"}
|
||||
{"entailment": "Eventually", "not_entailment": "Later"}
|
||||
{"entailment": "Alternatively", "not_entailment": "Only"}
|
||||
{"entailment": "There", "not_entailment": "Above"}
|
||||
{"entailment": "Nevertheless", "not_entailment": "But"}
|
||||
{"entailment": "There", "not_entailment": "also"}
|
||||
{"entailment": "Historically", "not_entailment": "Further"}
|
||||
{"entailment": "Lastly", "not_entailment": "Luckily"}
|
||||
{"entailment": "Hence", "not_entailment": "Interestingly"}
|
||||
{"entailment": "Eventually", "not_entailment": "Above"}
|
||||
{"entailment": "Worldwide", "not_entailment": "Previously"}
|
||||
{"entailment": "Furthermore", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Otherwise", "not_entailment": "Although"}
|
||||
{"entailment": "Similarly", "not_entailment": "also"}
|
||||
{"entailment": "Literally", "not_entailment": "Yeah"}
|
||||
{"entailment": "indeed", "not_entailment": "Anyway"}
|
||||
{"entailment": "Alternatively", "not_entailment": "Although"}
|
||||
{"entailment": "Consequently", "not_entailment": "Yet"}
|
||||
{"entailment": "True", "not_entailment": "and"}
|
||||
{"entailment": "Unfortunately", "not_entailment": "also"}
|
||||
{"entailment": "Naturally", "not_entailment": "also"}
|
||||
{"entailment": "Worldwide", "not_entailment": "now"}
|
||||
{"entailment": "indeed", "not_entailment": "Lastly"}
|
||||
{"entailment": "True", "not_entailment": "also"}
|
||||
{"entailment": "Seriously", "not_entailment": "See"}
|
||||
{"entailment": "Consequently", "not_entailment": "Plus"}
|
||||
{"entailment": "So", "not_entailment": "Meanwhile"}
|
||||
{"entailment": "Obviously", "not_entailment": "Only"}
|
||||
{"entailment": "Eventually", "not_entailment": "Only"}
|
||||
{"entailment": "Consequently", "not_entailment": "But"}
|
||||
{"entailment": "Likewise", "not_entailment": "Ironically"}
|
||||
{"entailment": "Consequently", "not_entailment": "also"}
|
||||
{"entailment": "Consequently", "not_entailment": "however"}
|
||||
{"entailment": "Perhaps", "not_entailment": "Note"}
|
||||
{"entailment": "Certainly", "not_entailment": "Still"}
|
||||
{"entailment": "Literally", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Accordingly", "not_entailment": "and"}
|
||||
{"entailment": "Literally", "not_entailment": "Look"}
|
||||
{"entailment": "Certainly", "not_entailment": "Obviously"}
|
||||
{"entailment": "Alternatively", "not_entailment": "Luckily"}
|
||||
{"entailment": "Indeed", "not_entailment": "Additionally"}
|
||||
{"entailment": "Eventually", "not_entailment": "Plus"}
|
||||
{"entailment": "Overall", "not_entailment": "Luckily"}
|
||||
{"entailment": "Alternatively", "not_entailment": "Recently"}
|
||||
{"entailment": "Certainly", "not_entailment": "Regardless"}
|
||||
{"entailment": "More", "not_entailment": "also"}
|
||||
{"entailment": "More", "not_entailment": "Only"}
|
||||
{"entailment": "yes", "not_entailment": "Plus"}
|
||||
{"entailment": "Basically", "not_entailment": "Remember"}
|
||||
{"entailment": "Certainly", "not_entailment": "Today"}
|
||||
{"entailment": "Right", "not_entailment": "Remember"}
|
||||
{"entailment": "Actually", "not_entailment": "Remember"}
|
||||
{"entailment": "Overall", "not_entailment": "also"}
|
||||
{"entailment": "indeed", "not_entailment": "Further"}
|
||||
{"entailment": "Basically", "not_entailment": "Next"}
|
||||
{"entailment": "Actually", "not_entailment": "Ironically"}
|
||||
{"entailment": "Overall", "not_entailment": "Interestingly"}
|
||||
{"entailment": "indeed", "not_entailment": "Thankfully"}
|
||||
{"entailment": "Overall", "not_entailment": "meanwhile"}
|
||||
{"entailment": "indeed", "not_entailment": "Notably"}
|
||||
{"entailment": "indeed", "not_entailment": "Luckily"}
|
|
@ -0,0 +1,100 @@
|
|||
0.71875 {"entailment": "yes", "not_entailment": "Rather"}
|
||||
0.68750 {"entailment": "Yeah", "not_entailment": "Sadly"}
|
||||
0.68750 {"entailment": "yes", "not_entailment": "Conversely"}
|
||||
0.68750 {"entailment": "YES", "not_entailment": "Conversely"}
|
||||
0.68750 {"entailment": "Why", "not_entailment": "today"}
|
||||
0.68750 {"entailment": "Thankfully", "not_entailment": "Conversely"}
|
||||
0.65625 {"entailment": "Yep", "not_entailment": "Likewise"}
|
||||
0.65625 {"entailment": "YES", "not_entailment": "also"}
|
||||
0.65625 {"entailment": "Sure", "not_entailment": "Sadly"}
|
||||
0.65625 {"entailment": "Certainly", "not_entailment": "Consequently"}
|
||||
0.65625 {"entailment": "Seriously", "not_entailment": "Eventually"}
|
||||
0.65625 {"entailment": "Yep", "not_entailment": "Recently"}
|
||||
0.65625 {"entailment": "See", "not_entailment": "today"}
|
||||
0.62500 {"entailment": "YES", "not_entailment": "meanwhile"}
|
||||
0.62500 {"entailment": "Yeah", "not_entailment": "today"}
|
||||
0.62500 {"entailment": "YES", "not_entailment": "Sadly"}
|
||||
0.62500 {"entailment": "Yep", "not_entailment": "Similarly"}
|
||||
0.62500 {"entailment": "YES", "not_entailment": "now"}
|
||||
0.62500 {"entailment": "True", "not_entailment": "Otherwise"}
|
||||
0.62500 {"entailment": "indeed", "not_entailment": "Recently"}
|
||||
0.62500 {"entailment": "Clearly", "not_entailment": "Additionally"}
|
||||
0.62500 {"entailment": "YES", "not_entailment": "Likewise"}
|
||||
0.62500 {"entailment": "YES", "not_entailment": "and"}
|
||||
0.62500 {"entailment": "Obviously", "not_entailment": "Sadly"}
|
||||
0.62500 {"entailment": "Notably", "not_entailment": "Worldwide"}
|
||||
0.62500 {"entailment": "YES", "not_entailment": "however"}
|
||||
0.62500 {"entailment": "Obviously", "not_entailment": "Worldwide"}
|
||||
0.62500 {"entailment": "Yeah", "not_entailment": "Next"}
|
||||
0.62500 {"entailment": "Again", "not_entailment": "today"}
|
||||
0.62500 {"entailment": "Obviously", "not_entailment": "Tomorrow"}
|
||||
0.59375 {"entailment": "YES", "not_entailment": "Recently"}
|
||||
0.59375 {"entailment": "YES", "not_entailment": "In"}
|
||||
0.59375 {"entailment": "YES", "not_entailment": "today"}
|
||||
0.59375 {"entailment": "True", "not_entailment": "Consequently"}
|
||||
0.59375 {"entailment": "indeed", "not_entailment": "however"}
|
||||
0.59375 {"entailment": "yes", "not_entailment": "Recently"}
|
||||
0.59375 {"entailment": "Yeah", "not_entailment": "Tonight"}
|
||||
0.59375 {"entailment": "Clearly", "not_entailment": "Sadly"}
|
||||
0.59375 {"entailment": "Yes", "not_entailment": "Today"}
|
||||
0.59375 {"entailment": "YES", "not_entailment": "Since"}
|
||||
0.59375 {"entailment": "Oh", "not_entailment": "Consequently"}
|
||||
0.59375 {"entailment": "First", "not_entailment": "Worldwide"}
|
||||
0.59375 {"entailment": "See", "not_entailment": "Recently"}
|
||||
0.56250 {"entailment": "yes", "not_entailment": "now"}
|
||||
0.56250 {"entailment": "True", "not_entailment": "Surprisingly"}
|
||||
0.56250 {"entailment": "Right", "not_entailment": "Recently"}
|
||||
0.56250 {"entailment": "YES", "not_entailment": "Alternatively"}
|
||||
0.56250 {"entailment": "First", "not_entailment": "Otherwise"}
|
||||
0.56250 {"entailment": "Really", "not_entailment": "More"}
|
||||
0.56250 {"entailment": "yes", "not_entailment": "Eventually"}
|
||||
0.56250 {"entailment": "Yeah", "not_entailment": "currently"}
|
||||
0.56250 {"entailment": "Essentially", "not_entailment": "Consequently"}
|
||||
0.56250 {"entailment": "Yeah", "not_entailment": "Right"}
|
||||
0.56250 {"entailment": "YES", "not_entailment": "More"}
|
||||
0.56250 {"entailment": "YES", "not_entailment": "Nonetheless"}
|
||||
0.56250 {"entailment": "Oh", "not_entailment": "Nonetheless"}
|
||||
0.56250 {"entailment": "YES", "not_entailment": "currently"}
|
||||
0.56250 {"entailment": "YES", "not_entailment": "Still"}
|
||||
0.56250 {"entailment": "YES", "not_entailment": "Yesterday"}
|
||||
0.56250 {"entailment": "Yeah", "not_entailment": "and"}
|
||||
0.56250 {"entailment": "Oh", "not_entailment": "currently"}
|
||||
0.56250 {"entailment": "Yep", "not_entailment": "Apparently"}
|
||||
0.56250 {"entailment": "Clearly", "not_entailment": "Tomorrow"}
|
||||
0.56250 {"entailment": "Yeah", "not_entailment": "also"}
|
||||
0.56250 {"entailment": "Clearly", "not_entailment": "More"}
|
||||
0.56250 {"entailment": "yes", "not_entailment": "Regardless"}
|
||||
0.56250 {"entailment": "indeed", "not_entailment": "Still"}
|
||||
0.56250 {"entailment": "Again", "not_entailment": "Additionally"}
|
||||
0.56250 {"entailment": "Well", "not_entailment": "Furthermore"}
|
||||
0.56250 {"entailment": "Yeah", "not_entailment": "meanwhile"}
|
||||
0.53125 {"entailment": "YES", "not_entailment": "Next"}
|
||||
0.53125 {"entailment": "Seriously", "not_entailment": "today"}
|
||||
0.53125 {"entailment": "yes", "not_entailment": "today"}
|
||||
0.53125 {"entailment": "yes", "not_entailment": "also"}
|
||||
0.53125 {"entailment": "Remember", "not_entailment": "today"}
|
||||
0.53125 {"entailment": "yes", "not_entailment": "See"}
|
||||
0.53125 {"entailment": "yes", "not_entailment": "Worldwide"}
|
||||
0.53125 {"entailment": "YES", "not_entailment": "Later"}
|
||||
0.53125 {"entailment": "Sure", "not_entailment": "More"}
|
||||
0.53125 {"entailment": "True", "not_entailment": "Worldwide"}
|
||||
0.53125 {"entailment": "Obviously", "not_entailment": "Generally"}
|
||||
0.53125 {"entailment": "Yeah", "not_entailment": "now"}
|
||||
0.50000 {"entailment": "yes", "not_entailment": "More"}
|
||||
0.50000 {"entailment": "Essentially", "not_entailment": "Worldwide"}
|
||||
0.50000 {"entailment": "Although", "not_entailment": "Since"}
|
||||
0.50000 {"entailment": "Literally", "not_entailment": "More"}
|
||||
0.50000 {"entailment": "True", "not_entailment": "Nevertheless"}
|
||||
0.50000 {"entailment": "Clearly", "not_entailment": "Nevertheless"}
|
||||
0.50000 {"entailment": "No", "not_entailment": "today"}
|
||||
0.50000 {"entailment": "indeed", "not_entailment": "Certainly"}
|
||||
0.50000 {"entailment": "Yeah", "not_entailment": "Thus"}
|
||||
0.50000 {"entailment": "Well", "not_entailment": "Tomorrow"}
|
||||
0.50000 {"entailment": "Really", "not_entailment": "Sadly"}
|
||||
0.50000 {"entailment": "Anyway", "not_entailment": "Typically"}
|
||||
0.46875 {"entailment": "Actually", "not_entailment": "today"}
|
||||
0.46875 {"entailment": "Essentially", "not_entailment": "Ultimately"}
|
||||
0.46875 {"entailment": "Oh", "not_entailment": "In"}
|
||||
0.43750 {"entailment": "Right", "not_entailment": "today"}
|
||||
0.43750 {"entailment": "Well", "not_entailment": "today"}
|
||||
0.43750 {"entailment": "yes", "not_entailment": "Right"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "yes", "not_entailment": "Rather"}
|
||||
{"entailment": "Yeah", "not_entailment": "Sadly"}
|
||||
{"entailment": "yes", "not_entailment": "Conversely"}
|
||||
{"entailment": "YES", "not_entailment": "Conversely"}
|
||||
{"entailment": "Why", "not_entailment": "today"}
|
||||
{"entailment": "Thankfully", "not_entailment": "Conversely"}
|
||||
{"entailment": "Yep", "not_entailment": "Likewise"}
|
||||
{"entailment": "YES", "not_entailment": "also"}
|
||||
{"entailment": "Sure", "not_entailment": "Sadly"}
|
||||
{"entailment": "Certainly", "not_entailment": "Consequently"}
|
||||
{"entailment": "Seriously", "not_entailment": "Eventually"}
|
||||
{"entailment": "Yep", "not_entailment": "Recently"}
|
||||
{"entailment": "See", "not_entailment": "today"}
|
||||
{"entailment": "YES", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Yeah", "not_entailment": "today"}
|
||||
{"entailment": "YES", "not_entailment": "Sadly"}
|
||||
{"entailment": "Yep", "not_entailment": "Similarly"}
|
||||
{"entailment": "YES", "not_entailment": "now"}
|
||||
{"entailment": "True", "not_entailment": "Otherwise"}
|
||||
{"entailment": "indeed", "not_entailment": "Recently"}
|
||||
{"entailment": "Clearly", "not_entailment": "Additionally"}
|
||||
{"entailment": "YES", "not_entailment": "Likewise"}
|
||||
{"entailment": "YES", "not_entailment": "and"}
|
||||
{"entailment": "Obviously", "not_entailment": "Sadly"}
|
||||
{"entailment": "Notably", "not_entailment": "Worldwide"}
|
||||
{"entailment": "YES", "not_entailment": "however"}
|
||||
{"entailment": "Obviously", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Yeah", "not_entailment": "Next"}
|
||||
{"entailment": "Again", "not_entailment": "today"}
|
||||
{"entailment": "Obviously", "not_entailment": "Tomorrow"}
|
||||
{"entailment": "YES", "not_entailment": "Recently"}
|
||||
{"entailment": "YES", "not_entailment": "In"}
|
||||
{"entailment": "YES", "not_entailment": "today"}
|
||||
{"entailment": "True", "not_entailment": "Consequently"}
|
||||
{"entailment": "indeed", "not_entailment": "however"}
|
||||
{"entailment": "yes", "not_entailment": "Recently"}
|
||||
{"entailment": "Yeah", "not_entailment": "Tonight"}
|
||||
{"entailment": "Clearly", "not_entailment": "Sadly"}
|
||||
{"entailment": "Yes", "not_entailment": "Today"}
|
||||
{"entailment": "YES", "not_entailment": "Since"}
|
||||
{"entailment": "Oh", "not_entailment": "Consequently"}
|
||||
{"entailment": "First", "not_entailment": "Worldwide"}
|
||||
{"entailment": "See", "not_entailment": "Recently"}
|
||||
{"entailment": "yes", "not_entailment": "now"}
|
||||
{"entailment": "True", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "Right", "not_entailment": "Recently"}
|
||||
{"entailment": "YES", "not_entailment": "Alternatively"}
|
||||
{"entailment": "First", "not_entailment": "Otherwise"}
|
||||
{"entailment": "Really", "not_entailment": "More"}
|
||||
{"entailment": "yes", "not_entailment": "Eventually"}
|
||||
{"entailment": "Yeah", "not_entailment": "currently"}
|
||||
{"entailment": "Essentially", "not_entailment": "Consequently"}
|
||||
{"entailment": "Yeah", "not_entailment": "Right"}
|
||||
{"entailment": "YES", "not_entailment": "More"}
|
||||
{"entailment": "YES", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "Oh", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "YES", "not_entailment": "currently"}
|
||||
{"entailment": "YES", "not_entailment": "Still"}
|
||||
{"entailment": "YES", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Yeah", "not_entailment": "and"}
|
||||
{"entailment": "Oh", "not_entailment": "currently"}
|
||||
{"entailment": "Yep", "not_entailment": "Apparently"}
|
||||
{"entailment": "Clearly", "not_entailment": "Tomorrow"}
|
||||
{"entailment": "Yeah", "not_entailment": "also"}
|
||||
{"entailment": "Clearly", "not_entailment": "More"}
|
||||
{"entailment": "yes", "not_entailment": "Regardless"}
|
||||
{"entailment": "indeed", "not_entailment": "Still"}
|
||||
{"entailment": "Again", "not_entailment": "Additionally"}
|
||||
{"entailment": "Well", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Yeah", "not_entailment": "meanwhile"}
|
||||
{"entailment": "YES", "not_entailment": "Next"}
|
||||
{"entailment": "Seriously", "not_entailment": "today"}
|
||||
{"entailment": "yes", "not_entailment": "today"}
|
||||
{"entailment": "yes", "not_entailment": "also"}
|
||||
{"entailment": "Remember", "not_entailment": "today"}
|
||||
{"entailment": "yes", "not_entailment": "See"}
|
||||
{"entailment": "yes", "not_entailment": "Worldwide"}
|
||||
{"entailment": "YES", "not_entailment": "Later"}
|
||||
{"entailment": "Sure", "not_entailment": "More"}
|
||||
{"entailment": "True", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Obviously", "not_entailment": "Generally"}
|
||||
{"entailment": "Yeah", "not_entailment": "now"}
|
||||
{"entailment": "yes", "not_entailment": "More"}
|
||||
{"entailment": "Essentially", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Although", "not_entailment": "Since"}
|
||||
{"entailment": "Literally", "not_entailment": "More"}
|
||||
{"entailment": "True", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Clearly", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "No", "not_entailment": "today"}
|
||||
{"entailment": "indeed", "not_entailment": "Certainly"}
|
||||
{"entailment": "Yeah", "not_entailment": "Thus"}
|
||||
{"entailment": "Well", "not_entailment": "Tomorrow"}
|
||||
{"entailment": "Really", "not_entailment": "Sadly"}
|
||||
{"entailment": "Anyway", "not_entailment": "Typically"}
|
||||
{"entailment": "Actually", "not_entailment": "today"}
|
||||
{"entailment": "Essentially", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Oh", "not_entailment": "In"}
|
||||
{"entailment": "Right", "not_entailment": "today"}
|
||||
{"entailment": "Well", "not_entailment": "today"}
|
||||
{"entailment": "yes", "not_entailment": "Right"}
|
|
@ -0,0 +1,100 @@
|
|||
{"entailment": "YES", "not_entailment": "today"}
|
||||
{"entailment": "YES", "not_entailment": "Recently"}
|
||||
{"entailment": "YES", "not_entailment": "In"}
|
||||
{"entailment": "YES", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Yeah", "not_entailment": "Sadly"}
|
||||
{"entailment": "yes", "not_entailment": "now"}
|
||||
{"entailment": "True", "not_entailment": "Surprisingly"}
|
||||
{"entailment": "yes", "not_entailment": "Conversely"}
|
||||
{"entailment": "YES", "not_entailment": "Conversely"}
|
||||
{"entailment": "Yeah", "not_entailment": "today"}
|
||||
{"entailment": "Yep", "not_entailment": "Likewise"}
|
||||
{"entailment": "yes", "not_entailment": "More"}
|
||||
{"entailment": "Yep", "not_entailment": "Similarly"}
|
||||
{"entailment": "YES", "not_entailment": "Sadly"}
|
||||
{"entailment": "Essentially", "not_entailment": "Worldwide"}
|
||||
{"entailment": "YES", "not_entailment": "now"}
|
||||
{"entailment": "YES", "not_entailment": "also"}
|
||||
{"entailment": "Although", "not_entailment": "Since"}
|
||||
{"entailment": "Literally", "not_entailment": "More"}
|
||||
{"entailment": "Right", "not_entailment": "Recently"}
|
||||
{"entailment": "True", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "YES", "not_entailment": "Alternatively"}
|
||||
{"entailment": "True", "not_entailment": "Otherwise"}
|
||||
{"entailment": "Actually", "not_entailment": "today"}
|
||||
{"entailment": "First", "not_entailment": "Otherwise"}
|
||||
{"entailment": "YES", "not_entailment": "Next"}
|
||||
{"entailment": "Seriously", "not_entailment": "today"}
|
||||
{"entailment": "True", "not_entailment": "Consequently"}
|
||||
{"entailment": "Right", "not_entailment": "today"}
|
||||
{"entailment": "Really", "not_entailment": "More"}
|
||||
{"entailment": "yes", "not_entailment": "today"}
|
||||
{"entailment": "indeed", "not_entailment": "however"}
|
||||
{"entailment": "yes", "not_entailment": "Eventually"}
|
||||
{"entailment": "indeed", "not_entailment": "Recently"}
|
||||
{"entailment": "yes", "not_entailment": "also"}
|
||||
{"entailment": "Remember", "not_entailment": "today"}
|
||||
{"entailment": "yes", "not_entailment": "See"}
|
||||
{"entailment": "Yeah", "not_entailment": "currently"}
|
||||
{"entailment": "Essentially", "not_entailment": "Ultimately"}
|
||||
{"entailment": "Yeah", "not_entailment": "Tonight"}
|
||||
{"entailment": "yes", "not_entailment": "Recently"}
|
||||
{"entailment": "Clearly", "not_entailment": "Sadly"}
|
||||
{"entailment": "Clearly", "not_entailment": "Nevertheless"}
|
||||
{"entailment": "Clearly", "not_entailment": "Additionally"}
|
||||
{"entailment": "Essentially", "not_entailment": "Consequently"}
|
||||
{"entailment": "Yes", "not_entailment": "Today"}
|
||||
{"entailment": "yes", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Yeah", "not_entailment": "Right"}
|
||||
{"entailment": "Why", "not_entailment": "today"}
|
||||
{"entailment": "YES", "not_entailment": "Likewise"}
|
||||
{"entailment": "YES", "not_entailment": "More"}
|
||||
{"entailment": "YES", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "YES", "not_entailment": "Since"}
|
||||
{"entailment": "Oh", "not_entailment": "Nonetheless"}
|
||||
{"entailment": "YES", "not_entailment": "and"}
|
||||
{"entailment": "YES", "not_entailment": "Later"}
|
||||
{"entailment": "Obviously", "not_entailment": "Sadly"}
|
||||
{"entailment": "Sure", "not_entailment": "More"}
|
||||
{"entailment": "YES", "not_entailment": "Still"}
|
||||
{"entailment": "No", "not_entailment": "today"}
|
||||
{"entailment": "YES", "not_entailment": "currently"}
|
||||
{"entailment": "Sure", "not_entailment": "Sadly"}
|
||||
{"entailment": "Notably", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Thankfully", "not_entailment": "Conversely"}
|
||||
{"entailment": "YES", "not_entailment": "however"}
|
||||
{"entailment": "YES", "not_entailment": "Yesterday"}
|
||||
{"entailment": "Yeah", "not_entailment": "and"}
|
||||
{"entailment": "Oh", "not_entailment": "currently"}
|
||||
{"entailment": "Oh", "not_entailment": "Consequently"}
|
||||
{"entailment": "Certainly", "not_entailment": "Consequently"}
|
||||
{"entailment": "Yep", "not_entailment": "Apparently"}
|
||||
{"entailment": "indeed", "not_entailment": "Certainly"}
|
||||
{"entailment": "Clearly", "not_entailment": "Tomorrow"}
|
||||
{"entailment": "Seriously", "not_entailment": "Eventually"}
|
||||
{"entailment": "Yeah", "not_entailment": "Thus"}
|
||||
{"entailment": "Yeah", "not_entailment": "also"}
|
||||
{"entailment": "Obviously", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Yeah", "not_entailment": "Next"}
|
||||
{"entailment": "Oh", "not_entailment": "In"}
|
||||
{"entailment": "True", "not_entailment": "Worldwide"}
|
||||
{"entailment": "First", "not_entailment": "Worldwide"}
|
||||
{"entailment": "Clearly", "not_entailment": "More"}
|
||||
{"entailment": "See", "not_entailment": "Recently"}
|
||||
{"entailment": "Yep", "not_entailment": "Recently"}
|
||||
{"entailment": "Obviously", "not_entailment": "Generally"}
|
||||
{"entailment": "yes", "not_entailment": "Regardless"}
|
||||
{"entailment": "indeed", "not_entailment": "Still"}
|
||||
{"entailment": "Well", "not_entailment": "Tomorrow"}
|
||||
{"entailment": "Again", "not_entailment": "Additionally"}
|
||||
{"entailment": "yes", "not_entailment": "Rather"}
|
||||
{"entailment": "Well", "not_entailment": "Furthermore"}
|
||||
{"entailment": "Anyway", "not_entailment": "Typically"}
|
||||
{"entailment": "Really", "not_entailment": "Sadly"}
|
||||
{"entailment": "yes", "not_entailment": "Right"}
|
||||
{"entailment": "Well", "not_entailment": "today"}
|
||||
{"entailment": "See", "not_entailment": "today"}
|
||||
{"entailment": "Again", "not_entailment": "today"}
|
||||
{"entailment": "Obviously", "not_entailment": "Tomorrow"}
|
||||
{"entailment": "Yeah", "not_entailment": "meanwhile"}
|
||||
{"entailment": "Yeah", "not_entailment": "now"}
|
|
@ -0,0 +1,100 @@
|
|||
0.87500 {"contradiction": "Later", "entailment": "Still", "neutral": "True"}
|
||||
0.85417 {"contradiction": "Worse", "entailment": "Still", "neutral": "Sadly"}
|
||||
0.85417 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Today"}
|
||||
0.83333 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Naturally"}
|
||||
0.83333 {"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
0.83333 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Sadly"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Surprisingly"}
|
||||
0.81250 {"contradiction": "Alternatively", "entailment": "YES", "neutral": "Likely"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Naturally"}
|
||||
0.81250 {"contradiction": "Alternatively", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
0.81250 {"contradiction": "Next", "entailment": "Exactly", "neutral": "Typically"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Except"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Unfortunately"}
|
||||
0.81250 {"contradiction": "Second", "entailment": "YES", "neutral": "Likely"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Fortunately"}
|
||||
0.81250 {"contradiction": "Second", "entailment": "Exactly", "neutral": "Likely"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Good", "neutral": "Naturally"}
|
||||
0.79167 {"contradiction": "Likewise", "entailment": "Thus", "neutral": "Likely"}
|
||||
0.79167 {"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "yes"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Remember"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Clearly", "neutral": "Apparently"}
|
||||
0.79167 {"contradiction": "Currently", "entailment": "Absolutely", "neutral": "yes"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Luckily"}
|
||||
0.79167 {"contradiction": "Likewise", "entailment": "YES", "neutral": "Except"}
|
||||
0.79167 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Somehow"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Today"}
|
||||
0.79167 {"contradiction": "Also", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "So", "neutral": "Luckily"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Surprisingly"}
|
||||
0.79167 {"contradiction": "Likewise", "entailment": "Definitely", "neutral": "Likely"}
|
||||
0.79167 {"contradiction": "Alternatively", "entailment": "Hmm", "neutral": "Likely"}
|
||||
0.79167 {"contradiction": "Alternatively", "entailment": "Literally", "neutral": "Presumably"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
0.77083 {"contradiction": "Instead", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
0.77083 {"contradiction": "Second", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
0.77083 {"contradiction": "Next", "entailment": "Literally", "neutral": "Presumably"}
|
||||
0.77083 {"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Alas"}
|
||||
0.77083 {"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Luckily"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Thankfully"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Fortunately"}
|
||||
0.77083 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Typically"}
|
||||
0.77083 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Note"}
|
||||
0.77083 {"contradiction": "Next", "entailment": "Literally", "neutral": "Alas"}
|
||||
0.77083 {"contradiction": "Now", "entailment": "Seriously", "neutral": "Apparently"}
|
||||
0.77083 {"contradiction": "Next", "entailment": "So", "neutral": "Naturally"}
|
||||
0.77083 {"contradiction": "Meanwhile", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
0.77083 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Sadly"}
|
||||
0.77083 {"contradiction": "Next", "entailment": "So", "neutral": "Presumably"}
|
||||
0.77083 {"contradiction": "Instead", "entailment": "Yep", "neutral": "Apparently"}
|
||||
0.77083 {"contradiction": "Next", "entailment": "There", "neutral": "Typically"}
|
||||
0.77083 {"contradiction": "Meanwhile", "entailment": "So", "neutral": "Sadly"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "YES", "neutral": "Likely"}
|
||||
0.77083 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Obviously"}
|
||||
0.77083 {"contradiction": "Worse", "entailment": "True", "neutral": "Sadly"}
|
||||
0.77083 {"contradiction": "Otherwise", "entailment": "Still", "neutral": "True"}
|
||||
0.75000 {"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Alas"}
|
||||
0.75000 {"contradiction": "Now", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
0.75000 {"contradiction": "Next", "entailment": "So", "neutral": "However"}
|
||||
0.75000 {"contradiction": "Likewise", "entailment": "Still", "neutral": "But"}
|
||||
0.75000 {"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Sadly"}
|
||||
0.75000 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Luckily"}
|
||||
0.75000 {"contradiction": "Next", "entailment": "So", "neutral": "Today"}
|
||||
0.75000 {"contradiction": "Next", "entailment": "So", "neutral": "Alas"}
|
||||
0.75000 {"contradiction": "Worse", "entailment": "Definitely", "neutral": "Mostly"}
|
||||
0.75000 {"contradiction": "Next", "entailment": "There", "neutral": "Unfortunately"}
|
||||
0.75000 {"contradiction": "Meanwhile", "entailment": "So", "neutral": "Surprisingly"}
|
||||
0.75000 {"contradiction": "Meanwhile", "entailment": "So", "neutral": "Naturally"}
|
||||
0.75000 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Alas"}
|
||||
0.75000 {"contradiction": "Furthermore", "entailment": "Absolutely", "neutral": "Alas"}
|
||||
0.75000 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "True"}
|
||||
0.75000 {"contradiction": "Next", "entailment": "Absolutely", "neutral": "Today"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "Literally", "neutral": "Naturally"}
|
||||
0.72917 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Remember"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Otherwise"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Fortunately"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Hopefully"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "Essentially", "neutral": "Today"}
|
||||
0.72917 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Alas"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "There", "neutral": "Today"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "So", "neutral": "Unfortunately"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "So", "neutral": "True"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Usually"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "Wow", "neutral": "Today"}
|
||||
0.70833 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Mostly"}
|
||||
0.70833 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Sadly"}
|
||||
0.70833 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Today"}
|
||||
0.70833 {"contradiction": "Next", "entailment": "So", "neutral": "Sadly"}
|
||||
0.70833 {"contradiction": "Next", "entailment": "So", "neutral": "Luckily"}
|
||||
0.70833 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Unfortunately"}
|
||||
0.70833 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Thankfully"}
|
||||
0.70833 {"contradiction": "Likewise", "entailment": "YES", "neutral": "But"}
|
||||
0.70833 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Normally"}
|
||||
0.70833 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Sometimes"}
|
||||
0.70833 {"contradiction": "Second", "entailment": "Congratulations", "neutral": "Likely"}
|
||||
0.70833 {"contradiction": "Likewise", "entailment": "Exactly", "neutral": "Likely"}
|
||||
0.68750 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Except"}
|
||||
0.68750 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Ironically"}
|
||||
0.68750 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Alas"}
|
||||
0.68750 {"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Sadly"}
|
||||
0.66667 {"contradiction": "Next", "entailment": "Certainly", "neutral": "Inside"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Later", "entailment": "Still", "neutral": "True"}
|
||||
{"contradiction": "Worse", "entailment": "Still", "neutral": "Sadly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Today"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Naturally"}
|
||||
{"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Sadly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Alternatively", "entailment": "YES", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Naturally"}
|
||||
{"contradiction": "Alternatively", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
{"contradiction": "Next", "entailment": "Exactly", "neutral": "Typically"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Except"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Second", "entailment": "YES", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Fortunately"}
|
||||
{"contradiction": "Second", "entailment": "Exactly", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Good", "neutral": "Naturally"}
|
||||
{"contradiction": "Likewise", "entailment": "Thus", "neutral": "Likely"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "yes"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Remember"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Clearly", "neutral": "Apparently"}
|
||||
{"contradiction": "Currently", "entailment": "Absolutely", "neutral": "yes"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Luckily"}
|
||||
{"contradiction": "Likewise", "entailment": "YES", "neutral": "Except"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Somehow"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Today"}
|
||||
{"contradiction": "Also", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Luckily"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Likewise", "entailment": "Definitely", "neutral": "Likely"}
|
||||
{"contradiction": "Alternatively", "entailment": "Hmm", "neutral": "Likely"}
|
||||
{"contradiction": "Alternatively", "entailment": "Literally", "neutral": "Presumably"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
{"contradiction": "Instead", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
{"contradiction": "Second", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
{"contradiction": "Next", "entailment": "Literally", "neutral": "Presumably"}
|
||||
{"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Alas"}
|
||||
{"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Luckily"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Thankfully"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Fortunately"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Typically"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Note"}
|
||||
{"contradiction": "Next", "entailment": "Literally", "neutral": "Alas"}
|
||||
{"contradiction": "Now", "entailment": "Seriously", "neutral": "Apparently"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Naturally"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Presumably"}
|
||||
{"contradiction": "Instead", "entailment": "Yep", "neutral": "Apparently"}
|
||||
{"contradiction": "Next", "entailment": "There", "neutral": "Typically"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Sadly"}
|
||||
{"contradiction": "Likewise", "entailment": "YES", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Obviously"}
|
||||
{"contradiction": "Worse", "entailment": "True", "neutral": "Sadly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Still", "neutral": "True"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Alas"}
|
||||
{"contradiction": "Now", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "However"}
|
||||
{"contradiction": "Likewise", "entailment": "Still", "neutral": "But"}
|
||||
{"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Luckily"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Today"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Alas"}
|
||||
{"contradiction": "Worse", "entailment": "Definitely", "neutral": "Mostly"}
|
||||
{"contradiction": "Next", "entailment": "There", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Naturally"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Alas"}
|
||||
{"contradiction": "Furthermore", "entailment": "Absolutely", "neutral": "Alas"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "True"}
|
||||
{"contradiction": "Next", "entailment": "Absolutely", "neutral": "Today"}
|
||||
{"contradiction": "Next", "entailment": "Literally", "neutral": "Naturally"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Remember"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Otherwise"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Fortunately"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Hopefully"}
|
||||
{"contradiction": "Next", "entailment": "Essentially", "neutral": "Today"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Alas"}
|
||||
{"contradiction": "Next", "entailment": "There", "neutral": "Today"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "True"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Usually"}
|
||||
{"contradiction": "Next", "entailment": "Wow", "neutral": "Today"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Mostly"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Today"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Luckily"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Thankfully"}
|
||||
{"contradiction": "Likewise", "entailment": "YES", "neutral": "But"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Normally"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Sometimes"}
|
||||
{"contradiction": "Second", "entailment": "Congratulations", "neutral": "Likely"}
|
||||
{"contradiction": "Likewise", "entailment": "Exactly", "neutral": "Likely"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Except"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Ironically"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Alas"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Inside"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
{"contradiction": "Second", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
{"contradiction": "Instead", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
{"contradiction": "Next", "entailment": "Literally", "neutral": "Naturally"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Naturally"}
|
||||
{"contradiction": "Next", "entailment": "Literally", "neutral": "Presumably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Likewise", "entailment": "Thus", "neutral": "Likely"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Alas"}
|
||||
{"contradiction": "Now", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
{"contradiction": "Alternatively", "entailment": "YES", "neutral": "Likely"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Except"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "However"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Mostly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Remember"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Naturally"}
|
||||
{"contradiction": "Worse", "entailment": "Still", "neutral": "Sadly"}
|
||||
{"contradiction": "Likewise", "entailment": "Still", "neutral": "But"}
|
||||
{"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Alas"}
|
||||
{"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Luckily"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Otherwise"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Thankfully"}
|
||||
{"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
{"contradiction": "Worse", "entailment": "Absolutely", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Inside"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Sadly"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Fortunately"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Today"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "yes"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Luckily"}
|
||||
{"contradiction": "Alternatively", "entailment": "Absolutely", "neutral": "Likely"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Typically"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Fortunately"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Note"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Hopefully"}
|
||||
{"contradiction": "Now", "entailment": "Seriously", "neutral": "Apparently"}
|
||||
{"contradiction": "Next", "entailment": "Literally", "neutral": "Alas"}
|
||||
{"contradiction": "Next", "entailment": "Essentially", "neutral": "Today"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Alas"}
|
||||
{"contradiction": "Next", "entailment": "There", "neutral": "Today"}
|
||||
{"contradiction": "Later", "entailment": "Still", "neutral": "True"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Naturally"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Clearly", "neutral": "Apparently"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "True"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Remember"}
|
||||
{"contradiction": "Next", "entailment": "Exactly", "neutral": "Typically"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Today"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Today"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Sadly"}
|
||||
{"contradiction": "Currently", "entailment": "Absolutely", "neutral": "yes"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Alas"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Except"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Presumably"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Luckily"}
|
||||
{"contradiction": "Instead", "entailment": "Yep", "neutral": "Apparently"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Usually"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Luckily"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Worse", "entailment": "Definitely", "neutral": "Mostly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Next", "entailment": "Wow", "neutral": "Today"}
|
||||
{"contradiction": "Next", "entailment": "There", "neutral": "Typically"}
|
||||
{"contradiction": "Next", "entailment": "There", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Thankfully"}
|
||||
{"contradiction": "Likewise", "entailment": "YES", "neutral": "Except"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Sadly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Naturally"}
|
||||
{"contradiction": "Likewise", "entailment": "YES", "neutral": "Likely"}
|
||||
{"contradiction": "Likewise", "entailment": "YES", "neutral": "But"}
|
||||
{"contradiction": "Second", "entailment": "YES", "neutral": "Likely"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Somehow"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Today"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Normally"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Ironically"}
|
||||
{"contradiction": "Also", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Alas"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Luckily"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Alas"}
|
||||
{"contradiction": "Next", "entailment": "Certainly", "neutral": "Sometimes"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Furthermore", "entailment": "Absolutely", "neutral": "Alas"}
|
||||
{"contradiction": "Second", "entailment": "Congratulations", "neutral": "Likely"}
|
||||
{"contradiction": "Likewise", "entailment": "Absolutely", "neutral": "Sadly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Fortunately"}
|
||||
{"contradiction": "Likewise", "entailment": "Definitely", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "True"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Obviously"}
|
||||
{"contradiction": "Likewise", "entailment": "Exactly", "neutral": "Likely"}
|
||||
{"contradiction": "Second", "entailment": "Exactly", "neutral": "Likely"}
|
||||
{"contradiction": "Alternatively", "entailment": "Hmm", "neutral": "Likely"}
|
||||
{"contradiction": "Otherwise", "entailment": "Still", "neutral": "True"}
|
||||
{"contradiction": "Worse", "entailment": "True", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "Absolutely", "neutral": "Today"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Good", "neutral": "Naturally"}
|
||||
{"contradiction": "Alternatively", "entailment": "Literally", "neutral": "Presumably"}
|
|
@ -0,0 +1,100 @@
|
|||
0.85417 {"contradiction": "But", "entailment": "YES", "neutral": "This"}
|
||||
0.83333 {"contradiction": "Next", "entailment": "YES", "neutral": "This"}
|
||||
0.83333 {"contradiction": "Next", "entailment": "YES", "neutral": "Plus"}
|
||||
0.83333 {"contradiction": "Rather", "entailment": "yes", "neutral": "Specifically"}
|
||||
0.83333 {"contradiction": "Alternatively", "entailment": "Thus", "neutral": "This"}
|
||||
0.83333 {"contradiction": "Later", "entailment": "YES", "neutral": "This"}
|
||||
0.83333 {"contradiction": "Next", "entailment": "Thus", "neutral": "This"}
|
||||
0.83333 {"contradiction": "Otherwise", "entailment": "Ok", "neutral": "Specifically"}
|
||||
0.81250 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "And"}
|
||||
0.81250 {"contradiction": "Then", "entailment": "YES", "neutral": "Plus"}
|
||||
0.81250 {"contradiction": "Sometimes", "entailment": "YES", "neutral": "And"}
|
||||
0.81250 {"contradiction": "Alas", "entailment": "YES", "neutral": "Somehow"}
|
||||
0.81250 {"contradiction": "Normally", "entailment": "YES", "neutral": "This"}
|
||||
0.79167 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Plus"}
|
||||
0.79167 {"contradiction": "Oh", "entailment": "Okay", "neutral": "Specifically"}
|
||||
0.79167 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Yet"}
|
||||
0.79167 {"contradiction": "Plus", "entailment": "YES", "neutral": "Suddenly"}
|
||||
0.79167 {"contradiction": "Otherwise", "entailment": "Ok", "neutral": "This"}
|
||||
0.79167 {"contradiction": "Otherwise", "entailment": "Ok", "neutral": "Somewhere"}
|
||||
0.79167 {"contradiction": "Yet", "entailment": "YES", "neutral": "Why"}
|
||||
0.79167 {"contradiction": "Otherwise", "entailment": "yes", "neutral": "Somewhere"}
|
||||
0.79167 {"contradiction": "Later", "entailment": "Essentially", "neutral": "This"}
|
||||
0.77083 {"contradiction": "Then", "entailment": "YES", "neutral": "Essentially"}
|
||||
0.77083 {"contradiction": "Heck", "entailment": "YES", "neutral": "Essentially"}
|
||||
0.77083 {"contradiction": "Rather", "entailment": "YES", "neutral": "Specifically"}
|
||||
0.77083 {"contradiction": "Oh", "entailment": "Okay", "neutral": "Certainly"}
|
||||
0.77083 {"contradiction": "Rather", "entailment": "yes", "neutral": "First"}
|
||||
0.77083 {"contradiction": "Otherwise", "entailment": "Therefore", "neutral": "Suddenly"}
|
||||
0.77083 {"contradiction": "Rather", "entailment": "yes", "neutral": "Somewhere"}
|
||||
0.77083 {"contradiction": "Next", "entailment": "YES", "neutral": "And"}
|
||||
0.77083 {"contradiction": "Nope", "entailment": "Yeah", "neutral": "Basically"}
|
||||
0.77083 {"contradiction": "Maybe", "entailment": "YES", "neutral": "Specifically"}
|
||||
0.77083 {"contradiction": "Outside", "entailment": "Absolutely", "neutral": "Man"}
|
||||
0.77083 {"contradiction": "Then", "entailment": "YES", "neutral": "Yet"}
|
||||
0.77083 {"contradiction": "Ironically", "entailment": "True", "neutral": "This"}
|
||||
0.77083 {"contradiction": "Next", "entailment": "Ok", "neutral": "This"}
|
||||
0.77083 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "This"}
|
||||
0.77083 {"contradiction": "Nah", "entailment": "Hey", "neutral": "Surprisingly"}
|
||||
0.77083 {"contradiction": "Nope", "entailment": "Yeah", "neutral": "Today"}
|
||||
0.77083 {"contradiction": "Heck", "entailment": "yes", "neutral": "Man"}
|
||||
0.77083 {"contradiction": "Otherwise", "entailment": "True", "neutral": "This"}
|
||||
0.77083 {"contradiction": "Nope", "entailment": "Yeah", "neutral": "This"}
|
||||
0.75000 {"contradiction": "Later", "entailment": "YES", "neutral": "Essentially"}
|
||||
0.75000 {"contradiction": "Maybe", "entailment": "YES", "neutral": "Plus"}
|
||||
0.75000 {"contradiction": "Somewhere", "entailment": "yes", "neutral": "Suddenly"}
|
||||
0.75000 {"contradiction": "Maybe", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
0.75000 {"contradiction": "Alas", "entailment": "yes", "neutral": "Somehow"}
|
||||
0.75000 {"contradiction": "Heck", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
0.75000 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "But"}
|
||||
0.75000 {"contradiction": "Rather", "entailment": "Ok", "neutral": "Specifically"}
|
||||
0.75000 {"contradiction": "Nah", "entailment": "Okay", "neutral": "Naturally"}
|
||||
0.75000 {"contradiction": "Nah", "entailment": "Okay", "neutral": "Interestingly"}
|
||||
0.75000 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Interestingly"}
|
||||
0.75000 {"contradiction": "Oh", "entailment": "Okay", "neutral": "Plus"}
|
||||
0.75000 {"contradiction": "Ironically", "entailment": "YES", "neutral": "Man"}
|
||||
0.75000 {"contradiction": "Next", "entailment": "YES", "neutral": "Essentially"}
|
||||
0.75000 {"contradiction": "Oh", "entailment": "Okay", "neutral": "Why"}
|
||||
0.72917 {"contradiction": "Maybe", "entailment": "Ah", "neutral": "Suddenly"}
|
||||
0.72917 {"contradiction": "Nah", "entailment": "Okay", "neutral": "Surprisingly"}
|
||||
0.72917 {"contradiction": "Ironically", "entailment": "True", "neutral": "Man"}
|
||||
0.72917 {"contradiction": "Nah", "entailment": "yes", "neutral": "Beware"}
|
||||
0.72917 {"contradiction": "Oh", "entailment": "Okay", "neutral": "Ironically"}
|
||||
0.72917 {"contradiction": "Oh", "entailment": "Okay", "neutral": "Sadly"}
|
||||
0.72917 {"contradiction": "Then", "entailment": "YES", "neutral": "Man"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "Ok", "neutral": "Somewhere"}
|
||||
0.72917 {"contradiction": "Ironically", "entailment": "YES", "neutral": "Suddenly"}
|
||||
0.72917 {"contradiction": "Next", "entailment": "YES", "neutral": "Somewhere"}
|
||||
0.72917 {"contradiction": "Later", "entailment": "Thus", "neutral": "This"}
|
||||
0.72917 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Somewhere"}
|
||||
0.72917 {"contradiction": "Heck", "entailment": "yes", "neutral": "Somehow"}
|
||||
0.72917 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Why"}
|
||||
0.72917 {"contradiction": "Perhaps", "entailment": "YES", "neutral": "Hello"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Suddenly"}
|
||||
0.70833 {"contradiction": "Maybe", "entailment": "YES", "neutral": "Suddenly"}
|
||||
0.70833 {"contradiction": "Oh", "entailment": "Okay", "neutral": "Unfortunately"}
|
||||
0.70833 {"contradiction": "Heck", "entailment": "Ok", "neutral": "Essentially"}
|
||||
0.70833 {"contradiction": "Rather", "entailment": "Obviously", "neutral": "Naturally"}
|
||||
0.70833 {"contradiction": "Probably", "entailment": "Ok", "neutral": "Ironically"}
|
||||
0.70833 {"contradiction": "Next", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
0.70833 {"contradiction": "Plus", "entailment": "yes", "neutral": "Still"}
|
||||
0.70833 {"contradiction": "Then", "entailment": "YES", "neutral": "Somewhere"}
|
||||
0.70833 {"contradiction": "Probably", "entailment": "Ok", "neutral": "Beware"}
|
||||
0.70833 {"contradiction": "Nah", "entailment": "Ok", "neutral": "Beware"}
|
||||
0.70833 {"contradiction": "Nah", "entailment": "Okay", "neutral": "Unfortunately"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "YES", "neutral": "Man"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "yes", "neutral": "Suddenly"}
|
||||
0.68750 {"contradiction": "Plus", "entailment": "yes", "neutral": "Suddenly"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Fine", "neutral": "Suddenly"}
|
||||
0.68750 {"contradiction": "Oh", "entailment": "OK", "neutral": "Unfortunately"}
|
||||
0.68750 {"contradiction": "Otherwise", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
0.68750 {"contradiction": "Look", "entailment": "Okay", "neutral": "Naturally"}
|
||||
0.68750 {"contradiction": "Heck", "entailment": "YES", "neutral": "Why"}
|
||||
0.68750 {"contradiction": "Nope", "entailment": "Yeah", "neutral": "Sadly"}
|
||||
0.66667 {"contradiction": "NO", "entailment": "Absolutely", "neutral": "Man"}
|
||||
0.66667 {"contradiction": "Then", "entailment": "YES", "neutral": "Suddenly"}
|
||||
0.66667 {"contradiction": "Nope", "entailment": "Yeah", "neutral": "Outside"}
|
||||
0.66667 {"contradiction": "Inside", "entailment": "There", "neutral": "Outside"}
|
||||
0.64583 {"contradiction": "NO", "entailment": "Fine", "neutral": "Man"}
|
||||
0.64583 {"contradiction": "Nope", "entailment": "Yeah", "neutral": "Unfortunately"}
|
||||
0.62500 {"contradiction": "Oh", "entailment": "Okay", "neutral": "Suddenly"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "But", "entailment": "YES", "neutral": "This"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "This"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Rather", "entailment": "yes", "neutral": "Specifically"}
|
||||
{"contradiction": "Alternatively", "entailment": "Thus", "neutral": "This"}
|
||||
{"contradiction": "Later", "entailment": "YES", "neutral": "This"}
|
||||
{"contradiction": "Next", "entailment": "Thus", "neutral": "This"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ok", "neutral": "Specifically"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "And"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Sometimes", "entailment": "YES", "neutral": "And"}
|
||||
{"contradiction": "Alas", "entailment": "YES", "neutral": "Somehow"}
|
||||
{"contradiction": "Normally", "entailment": "YES", "neutral": "This"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Specifically"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Yet"}
|
||||
{"contradiction": "Plus", "entailment": "YES", "neutral": "Suddenly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ok", "neutral": "This"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ok", "neutral": "Somewhere"}
|
||||
{"contradiction": "Yet", "entailment": "YES", "neutral": "Why"}
|
||||
{"contradiction": "Otherwise", "entailment": "yes", "neutral": "Somewhere"}
|
||||
{"contradiction": "Later", "entailment": "Essentially", "neutral": "This"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Essentially"}
|
||||
{"contradiction": "Heck", "entailment": "YES", "neutral": "Essentially"}
|
||||
{"contradiction": "Rather", "entailment": "YES", "neutral": "Specifically"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Certainly"}
|
||||
{"contradiction": "Rather", "entailment": "yes", "neutral": "First"}
|
||||
{"contradiction": "Otherwise", "entailment": "Therefore", "neutral": "Suddenly"}
|
||||
{"contradiction": "Rather", "entailment": "yes", "neutral": "Somewhere"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "And"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "Basically"}
|
||||
{"contradiction": "Maybe", "entailment": "YES", "neutral": "Specifically"}
|
||||
{"contradiction": "Outside", "entailment": "Absolutely", "neutral": "Man"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Yet"}
|
||||
{"contradiction": "Ironically", "entailment": "True", "neutral": "This"}
|
||||
{"contradiction": "Next", "entailment": "Ok", "neutral": "This"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "This"}
|
||||
{"contradiction": "Nah", "entailment": "Hey", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "Today"}
|
||||
{"contradiction": "Heck", "entailment": "yes", "neutral": "Man"}
|
||||
{"contradiction": "Otherwise", "entailment": "True", "neutral": "This"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "This"}
|
||||
{"contradiction": "Later", "entailment": "YES", "neutral": "Essentially"}
|
||||
{"contradiction": "Maybe", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Somewhere", "entailment": "yes", "neutral": "Suddenly"}
|
||||
{"contradiction": "Maybe", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
{"contradiction": "Alas", "entailment": "yes", "neutral": "Somehow"}
|
||||
{"contradiction": "Heck", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "But"}
|
||||
{"contradiction": "Rather", "entailment": "Ok", "neutral": "Specifically"}
|
||||
{"contradiction": "Nah", "entailment": "Okay", "neutral": "Naturally"}
|
||||
{"contradiction": "Nah", "entailment": "Okay", "neutral": "Interestingly"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Interestingly"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Plus"}
|
||||
{"contradiction": "Ironically", "entailment": "YES", "neutral": "Man"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "Essentially"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Why"}
|
||||
{"contradiction": "Maybe", "entailment": "Ah", "neutral": "Suddenly"}
|
||||
{"contradiction": "Nah", "entailment": "Okay", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Ironically", "entailment": "True", "neutral": "Man"}
|
||||
{"contradiction": "Nah", "entailment": "yes", "neutral": "Beware"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Ironically"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Sadly"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Man"}
|
||||
{"contradiction": "Next", "entailment": "Ok", "neutral": "Somewhere"}
|
||||
{"contradiction": "Ironically", "entailment": "YES", "neutral": "Suddenly"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "Somewhere"}
|
||||
{"contradiction": "Later", "entailment": "Thus", "neutral": "This"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Somewhere"}
|
||||
{"contradiction": "Heck", "entailment": "yes", "neutral": "Somehow"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Why"}
|
||||
{"contradiction": "Perhaps", "entailment": "YES", "neutral": "Hello"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Suddenly"}
|
||||
{"contradiction": "Maybe", "entailment": "YES", "neutral": "Suddenly"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Heck", "entailment": "Ok", "neutral": "Essentially"}
|
||||
{"contradiction": "Rather", "entailment": "Obviously", "neutral": "Naturally"}
|
||||
{"contradiction": "Probably", "entailment": "Ok", "neutral": "Ironically"}
|
||||
{"contradiction": "Next", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
{"contradiction": "Plus", "entailment": "yes", "neutral": "Still"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Somewhere"}
|
||||
{"contradiction": "Probably", "entailment": "Ok", "neutral": "Beware"}
|
||||
{"contradiction": "Nah", "entailment": "Ok", "neutral": "Beware"}
|
||||
{"contradiction": "Nah", "entailment": "Okay", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Man"}
|
||||
{"contradiction": "Otherwise", "entailment": "yes", "neutral": "Suddenly"}
|
||||
{"contradiction": "Plus", "entailment": "yes", "neutral": "Suddenly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Fine", "neutral": "Suddenly"}
|
||||
{"contradiction": "Oh", "entailment": "OK", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
{"contradiction": "Look", "entailment": "Okay", "neutral": "Naturally"}
|
||||
{"contradiction": "Heck", "entailment": "YES", "neutral": "Why"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "Sadly"}
|
||||
{"contradiction": "NO", "entailment": "Absolutely", "neutral": "Man"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Suddenly"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "Outside"}
|
||||
{"contradiction": "Inside", "entailment": "There", "neutral": "Outside"}
|
||||
{"contradiction": "NO", "entailment": "Fine", "neutral": "Man"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Suddenly"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "And"}
|
||||
{"contradiction": "NO", "entailment": "Absolutely", "neutral": "Man"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Suddenly"}
|
||||
{"contradiction": "Maybe", "entailment": "YES", "neutral": "Suddenly"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Essentially"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "This"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Heck", "entailment": "YES", "neutral": "Essentially"}
|
||||
{"contradiction": "Plus", "entailment": "yes", "neutral": "Suddenly"}
|
||||
{"contradiction": "Maybe", "entailment": "Ah", "neutral": "Suddenly"}
|
||||
{"contradiction": "Nah", "entailment": "Okay", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Rather", "entailment": "YES", "neutral": "Specifically"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "Fine", "neutral": "Suddenly"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Specifically"}
|
||||
{"contradiction": "Later", "entailment": "YES", "neutral": "Essentially"}
|
||||
{"contradiction": "Heck", "entailment": "Ok", "neutral": "Essentially"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Yet"}
|
||||
{"contradiction": "Rather", "entailment": "Obviously", "neutral": "Naturally"}
|
||||
{"contradiction": "Maybe", "entailment": "YES", "neutral": "Plus"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Suddenly"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Certainly"}
|
||||
{"contradiction": "Somewhere", "entailment": "yes", "neutral": "Suddenly"}
|
||||
{"contradiction": "Rather", "entailment": "yes", "neutral": "Specifically"}
|
||||
{"contradiction": "Probably", "entailment": "Ok", "neutral": "Ironically"}
|
||||
{"contradiction": "Maybe", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
{"contradiction": "Rather", "entailment": "yes", "neutral": "First"}
|
||||
{"contradiction": "Alas", "entailment": "yes", "neutral": "Somehow"}
|
||||
{"contradiction": "NO", "entailment": "Fine", "neutral": "Man"}
|
||||
{"contradiction": "Alternatively", "entailment": "Thus", "neutral": "This"}
|
||||
{"contradiction": "Ironically", "entailment": "True", "neutral": "Man"}
|
||||
{"contradiction": "Otherwise", "entailment": "Therefore", "neutral": "Suddenly"}
|
||||
{"contradiction": "Later", "entailment": "YES", "neutral": "This"}
|
||||
{"contradiction": "Rather", "entailment": "yes", "neutral": "Somewhere"}
|
||||
{"contradiction": "Oh", "entailment": "OK", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Nah", "entailment": "yes", "neutral": "Beware"}
|
||||
{"contradiction": "Next", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
{"contradiction": "Plus", "entailment": "YES", "neutral": "Suddenly"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "And"}
|
||||
{"contradiction": "Next", "entailment": "Thus", "neutral": "This"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
{"contradiction": "Plus", "entailment": "yes", "neutral": "Still"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "Basically"}
|
||||
{"contradiction": "Sometimes", "entailment": "YES", "neutral": "And"}
|
||||
{"contradiction": "Heck", "entailment": "Ok", "neutral": "Suddenly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ok", "neutral": "This"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Suddenly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ok", "neutral": "Somewhere"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Ironically"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Sadly"}
|
||||
{"contradiction": "Otherwise", "entailment": "Ok", "neutral": "Specifically"}
|
||||
{"contradiction": "But", "entailment": "YES", "neutral": "This"}
|
||||
{"contradiction": "Maybe", "entailment": "YES", "neutral": "Specifically"}
|
||||
{"contradiction": "Yet", "entailment": "YES", "neutral": "Why"}
|
||||
{"contradiction": "Outside", "entailment": "Absolutely", "neutral": "Man"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Yet"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Man"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Next", "entailment": "Ok", "neutral": "Somewhere"}
|
||||
{"contradiction": "Ironically", "entailment": "YES", "neutral": "Suddenly"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "Somewhere"}
|
||||
{"contradiction": "Then", "entailment": "YES", "neutral": "Somewhere"}
|
||||
{"contradiction": "Ironically", "entailment": "True", "neutral": "This"}
|
||||
{"contradiction": "Next", "entailment": "Ok", "neutral": "This"}
|
||||
{"contradiction": "Look", "entailment": "Okay", "neutral": "Naturally"}
|
||||
{"contradiction": "Later", "entailment": "Thus", "neutral": "This"}
|
||||
{"contradiction": "Probably", "entailment": "Ok", "neutral": "Beware"}
|
||||
{"contradiction": "Alas", "entailment": "YES", "neutral": "Somehow"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Somewhere"}
|
||||
{"contradiction": "Heck", "entailment": "yes", "neutral": "Somehow"}
|
||||
{"contradiction": "Otherwise", "entailment": "yes", "neutral": "Somewhere"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "But"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "This"}
|
||||
{"contradiction": "Nah", "entailment": "Ok", "neutral": "Beware"}
|
||||
{"contradiction": "Rather", "entailment": "Ok", "neutral": "Specifically"}
|
||||
{"contradiction": "Normally", "entailment": "YES", "neutral": "This"}
|
||||
{"contradiction": "Heck", "entailment": "YES", "neutral": "Why"}
|
||||
{"contradiction": "Later", "entailment": "Essentially", "neutral": "This"}
|
||||
{"contradiction": "Nah", "entailment": "Hey", "neutral": "Surprisingly"}
|
||||
{"contradiction": "Nah", "entailment": "Okay", "neutral": "Naturally"}
|
||||
{"contradiction": "Nah", "entailment": "Okay", "neutral": "Interestingly"}
|
||||
{"contradiction": "Nah", "entailment": "Okay", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Interestingly"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Man"}
|
||||
{"contradiction": "Otherwise", "entailment": "yes", "neutral": "Suddenly"}
|
||||
{"contradiction": "Otherwise", "entailment": "YES", "neutral": "Why"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Plus"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "Today"}
|
||||
{"contradiction": "Heck", "entailment": "yes", "neutral": "Man"}
|
||||
{"contradiction": "Otherwise", "entailment": "True", "neutral": "This"}
|
||||
{"contradiction": "Ironically", "entailment": "YES", "neutral": "Man"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "Outside"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "Essentially"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "This"}
|
||||
{"contradiction": "Inside", "entailment": "There", "neutral": "Outside"}
|
||||
{"contradiction": "Perhaps", "entailment": "YES", "neutral": "Hello"}
|
||||
{"contradiction": "Nope", "entailment": "Yeah", "neutral": "Sadly"}
|
||||
{"contradiction": "Oh", "entailment": "Okay", "neutral": "Why"}
|
|
@ -0,0 +1,100 @@
|
|||
0.87500 {"contradiction": "Plus", "entailment": "Sometimes", "neutral": "Probably"}
|
||||
0.85417 {"contradiction": "Second", "entailment": "Thus", "neutral": "Likely"}
|
||||
0.85417 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Maybe"}
|
||||
0.85417 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Basically"}
|
||||
0.83333 {"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Presumably"}
|
||||
0.83333 {"contradiction": "Heck", "entailment": "Sure", "neutral": "Surely"}
|
||||
0.83333 {"contradiction": "Next", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
0.83333 {"contradiction": "Next", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
0.83333 {"contradiction": "Likewise", "entailment": "Normally", "neutral": "Likely"}
|
||||
0.83333 {"contradiction": "Later", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
0.83333 {"contradiction": "And", "entailment": "There", "neutral": "Possibly"}
|
||||
0.83333 {"contradiction": "Plus", "entailment": "There", "neutral": "Possibly"}
|
||||
0.83333 {"contradiction": "Heck", "entailment": "Sure", "neutral": "Maybe"}
|
||||
0.83333 {"contradiction": "Likewise", "entailment": "yes", "neutral": "Likely"}
|
||||
0.83333 {"contradiction": "Plus", "entailment": "Sometimes", "neutral": "Hopefully"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Probably"}
|
||||
0.81250 {"contradiction": "Plus", "entailment": "Sometimes", "neutral": "Maybe"}
|
||||
0.81250 {"contradiction": "Second", "entailment": "Normally", "neutral": "Mostly"}
|
||||
0.81250 {"contradiction": "Worse", "entailment": "Fine", "neutral": "Thankfully"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Presumably"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Probably"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Specifically"}
|
||||
0.81250 {"contradiction": "Second", "entailment": "Exactly", "neutral": "Likely"}
|
||||
0.81250 {"contradiction": "Second", "entailment": "Therefore", "neutral": "Likely"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "So", "neutral": "Clearly"}
|
||||
0.81250 {"contradiction": "Plus", "entailment": "There", "neutral": "Sadly"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Sure", "neutral": "Probably"}
|
||||
0.81250 {"contradiction": "Second", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
0.81250 {"contradiction": "Below", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
0.81250 {"contradiction": "Later", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
0.81250 {"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Hopefully"}
|
||||
0.81250 {"contradiction": "Worse", "entailment": "Fine", "neutral": "Hopefully"}
|
||||
0.81250 {"contradiction": "Inside", "entailment": "There", "neutral": "Hopefully"}
|
||||
0.81250 {"contradiction": "Instead", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
0.81250 {"contradiction": "Next", "entailment": "Suddenly", "neutral": "Hopefully"}
|
||||
0.81250 {"contradiction": "And", "entailment": "Again", "neutral": "Presumably"}
|
||||
0.81250 {"contradiction": "Next", "entailment": "YES", "neutral": "Probably"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Maybe"}
|
||||
0.79167 {"contradiction": "Likewise", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
0.79167 {"contradiction": "Likewise", "entailment": "Exactly", "neutral": "Likely"}
|
||||
0.79167 {"contradiction": "Furthermore", "entailment": "Therefore", "neutral": "Likely"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Sure", "neutral": "Presumably"}
|
||||
0.79167 {"contradiction": "Worse", "entailment": "Therefore", "neutral": "Mostly"}
|
||||
0.79167 {"contradiction": "Next", "entailment": "Sure", "neutral": "Perhaps"}
|
||||
0.79167 {"contradiction": "Otherwise", "entailment": "Normally", "neutral": "Definitely"}
|
||||
0.79167 {"contradiction": "Likewise", "entailment": "Normally", "neutral": "Ironically"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Perhaps"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Sure", "neutral": "Clearly"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Wow", "neutral": "Clearly"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Perhaps"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "Indeed", "neutral": "Presumably"}
|
||||
0.79167 {"contradiction": "Inside", "entailment": "Today", "neutral": "Probably"}
|
||||
0.79167 {"contradiction": "Worse", "entailment": "Fine", "neutral": "Luckily"}
|
||||
0.79167 {"contradiction": "Worse", "entailment": "Fine", "neutral": "Exactly"}
|
||||
0.79167 {"contradiction": "Heck", "entailment": "YES", "neutral": "Hopefully"}
|
||||
0.79167 {"contradiction": "Then", "entailment": "Sure", "neutral": "Clearly"}
|
||||
0.79167 {"contradiction": "Meanwhile", "entailment": "So", "neutral": "Probably"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Thus", "neutral": "Likely"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Therefore", "neutral": "Likely"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Normally", "neutral": "Sadly"}
|
||||
0.77083 {"contradiction": "Inside", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Normally", "neutral": "Mostly"}
|
||||
0.77083 {"contradiction": "Heck", "entailment": "Sure", "neutral": "Probably"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Therefore", "neutral": "Sadly"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Sometimes", "neutral": "Sadly"}
|
||||
0.77083 {"contradiction": "Next", "entailment": "So", "neutral": "Perhaps"}
|
||||
0.77083 {"contradiction": "Alternatively", "entailment": "Fine", "neutral": "Typically"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "True", "neutral": "Likely"}
|
||||
0.77083 {"contradiction": "And", "entailment": "There", "neutral": "Likely"}
|
||||
0.77083 {"contradiction": "Moreover", "entailment": "Therefore", "neutral": "Likely"}
|
||||
0.77083 {"contradiction": "Plus", "entailment": "Still", "neutral": "Possibly"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Eventually", "neutral": "Likely"}
|
||||
0.77083 {"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Hopefully"}
|
||||
0.77083 {"contradiction": "Second", "entailment": "Normally", "neutral": "Sadly"}
|
||||
0.77083 {"contradiction": "Likewise", "entailment": "Still", "neutral": "Sadly"}
|
||||
0.75000 {"contradiction": "Alternatively", "entailment": "Usually", "neutral": "Probably"}
|
||||
0.75000 {"contradiction": "Second", "entailment": "Normally", "neutral": "Definitely"}
|
||||
0.75000 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Hopefully"}
|
||||
0.75000 {"contradiction": "Worse", "entailment": "Fine", "neutral": "Alas"}
|
||||
0.75000 {"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
0.75000 {"contradiction": "Plus", "entailment": "Anyway", "neutral": "Probably"}
|
||||
0.72917 {"contradiction": "Moreover", "entailment": "Therefore", "neutral": "Sadly"}
|
||||
0.72917 {"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Probably"}
|
||||
0.72917 {"contradiction": "Otherwise", "entailment": "Usually", "neutral": "Presumably"}
|
||||
0.72917 {"contradiction": "Later", "entailment": "Sometimes", "neutral": "Sadly"}
|
||||
0.72917 {"contradiction": "Likewise", "entailment": "Suddenly", "neutral": "Thankfully"}
|
||||
0.72917 {"contradiction": "Heck", "entailment": "Sure", "neutral": "Hopefully"}
|
||||
0.72917 {"contradiction": "Likewise", "entailment": "True", "neutral": "Sadly"}
|
||||
0.72917 {"contradiction": "Furthermore", "entailment": "Normally", "neutral": "Definitely"}
|
||||
0.72917 {"contradiction": "Likewise", "entailment": "Still", "neutral": "Likely"}
|
||||
0.72917 {"contradiction": "Plus", "entailment": "Still", "neutral": "Thankfully"}
|
||||
0.72917 {"contradiction": "Likewise", "entailment": "Currently", "neutral": "Likely"}
|
||||
0.70833 {"contradiction": "Moreover", "entailment": "Normally", "neutral": "Definitely"}
|
||||
0.70833 {"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
0.70833 {"contradiction": "Likewise", "entailment": "Normally", "neutral": "Definitely"}
|
||||
0.70833 {"contradiction": "Worse", "entailment": "Fine", "neutral": "Definitely"}
|
||||
0.70833 {"contradiction": "Otherwise", "entailment": "Normally", "neutral": "Mostly"}
|
||||
0.68750 {"contradiction": "Worse", "entailment": "True", "neutral": "Definitely"}
|
||||
0.66667 {"contradiction": "Likewise", "entailment": "Normally", "neutral": "Unfortunately"}
|
||||
0.66667 {"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Thankfully"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Plus", "entailment": "Sometimes", "neutral": "Probably"}
|
||||
{"contradiction": "Second", "entailment": "Thus", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Maybe"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Basically"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Presumably"}
|
||||
{"contradiction": "Heck", "entailment": "Sure", "neutral": "Surely"}
|
||||
{"contradiction": "Next", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "Next", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Likely"}
|
||||
{"contradiction": "Later", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "And", "entailment": "There", "neutral": "Possibly"}
|
||||
{"contradiction": "Plus", "entailment": "There", "neutral": "Possibly"}
|
||||
{"contradiction": "Heck", "entailment": "Sure", "neutral": "Maybe"}
|
||||
{"contradiction": "Likewise", "entailment": "yes", "neutral": "Likely"}
|
||||
{"contradiction": "Plus", "entailment": "Sometimes", "neutral": "Hopefully"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Plus", "entailment": "Sometimes", "neutral": "Maybe"}
|
||||
{"contradiction": "Second", "entailment": "Normally", "neutral": "Mostly"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Thankfully"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Presumably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Probably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Specifically"}
|
||||
{"contradiction": "Second", "entailment": "Exactly", "neutral": "Likely"}
|
||||
{"contradiction": "Second", "entailment": "Therefore", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Clearly"}
|
||||
{"contradiction": "Plus", "entailment": "There", "neutral": "Sadly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Sure", "neutral": "Probably"}
|
||||
{"contradiction": "Second", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "Below", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
{"contradiction": "Later", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Hopefully"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Hopefully"}
|
||||
{"contradiction": "Inside", "entailment": "There", "neutral": "Hopefully"}
|
||||
{"contradiction": "Instead", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
{"contradiction": "Next", "entailment": "Suddenly", "neutral": "Hopefully"}
|
||||
{"contradiction": "And", "entailment": "Again", "neutral": "Presumably"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "Probably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Maybe"}
|
||||
{"contradiction": "Likewise", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "Likewise", "entailment": "Exactly", "neutral": "Likely"}
|
||||
{"contradiction": "Furthermore", "entailment": "Therefore", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Sure", "neutral": "Presumably"}
|
||||
{"contradiction": "Worse", "entailment": "Therefore", "neutral": "Mostly"}
|
||||
{"contradiction": "Next", "entailment": "Sure", "neutral": "Perhaps"}
|
||||
{"contradiction": "Otherwise", "entailment": "Normally", "neutral": "Definitely"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Ironically"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Perhaps"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Sure", "neutral": "Clearly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Wow", "neutral": "Clearly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Perhaps"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Indeed", "neutral": "Presumably"}
|
||||
{"contradiction": "Inside", "entailment": "Today", "neutral": "Probably"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Luckily"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Exactly"}
|
||||
{"contradiction": "Heck", "entailment": "YES", "neutral": "Hopefully"}
|
||||
{"contradiction": "Then", "entailment": "Sure", "neutral": "Clearly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Probably"}
|
||||
{"contradiction": "Likewise", "entailment": "Thus", "neutral": "Likely"}
|
||||
{"contradiction": "Likewise", "entailment": "Therefore", "neutral": "Likely"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Sadly"}
|
||||
{"contradiction": "Inside", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Mostly"}
|
||||
{"contradiction": "Heck", "entailment": "Sure", "neutral": "Probably"}
|
||||
{"contradiction": "Likewise", "entailment": "Therefore", "neutral": "Sadly"}
|
||||
{"contradiction": "Likewise", "entailment": "Sometimes", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Perhaps"}
|
||||
{"contradiction": "Alternatively", "entailment": "Fine", "neutral": "Typically"}
|
||||
{"contradiction": "Likewise", "entailment": "True", "neutral": "Likely"}
|
||||
{"contradiction": "And", "entailment": "There", "neutral": "Likely"}
|
||||
{"contradiction": "Moreover", "entailment": "Therefore", "neutral": "Likely"}
|
||||
{"contradiction": "Plus", "entailment": "Still", "neutral": "Possibly"}
|
||||
{"contradiction": "Likewise", "entailment": "Eventually", "neutral": "Likely"}
|
||||
{"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Hopefully"}
|
||||
{"contradiction": "Second", "entailment": "Normally", "neutral": "Sadly"}
|
||||
{"contradiction": "Likewise", "entailment": "Still", "neutral": "Sadly"}
|
||||
{"contradiction": "Alternatively", "entailment": "Usually", "neutral": "Probably"}
|
||||
{"contradiction": "Second", "entailment": "Normally", "neutral": "Definitely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Hopefully"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Alas"}
|
||||
{"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "Plus", "entailment": "Anyway", "neutral": "Probably"}
|
||||
{"contradiction": "Moreover", "entailment": "Therefore", "neutral": "Sadly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Usually", "neutral": "Presumably"}
|
||||
{"contradiction": "Later", "entailment": "Sometimes", "neutral": "Sadly"}
|
||||
{"contradiction": "Likewise", "entailment": "Suddenly", "neutral": "Thankfully"}
|
||||
{"contradiction": "Heck", "entailment": "Sure", "neutral": "Hopefully"}
|
||||
{"contradiction": "Likewise", "entailment": "True", "neutral": "Sadly"}
|
||||
{"contradiction": "Furthermore", "entailment": "Normally", "neutral": "Definitely"}
|
||||
{"contradiction": "Likewise", "entailment": "Still", "neutral": "Likely"}
|
||||
{"contradiction": "Plus", "entailment": "Still", "neutral": "Thankfully"}
|
||||
{"contradiction": "Likewise", "entailment": "Currently", "neutral": "Likely"}
|
||||
{"contradiction": "Moreover", "entailment": "Normally", "neutral": "Definitely"}
|
||||
{"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Definitely"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Definitely"}
|
||||
{"contradiction": "Otherwise", "entailment": "Normally", "neutral": "Mostly"}
|
||||
{"contradiction": "Worse", "entailment": "True", "neutral": "Definitely"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Thankfully"}
|
|
@ -0,0 +1,100 @@
|
|||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Probably"}
|
||||
{"contradiction": "Likewise", "entailment": "Thus", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Presumably"}
|
||||
{"contradiction": "Second", "entailment": "Thus", "neutral": "Likely"}
|
||||
{"contradiction": "Moreover", "entailment": "Normally", "neutral": "Definitely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Maybe"}
|
||||
{"contradiction": "Plus", "entailment": "Sometimes", "neutral": "Probably"}
|
||||
{"contradiction": "Likewise", "entailment": "Therefore", "neutral": "Likely"}
|
||||
{"contradiction": "Heck", "entailment": "Sure", "neutral": "Surely"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Sadly"}
|
||||
{"contradiction": "Likewise", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "Plus", "entailment": "Sometimes", "neutral": "Maybe"}
|
||||
{"contradiction": "Next", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "Likewise", "entailment": "Exactly", "neutral": "Likely"}
|
||||
{"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
{"contradiction": "Next", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Likely"}
|
||||
{"contradiction": "Second", "entailment": "Normally", "neutral": "Mostly"}
|
||||
{"contradiction": "Moreover", "entailment": "Therefore", "neutral": "Sadly"}
|
||||
{"contradiction": "Furthermore", "entailment": "Therefore", "neutral": "Likely"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Thankfully"}
|
||||
{"contradiction": "Inside", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Presumably"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Definitely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Probably"}
|
||||
{"contradiction": "Later", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Specifically"}
|
||||
{"contradiction": "Heck", "entailment": "Sure", "neutral": "Probably"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Mostly"}
|
||||
{"contradiction": "Likewise", "entailment": "Therefore", "neutral": "Sadly"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Definitely"}
|
||||
{"contradiction": "Second", "entailment": "Exactly", "neutral": "Likely"}
|
||||
{"contradiction": "Second", "entailment": "Therefore", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Sure", "neutral": "Presumably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Probably"}
|
||||
{"contradiction": "And", "entailment": "There", "neutral": "Possibly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Maybe"}
|
||||
{"contradiction": "Worse", "entailment": "Therefore", "neutral": "Mostly"}
|
||||
{"contradiction": "Alternatively", "entailment": "Usually", "neutral": "Probably"}
|
||||
{"contradiction": "Plus", "entailment": "There", "neutral": "Possibly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Clearly"}
|
||||
{"contradiction": "Next", "entailment": "Sure", "neutral": "Perhaps"}
|
||||
{"contradiction": "Otherwise", "entailment": "Usually", "neutral": "Presumably"}
|
||||
{"contradiction": "Likewise", "entailment": "Sometimes", "neutral": "Sadly"}
|
||||
{"contradiction": "Later", "entailment": "Sometimes", "neutral": "Sadly"}
|
||||
{"contradiction": "Plus", "entailment": "There", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "So", "neutral": "Perhaps"}
|
||||
{"contradiction": "Alternatively", "entailment": "Fine", "neutral": "Typically"}
|
||||
{"contradiction": "Likewise", "entailment": "Suddenly", "neutral": "Thankfully"}
|
||||
{"contradiction": "Second", "entailment": "Normally", "neutral": "Definitely"}
|
||||
{"contradiction": "Otherwise", "entailment": "Normally", "neutral": "Definitely"}
|
||||
{"contradiction": "Worse", "entailment": "True", "neutral": "Definitely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Sure", "neutral": "Probably"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Ironically"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Again", "neutral": "Basically"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Perhaps"}
|
||||
{"contradiction": "Heck", "entailment": "Sure", "neutral": "Maybe"}
|
||||
{"contradiction": "Heck", "entailment": "Sure", "neutral": "Hopefully"}
|
||||
{"contradiction": "Likewise", "entailment": "True", "neutral": "Sadly"}
|
||||
{"contradiction": "Likewise", "entailment": "True", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Sure", "neutral": "Clearly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Hopefully"}
|
||||
{"contradiction": "Second", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "And", "entailment": "There", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Wow", "neutral": "Clearly"}
|
||||
{"contradiction": "Likewise", "entailment": "yes", "neutral": "Likely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Finally", "neutral": "Perhaps"}
|
||||
{"contradiction": "Below", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
{"contradiction": "Later", "entailment": "Suddenly", "neutral": "Possibly"}
|
||||
{"contradiction": "Moreover", "entailment": "Therefore", "neutral": "Likely"}
|
||||
{"contradiction": "Furthermore", "entailment": "Normally", "neutral": "Definitely"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Indeed", "neutral": "Presumably"}
|
||||
{"contradiction": "Likewise", "entailment": "Normally", "neutral": "Unfortunately"}
|
||||
{"contradiction": "Inside", "entailment": "Today", "neutral": "Probably"}
|
||||
{"contradiction": "Meanwhile", "entailment": "Right", "neutral": "Hopefully"}
|
||||
{"contradiction": "Plus", "entailment": "Sometimes", "neutral": "Hopefully"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Alas"}
|
||||
{"contradiction": "Plus", "entailment": "Still", "neutral": "Possibly"}
|
||||
{"contradiction": "Likewise", "entailment": "Still", "neutral": "Likely"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Luckily"}
|
||||
{"contradiction": "Plus", "entailment": "Still", "neutral": "Thankfully"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Hopefully"}
|
||||
{"contradiction": "Inside", "entailment": "There", "neutral": "Hopefully"}
|
||||
{"contradiction": "Worse", "entailment": "Fine", "neutral": "Exactly"}
|
||||
{"contradiction": "Likewise", "entailment": "Eventually", "neutral": "Likely"}
|
||||
{"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Thankfully"}
|
||||
{"contradiction": "Instead", "entailment": "Yeah", "neutral": "Apparently"}
|
||||
{"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Hopefully"}
|
||||
{"contradiction": "Plus", "entailment": "Suddenly", "neutral": "Likely"}
|
||||
{"contradiction": "Next", "entailment": "Suddenly", "neutral": "Hopefully"}
|
||||
{"contradiction": "And", "entailment": "Again", "neutral": "Presumably"}
|
||||
{"contradiction": "Likewise", "entailment": "Currently", "neutral": "Likely"}
|
||||
{"contradiction": "Heck", "entailment": "YES", "neutral": "Hopefully"}
|
||||
{"contradiction": "Second", "entailment": "Normally", "neutral": "Sadly"}
|
||||
{"contradiction": "Then", "entailment": "Sure", "neutral": "Clearly"}
|
||||
{"contradiction": "Meanwhile", "entailment": "So", "neutral": "Probably"}
|
||||
{"contradiction": "Otherwise", "entailment": "Normally", "neutral": "Mostly"}
|
||||
{"contradiction": "Likewise", "entailment": "Still", "neutral": "Sadly"}
|
||||
{"contradiction": "Next", "entailment": "YES", "neutral": "Probably"}
|
||||
{"contradiction": "Plus", "entailment": "Anyway", "neutral": "Probably"}
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче