├── 1.install.ipynb ├── 10.trainer.ipynb ├── 11.中文分类_CUDA.ipynb ├── 2.tokenizer.ipynb ├── 3.datasets.ipynb ├── 4.metrics.ipynb ├── 5.pipeline.ipynb ├── 7.中文分类.ipynb ├── 8.中文填空.ipynb ├── 9.中文句子关系推断.ipynb ├── README.md └── data ├── ChnSentiCorp.csv ├── ChnSentiCorp.json ├── ChnSentiCorp ├── dataset_dict.json ├── test │ ├── dataset.arrow │ ├── dataset_info.json │ └── state.json ├── train │ ├── cache-0084b6a003b57879.arrow │ ├── cache-031d440ab9e33a06.arrow │ ├── cache-0857ea564c515b0e.arrow │ ├── cache-3bdb9443d1ca0706.arrow │ ├── cache-42a7d570466d6993.arrow │ ├── cache-44d7a63777df645d.arrow │ ├── cache-48d4ee361a26037d.arrow │ ├── cache-5f0103e1539f639b.arrow │ ├── cache-6df40d16e37a8a53.arrow │ ├── cache-8128b85625642026.arrow │ ├── cache-980049a695f6628c.arrow │ ├── cache-a6ab41ffbc1946d5.arrow │ ├── cache-c0614c09b7c97d80.arrow │ ├── cache-c15802113fb68285.arrow │ ├── cache-c5b262546ff026fd.arrow │ ├── cache-cf91738b45b54198.arrow │ ├── cache-eed9b110db2a43fb.arrow │ ├── cache-f6a0b1347879d84e.arrow │ ├── dataset.arrow │ ├── dataset_info.json │ └── state.json └── validation │ ├── dataset.arrow │ ├── dataset_info.json │ └── state.json └── glue_sst2 ├── dataset_dict.json ├── test ├── cache-0710d5088cfae21a.arrow ├── cache-524ecec34978f89b.arrow ├── cache-57288efb5fa03946.arrow ├── cache-632228277b828dc1.arrow ├── cache-764b7f7882a99b5e.arrow ├── cache-86844412c2345cce.arrow ├── cache-87319ea4f4e6236d.arrow ├── cache-fd22071d68ee727d.arrow ├── dataset.arrow ├── dataset_info.json └── state.json ├── train ├── cache-0b32e00a0d7a3a56.arrow ├── cache-0ba0364f53072715.arrow ├── cache-1ed23f922c46423b.arrow ├── cache-274af1ca9c656339.arrow ├── cache-2ec7c1a5c02800e4.arrow ├── cache-7aa524f603792fd9.arrow ├── cache-7f68cb7d2700841c.arrow ├── cache-827155e4d83ebe3c.arrow ├── cache-890424ad8ed86a19.arrow ├── cache-8cfcfd522c905812.arrow ├── cache-b3e205139be224a8.arrow ├── cache-b438a98f3328006e.arrow ├── cache-de855cf12202060d.arrow ├── cache-ee77975016a163cc.arrow ├── cache-f7f097aa0ca823e7.arrow ├── dataset.arrow ├── dataset_info.json └── state.json └── validation ├── cache-0632a4a049eb69f4.arrow ├── cache-0a0b01f98a68ed20.arrow ├── cache-19c0eb5c633b3956.arrow ├── cache-1de25e78c7da64ff.arrow ├── cache-2fb35a5f1cc316c4.arrow ├── cache-5178fbd18742acc9.arrow ├── cache-620f9bf015596baf.arrow ├── cache-6362a30151b5e959.arrow ├── cache-ac073079d82bc5a2.arrow ├── cache-c12ee0dcdd0ed058.arrow ├── cache-c55ae83ee610d88f.arrow ├── cache-c8408139568ba8e5.arrow ├── cache-d875b500ab95f9f5.arrow ├── cache-db6c7e8ba2caea9e.arrow ├── cache-f7f25a94b8aafa52.arrow ├── dataset.arrow ├── dataset_info.json └── state.json /1.install.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/1.install.ipynb -------------------------------------------------------------------------------- /10.trainer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/10.trainer.ipynb -------------------------------------------------------------------------------- /11.中文分类_CUDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/11.中文分类_CUDA.ipynb -------------------------------------------------------------------------------- /2.tokenizer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/2.tokenizer.ipynb -------------------------------------------------------------------------------- /3.datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/3.datasets.ipynb -------------------------------------------------------------------------------- /4.metrics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/4.metrics.ipynb -------------------------------------------------------------------------------- /5.pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/5.pipeline.ipynb -------------------------------------------------------------------------------- /7.中文分类.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/7.中文分类.ipynb -------------------------------------------------------------------------------- /8.中文填空.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/8.中文填空.ipynb -------------------------------------------------------------------------------- /9.中文句子关系推断.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/9.中文句子关系推断.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/README.md -------------------------------------------------------------------------------- /data/ChnSentiCorp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp.csv -------------------------------------------------------------------------------- /data/ChnSentiCorp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp.json -------------------------------------------------------------------------------- /data/ChnSentiCorp/dataset_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/dataset_dict.json -------------------------------------------------------------------------------- /data/ChnSentiCorp/test/dataset.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/test/dataset.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/test/dataset_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/test/dataset_info.json -------------------------------------------------------------------------------- /data/ChnSentiCorp/test/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/test/state.json -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-0084b6a003b57879.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-0084b6a003b57879.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-031d440ab9e33a06.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-031d440ab9e33a06.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-0857ea564c515b0e.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-0857ea564c515b0e.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-3bdb9443d1ca0706.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-3bdb9443d1ca0706.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-42a7d570466d6993.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-42a7d570466d6993.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-44d7a63777df645d.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-44d7a63777df645d.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-48d4ee361a26037d.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-48d4ee361a26037d.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-5f0103e1539f639b.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-5f0103e1539f639b.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-6df40d16e37a8a53.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-6df40d16e37a8a53.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-8128b85625642026.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-8128b85625642026.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-980049a695f6628c.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-980049a695f6628c.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-a6ab41ffbc1946d5.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-a6ab41ffbc1946d5.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-c0614c09b7c97d80.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-c0614c09b7c97d80.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-c15802113fb68285.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-c15802113fb68285.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-c5b262546ff026fd.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-c5b262546ff026fd.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-cf91738b45b54198.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-cf91738b45b54198.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-eed9b110db2a43fb.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-eed9b110db2a43fb.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/cache-f6a0b1347879d84e.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/cache-f6a0b1347879d84e.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/dataset.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/dataset.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/dataset_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/dataset_info.json -------------------------------------------------------------------------------- /data/ChnSentiCorp/train/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/train/state.json -------------------------------------------------------------------------------- /data/ChnSentiCorp/validation/dataset.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/validation/dataset.arrow -------------------------------------------------------------------------------- /data/ChnSentiCorp/validation/dataset_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/validation/dataset_info.json -------------------------------------------------------------------------------- /data/ChnSentiCorp/validation/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/ChnSentiCorp/validation/state.json -------------------------------------------------------------------------------- /data/glue_sst2/dataset_dict.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/dataset_dict.json -------------------------------------------------------------------------------- /data/glue_sst2/test/cache-0710d5088cfae21a.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/cache-0710d5088cfae21a.arrow -------------------------------------------------------------------------------- /data/glue_sst2/test/cache-524ecec34978f89b.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/cache-524ecec34978f89b.arrow -------------------------------------------------------------------------------- /data/glue_sst2/test/cache-57288efb5fa03946.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/cache-57288efb5fa03946.arrow -------------------------------------------------------------------------------- /data/glue_sst2/test/cache-632228277b828dc1.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/cache-632228277b828dc1.arrow -------------------------------------------------------------------------------- /data/glue_sst2/test/cache-764b7f7882a99b5e.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/cache-764b7f7882a99b5e.arrow -------------------------------------------------------------------------------- /data/glue_sst2/test/cache-86844412c2345cce.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/cache-86844412c2345cce.arrow -------------------------------------------------------------------------------- /data/glue_sst2/test/cache-87319ea4f4e6236d.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/cache-87319ea4f4e6236d.arrow -------------------------------------------------------------------------------- /data/glue_sst2/test/cache-fd22071d68ee727d.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/cache-fd22071d68ee727d.arrow -------------------------------------------------------------------------------- /data/glue_sst2/test/dataset.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/dataset.arrow -------------------------------------------------------------------------------- /data/glue_sst2/test/dataset_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/dataset_info.json -------------------------------------------------------------------------------- /data/glue_sst2/test/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/test/state.json -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-0b32e00a0d7a3a56.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-0b32e00a0d7a3a56.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-0ba0364f53072715.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-0ba0364f53072715.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-1ed23f922c46423b.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-1ed23f922c46423b.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-274af1ca9c656339.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-274af1ca9c656339.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-2ec7c1a5c02800e4.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-2ec7c1a5c02800e4.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-7aa524f603792fd9.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-7aa524f603792fd9.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-7f68cb7d2700841c.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-7f68cb7d2700841c.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-827155e4d83ebe3c.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-827155e4d83ebe3c.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-890424ad8ed86a19.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-890424ad8ed86a19.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-8cfcfd522c905812.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-8cfcfd522c905812.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-b3e205139be224a8.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-b3e205139be224a8.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-b438a98f3328006e.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-b438a98f3328006e.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-de855cf12202060d.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-de855cf12202060d.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-ee77975016a163cc.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-ee77975016a163cc.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/cache-f7f097aa0ca823e7.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/cache-f7f097aa0ca823e7.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/dataset.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/dataset.arrow -------------------------------------------------------------------------------- /data/glue_sst2/train/dataset_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/dataset_info.json -------------------------------------------------------------------------------- /data/glue_sst2/train/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/train/state.json -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-0632a4a049eb69f4.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-0632a4a049eb69f4.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-0a0b01f98a68ed20.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-0a0b01f98a68ed20.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-19c0eb5c633b3956.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-19c0eb5c633b3956.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-1de25e78c7da64ff.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-1de25e78c7da64ff.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-2fb35a5f1cc316c4.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-2fb35a5f1cc316c4.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-5178fbd18742acc9.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-5178fbd18742acc9.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-620f9bf015596baf.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-620f9bf015596baf.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-6362a30151b5e959.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-6362a30151b5e959.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-ac073079d82bc5a2.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-ac073079d82bc5a2.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-c12ee0dcdd0ed058.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-c12ee0dcdd0ed058.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-c55ae83ee610d88f.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-c55ae83ee610d88f.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-c8408139568ba8e5.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-c8408139568ba8e5.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-d875b500ab95f9f5.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-d875b500ab95f9f5.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-db6c7e8ba2caea9e.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-db6c7e8ba2caea9e.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/cache-f7f25a94b8aafa52.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/cache-f7f25a94b8aafa52.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/dataset.arrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/dataset.arrow -------------------------------------------------------------------------------- /data/glue_sst2/validation/dataset_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/dataset_info.json -------------------------------------------------------------------------------- /data/glue_sst2/validation/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lansinuote/Huggingface_Toturials/HEAD/data/glue_sst2/validation/state.json --------------------------------------------------------------------------------