albertvillanova HF staff gmongaras commited on
Commit
cb2099c
1 Parent(s): fd8e864

Update README.md (#14)

Browse files

- Update README.md (54a107bb9f1e42de36b457b045d8b2ecbcd4afb3)


Co-authored-by: Gabriel Mongaras <gmongaras@users.noreply.huggingface.co>

Files changed (1) hide show
  1. README.md +118 -15
README.md CHANGED
@@ -681,7 +681,7 @@ An example of 'test' looks as follows.
681
  ```
682
  {
683
  "premise": "What have you decided, what are you going to do?",
684
- "hypothesis": "So what's your decision?,
685
  "label": -1,
686
  "idx": 0
687
  }
@@ -689,31 +689,114 @@ An example of 'test' looks as follows.
689
 
690
  #### mrpc
691
 
692
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
693
 
694
  #### qnli
695
 
696
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
697
 
698
  #### qqp
699
 
700
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
701
 
702
  #### rte
703
 
704
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
705
 
706
  #### sst2
707
 
708
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
709
 
710
  #### stsb
711
 
712
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
713
 
714
  #### wnli
715
 
716
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
717
 
718
  ### Data Fields
719
 
@@ -750,31 +833,51 @@ The data fields are the same among all splits.
750
 
751
  #### mrpc
752
 
753
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
754
 
755
  #### qnli
756
 
757
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
758
 
759
  #### qqp
760
 
761
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
762
 
763
  #### rte
764
 
765
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
766
 
767
  #### sst2
768
 
769
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
770
 
771
  #### stsb
772
 
773
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
774
 
775
  #### wnli
776
 
777
- [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
778
 
779
  ### Data Splits
780
 
 
681
  ```
682
  {
683
  "premise": "What have you decided, what are you going to do?",
684
+ "hypothesis": "So what's your decision?",
685
  "label": -1,
686
  "idx": 0
687
  }
 
689
 
690
  #### mrpc
691
 
692
+ - **Size of downloaded dataset files:** ??
693
+ - **Size of the generated dataset:** 1.5 MB
694
+ - **Total amount of disk used:** ??
695
+
696
+ An example of 'train' looks as follows.
697
+ ```
698
+ {
699
+ "sentence1": "Amrozi accused his brother, whom he called "the witness", of deliberately distorting his evidence.",
700
+ "sentence2": "Referring to him as only "the witness", Amrozi accused his brother of deliberately distorting his evidence.",
701
+ "label": 1,
702
+ "idx": 0
703
+ }
704
+ ```
705
 
706
  #### qnli
707
 
708
+ - **Size of downloaded dataset files:** ??
709
+ - **Size of the generated dataset:** 28 MB
710
+ - **Total amount of disk used:** ??
711
+
712
+ An example of 'train' looks as follows.
713
+ ```
714
+ {
715
+ "question": "When did the third Digimon series begin?",
716
+ "sentence": "Unlike the two seasons before it and most of the seasons that followed, Digimon Tamers takes a darker and more realistic approach to its story featuring Digimon who do not reincarnate after their deaths and more complex character development in the original Japanese.",
717
+ "label": 1,
718
+ "idx": 0
719
+ }
720
+ ```
721
 
722
  #### qqp
723
 
724
+ - **Size of downloaded dataset files:** ??
725
+ - **Size of the generated dataset:** 107 MB
726
+ - **Total amount of disk used:** ??
727
+
728
+ An example of 'train' looks as follows.
729
+ ```
730
+ {
731
+ "question1": "How is the life of a math student? Could you describe your own experiences?",
732
+ "question2": "Which level of prepration is enough for the exam jlpt5?",
733
+ "label": 0,
734
+ "idx": 0
735
+ }
736
+ ```
737
 
738
  #### rte
739
 
740
+ - **Size of downloaded dataset files:** ??
741
+ - **Size of the generated dataset:** 1.9 MB
742
+ - **Total amount of disk used:** ??
743
+
744
+ An example of 'train' looks as follows.
745
+ ```
746
+ {
747
+ "sentence1": "No Weapons of Mass Destruction Found in Iraq Yet.",
748
+ "sentence2": "Weapons of Mass Destruction Found in Iraq.",
749
+ "label": 1,
750
+ "idx": 0
751
+ }
752
+ ```
753
 
754
  #### sst2
755
 
756
+ - **Size of downloaded dataset files:** ??
757
+ - **Size of the generated dataset:** 4.9 MB
758
+ - **Total amount of disk used:** ??
759
+
760
+ An example of 'train' looks as follows.
761
+ ```
762
+ {
763
+ "sentence": "hide new secretions from the parental units",
764
+ "label": 0,
765
+ "idx": 0
766
+ }
767
+ ```
768
 
769
  #### stsb
770
 
771
+ - **Size of downloaded dataset files:** ??
772
+ - **Size of the generated dataset:** 1.2 MB
773
+ - **Total amount of disk used:** ??
774
+
775
+ An example of 'train' looks as follows.
776
+ ```
777
+ {
778
+ "sentence1": "A plane is taking off.",
779
+ "sentence2": "An air plane is taking off.",
780
+ "label": 5.0,
781
+ "idx": 0
782
+ }
783
+ ```
784
 
785
  #### wnli
786
 
787
+ - **Size of downloaded dataset files:** ??
788
+ - **Size of the generated dataset:** 0.18 MB
789
+ - **Total amount of disk used:** ??
790
+
791
+ An example of 'train' looks as follows.
792
+ ```
793
+ {
794
+ "sentence1": "I stuck a pin through a carrot. When I pulled the pin out, it had a hole.",
795
+ "sentence2": "The carrot had a hole.",
796
+ "label": 1,
797
+ "idx": 0
798
+ }
799
+ ```
800
 
801
  ### Data Fields
802
 
 
833
 
834
  #### mrpc
835
 
836
+ - `sentence1`: a `string` feature.
837
+ - `sentence2`: a `string` feature.
838
+ - `label`: a classification label, with possible values including `not_equivalent` (0), `equivalent` (1).
839
+ - `idx`: a `int32` feature.
840
 
841
  #### qnli
842
 
843
+ - `question`: a `string` feature.
844
+ - `sentence`: a `string` feature.
845
+ - `label`: a classification label, with possible values including `entailment` (0), `not_entailment` (1).
846
+ - `idx`: a `int32` feature.
847
 
848
  #### qqp
849
 
850
+ - `question1`: a `string` feature.
851
+ - `question2`: a `string` feature.
852
+ - `label`: a classification label, with possible values including `not_duplicate` (0), `duplicate` (1).
853
+ - `idx`: a `int32` feature.
854
 
855
  #### rte
856
 
857
+ - `sentence1`: a `string` feature.
858
+ - `sentence2`: a `string` feature.
859
+ - `label`: a classification label, with possible values including `entailment` (0), `not_entailment` (1).
860
+ - `idx`: a `int32` feature.
861
 
862
  #### sst2
863
 
864
+ - `sentence`: a `string` feature.
865
+ - `label`: a classification label, with possible values including `negative` (0), `positive` (1).
866
+ - `idx`: a `int32` feature.
867
 
868
  #### stsb
869
 
870
+ - `sentence1`: a `string` feature.
871
+ - `sentence2`: a `string` feature.
872
+ - `label`: a float32 regression label, with possible values from 0 to 5.
873
+ - `idx`: a `int32` feature.
874
 
875
  #### wnli
876
 
877
+ - `sentence1`: a `string` feature.
878
+ - `sentence2`: a `string` feature.
879
+ - `label`: a classification label, with possible values including `not_entailment` (0), `entailment` (1).
880
+ - `idx`: a `int32` feature.
881
 
882
  ### Data Splits
883