CoolFace
15 shown

datasets

Training and evaluation data, with the modality, task and licence stated up front. Listed live from the Hugging Face Hub.

Clear all
01zai-org /webglm-qa WebGLM-QA Dataset Description WebGLM-QA is the dataset used to train the WebGLM generator module. It consists of 43,579 high-quality data samples for the train split, 1,000 for the validation split, and 400 for the test split. Refer to our paper for the data construction details. Dataset Structure To load the dataset, you can try the following code. from datasets import load_dataset load_dataset("THUDM/webglm-qa") DatasetDict({ train: Dataset({… See the full description on the dataset page: https://huggingface.co/datasets/zai-org/webglm-qa.texttext-generation10K<n<100K65 likes365 downloads3y agoHugging Face02forag /webglm_oetextquestion-answering10K<n<100K0 likes51 downloads3y agoHugging Face03phatvo /THUDM__webglm-qa-test-rafttext1K<n<10K0 likes44 downloads2y agoHugging Face04aqwy1996822 /3dgs-webgl-splat0 likes27 downloads2y agoHugging Face05Felladrin /ChatML-WebGLM-QATHUDM/webglm-qa in ChatML format. Python code used for conversion: from datasets import load_dataset import pandas import re import random from transformers import AutoTokenizer tokenizer = AutoTokenizer.from_pretrained( pretrained_model_name_or_path="Felladrin/Llama-160M-Chat-v1" ) dataset = load_dataset("THUDM/webglm-qa", split="train") def format(columns): references = "\n".join( [ f"- {columns['references'][i].strip()}" for i in… See the full description on the dataset page: https://huggingface.co/datasets/Felladrin/ChatML-WebGLM-QA.textquestion-answering10K<n<100K1 likes26 downloads3y agoHugging Face06KnutJaegersberg /webglm_datasettext10K<n<100K0 likes25 downloads3y agoHugging Face07vietgpt /webglm-qa Dataset Card for "webglm-qa" More Information needed text10K<n<100K0 likes19 downloads3y agoHugging Face08nguyenthanhdo /webglm_vi Dataset Card for "webglm_vi" More Information needed text10K<n<100K0 likes17 downloads3y agoHugging Face09phatvo /THUDM__webglm-qa-train-raft-3textn<1K0 likes16 downloads2y agoHugging Face10Felladrin /pretrain-webglm-qaConversion of THUDM/webglm-qa dataset to be used in pretraining. Python code used for conversion: from datasets import load_dataset import pandas import re dataset = load_dataset("THUDM/webglm-qa", split="train") def format(columns): return re.sub(r'\[\d\]', '', columns["answer"].strip()) pandas.DataFrame({"text": [format(columns) for columns in dataset]}).to_csv("train.csv", index=False) text10K<n<100K0 likes15 downloads3y agoHugging Face11harsh4733 /webglm-harshtext1K<n<10K0 likes12 downloads2y agoHugging Face12phatvo /THUDM__webglm-qa-train-raft-2textn<1K0 likes12 downloads2y agoHugging Face13phatvo /THUDM__webglm-qa-train-rafttextn<1K0 likes11 downloads2y agoHugging Face14BackpropBuff /webglm-qatext10K<n<100K0 likes11 downloads2y agoHugging Face15thangvip /webglm-data-100textn<1K0 likes9 downloads3y agoHugging Face

Listings come live from the Hugging Face Hub API. CoolFace does not host these files.