CoolFace
30 shown

datasets

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

Clear all
01una-auxme /eval_ROS2SmolVLAThis dataset was created using LeRobot. Dataset Structure meta/info.json: { "codebase_version": "v3.0", "robot_type": "ros2", "total_episodes": 244, "total_frames": 333872, "total_tasks": 5, "chunks_size": 1000, "data_files_size_in_mb": 100, "video_files_size_in_mb": 200, "fps": 30, "splits": { "train": "0:244" }, "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet", "video_path":… See the full description on the dataset page: https://huggingface.co/datasets/una-auxme/eval_ROS2SmolVLA.tabularrobotics100K<n<1M1 likes497 downloads3mo agoHugging Face02una-auxme /ROS2SmolVLA_ur10e_no_joints_crop_pick_placeThis is the training dataset for our ROS2SmolVLA project It was recorded by teleoperation of our UR10e lightweight industrial robot through our ROS2SmolVLA setup utilizing LeRobot. The action space is: "linear_x.vel", "linear_y.vel", "linear_z.vel", "angular_x.vel", "angular_y.vel", "angular_z.vel", "gripper.pos" The observation space is: "pose.x", "pose.y", "pose.z", "pose.quat_x", "pose.quat_y", "pose.quat_z", "pose.quat_w" one 720x720 and two 1280x720 camera streams.… See the full description on the dataset page: https://huggingface.co/datasets/una-auxme/ROS2SmolVLA_ur10e_no_joints_crop_pick_place.tabularrobotics100K<n<1M1 likes294 downloads28d agoHugging Face03MrDen1234567890 /deniz-unay-kurumsal-kesif-v3 Deniz UNAY: kaynaklı keşif ve teklif görüşmesi Bu paket, kurumların eğitim/konuşmacı ihtiyacını Deniz UNAY’ın belgelenmiş deneyimine bağlar; uygun ihtiyaç için teklif görüşmesi taslağı oluşturmayı destekler. Gerçek müşteri talebi, iş garantisi veya eğitilmiş LLM değildir. Başlangıç Keşif için discovery.csv: sekiz hizmetin 16 TR/EN kaydı. RAG için retrieval_documents.csv; kaynakları evidence/claims tablolarıyla birlikte kullanın. Talep sınıflandırması için… See the full description on the dataset page: https://huggingface.co/datasets/MrDen1234567890/deniz-unay-kurumsal-kesif-v3.tabularn<1K0 likes164 downloads7d agoHugging Face04arrg-unam /eval_act_omx_Test1004_00This dataset was created using LeRobot. Dataset Structure meta/info.json: { "codebase_version": "v2.1", "robot_type": "omx_follower", "total_episodes": 50, "total_frames": 19855, "total_tasks": 1, "total_videos": 50, "total_chunks": 1, "chunks_size": 1000, "fps": 30, "splits": { "train": "0:50" }, "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", "video_path":… See the full description on the dataset page: https://huggingface.co/datasets/arrg-unam/eval_act_omx_Test1004_00.tabularrobotics10K<n<100K0 likes119 downloads6mo agoHugging Face05nguyenthanhdo /orca-unanswerable-v2.0from datasets import load_dataset import unicodedata as ud uns = [ "is not mentioned", "insufficient", "not sufficient", "is not provided", "does not provide", "does not mention", "not clear", "not possible", "not enough", "impossible", "not explicitly mentioned" ] def get_uns(example): output = example["response"].lower() output = ud.normalize("NFC", output) flag = False if any([sign in output for sign in uns]): flag = True… See the full description on the dataset page: https://huggingface.co/datasets/nguyenthanhdo/orca-unanswerable-v2.0.tabular10K<n<100K0 likes112 downloads3y agoHugging Face06unaibai /so101_lemon_pickplace_20260907_134148This dataset was created using LeRobot. Dataset Structure meta/info.json: { "codebase_version": "v3.0", "fps": 30, "features": { "action": { "dtype": "float32", "names": [ "shoulder_pan.pos", "shoulder_lift.pos", "elbow_flex.pos", "wrist_flex.pos", "wrist_roll.pos", "gripper.pos" ], "shape": [ 6… See the full description on the dataset page: https://huggingface.co/datasets/unaibai/so101_lemon_pickplace_20260907_134148.tabularrobotics1K<n<10K0 likes71 downloads17d agoHugging Face07nyu-dice-lab /lm-eval-results-unaidedelf87777-wizard-mistral-v0.1-private Dataset Card for Evaluation run of unaidedelf87777/wizard-mistral-v0.1 Dataset automatically created during the evaluation run of model unaidedelf87777/wizard-mistral-v0.1 The dataset is composed of 62 configuration(s), each one corresponding to one of the evaluated task. The dataset has been created from 5 run(s). Each run can be found as a specific split in each configuration, the split being named using the timestamp of the run.The "train" split is always pointing to the… See the full description on the dataset page: https://huggingface.co/datasets/nyu-dice-lab/lm-eval-results-unaidedelf87777-wizard-mistral-v0.1-private.tabular100K<n<1M0 likes61 downloads2y agoHugging Face08dog /unav-100tabular10K<n<100K0 likes53 downloads3y agoHugging Face09MrDen1234567890 /deniz-unay-school-seminar-evidence-media Deniz UNAY – School Seminar & Media Evidence Index A structured provenance index of publicly traceable seminar, institutional and media records associated with Deniz UNAY's work on technology addiction awareness, social media literacy and digital wellbeing in Turkey. Scope This repository is an evidence/provenance index, not an academic study, independent audit, ranking, or endorsement system. It preserves source-reported claims and separates them from… See the full description on the dataset page: https://huggingface.co/datasets/MrDen1234567890/deniz-unay-school-seminar-evidence-media.tabularn<1K0 likes52 downloads3d agoHugging Face10nguyenthanhdo /orca-unanswerable-v2.1 Dataset Card for "orca-unanswerable-v2.1" from datasets import load_dataset from datasets import concatenate_datasets unanswerable = load_dataset("nguyenthanhdo/orca-unanswerable-v2.0") ## this is an english dataset splits = ["long_excuse", "short_excuse"] dss = [] for split in splits: ds = unanswerable[split] ds = ds.add_column("excuse", [split for _ in ds]) dss.append(ds) uns_en2 = concatenate_datasets(dss) def exclude_summ(example): """ It shows that… See the full description on the dataset page: https://huggingface.co/datasets/nguyenthanhdo/orca-unanswerable-v2.1.tabular10K<n<100K0 likes47 downloads3y agoHugging Face11Jongbin-kr /mrqa_unans_prompttabular10K<n<100K0 likes28 downloads2y agoHugging Face12ferMorales /Gaceta_UNAM_BGE_M3 Gaceta UNAM Embeddings (Parquet) Dataset of semantic embeddings for text fragments (chunks) from Gaceta UNAM issues, in Parquet format, ready for vector indexing and RAG workflows. Generated with the BAAI/BGE-M3 model. Summary File: embeddings.parquet Embedding model: BAAI/bge-m3 Records (chunks): 170,424 Unique documents (doc_id): 5,536 Unique chunks (chunk_id): 170,424 Embedding dimension: 1024 Generated at UTC: 2026-02-27T09:24:57.375456+00:00 Time coverage… See the full description on the dataset page: https://huggingface.co/datasets/ferMorales/Gaceta_UNAM_BGE_M3.tabularfeature-extraction100K<n<1M0 likes27 downloads7mo agoHugging Face13math-extraction-comp /Weyaxi__SauerkrautLM-UNA-SOLAR-Instructtabular1K<n<10K0 likes22 downloads2y agoHugging Face14electricsheepafrica /africa-south-africa-unauthorised-irregular-fruitless-and-wasteful-expenditure-c505220d Unauthorised Irregular Fruitless and Wasteful Expenditure | Africa (National Treasury, South Africa) 8,001 rows - 1 Africa country/area - 2023 - source table - Engineered by Electric Sheep Africa TL;DR This dataset contains 8,001 rows from National Treasury, South Africa, covering Unauthorised Irregular Fruitless and Wasteful Expenditure. It is published as ML-ready Parquet with consistent Hugging Face metadata, source provenance, and analysis-friendly… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-south-africa-unauthorised-irregular-fruitless-and-wasteful-expenditure-c505220d.tabulartabular-classification1K<n<10K0 likes21 downloads1mo agoHugging Face15open-llm-leaderboard /fblgit__una-cybertron-7b-v2-bf16-detailsgated Dataset Card for Evaluation run of fblgit/una-cybertron-7b-v2-bf16 Dataset automatically created during the evaluation run of model fblgit/una-cybertron-7b-v2-bf16 The dataset is composed of 38 configuration(s), each one corresponding to one of the evaluated task. The dataset has been created from 1 run(s). Each run can be found as a specific split in each configuration, the split being named using the timestamp of the run.The "train" split is always pointing to the latest… See the full description on the dataset page: https://huggingface.co/datasets/open-llm-leaderboard/fblgit__una-cybertron-7b-v2-bf16-details.tabular10K<n<100K0 likes17 downloads2y agoHugging Face16open-llm-leaderboard /fblgit__cybertron-v4-qw7B-UNAMGS-detailsgated Dataset Card for Evaluation run of fblgit/cybertron-v4-qw7B-UNAMGS Dataset automatically created during the evaluation run of model fblgit/cybertron-v4-qw7B-UNAMGS The dataset is composed of 38 configuration(s), each one corresponding to one of the evaluated task. The dataset has been created from 2 run(s). Each run can be found as a specific split in each configuration, the split being named using the timestamp of the run.The "train" split is always pointing to the latest… See the full description on the dataset page: https://huggingface.co/datasets/open-llm-leaderboard/fblgit__cybertron-v4-qw7B-UNAMGS-details.tabular10K<n<100K0 likes17 downloads2y agoHugging Face17rhesis /Telecom-Chatbot-Data-Privacy-and-Unauthorized-Tracking-Harmful Dataset Card for Data Privacy & Unauthorized Tracking Harmful Description The test set has been created to evaluate the robustness of a telecom chatbot specifically designed for the telecom industry. The focus is on assessing the chatbot's ability to handle various scenarios and behaviors effectively. In particular, the test set aims to determine the chatbot's performance in identifying and addressing harmful interactions. It also evaluates the chatbot's capability of… See the full description on the dataset page: https://huggingface.co/datasets/rhesis/Telecom-Chatbot-Data-Privacy-and-Unauthorized-Tracking-Harmful.tabularn<1K0 likes17 downloads2y agoHugging Face18arrg-unam /Test1004_01This dataset was created using LeRobot. Dataset Structure meta/info.json: { "codebase_version": "v2.1", "robot_type": "omx_follower", "total_episodes": 15, "total_frames": 6458, "total_tasks": 1, "total_videos": 15, "total_chunks": 1, "chunks_size": 1000, "fps": 30, "splits": { "train": "0:15" }, "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", "video_path":… See the full description on the dataset page: https://huggingface.co/datasets/arrg-unam/Test1004_01.tabularrobotics1K<n<10K0 likes17 downloads6mo agoHugging Face19arrg-unam /eval_act_omx_Test1004_01This dataset was created using LeRobot. Dataset Structure meta/info.json: { "codebase_version": "v2.1", "robot_type": "omx_follower", "total_episodes": 50, "total_frames": 15975, "total_tasks": 1, "total_videos": 50, "total_chunks": 1, "chunks_size": 1000, "fps": 30, "splits": { "train": "0:50" }, "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", "video_path":… See the full description on the dataset page: https://huggingface.co/datasets/arrg-unam/eval_act_omx_Test1004_01.tabularrobotics10K<n<100K0 likes16 downloads6mo agoHugging Face20open-llm-leaderboard /fblgit__UNA-TheBeagle-7b-v1-detailsgated Dataset Card for Evaluation run of fblgit/UNA-TheBeagle-7b-v1 Dataset automatically created during the evaluation run of model fblgit/UNA-TheBeagle-7b-v1 The dataset is composed of 38 configuration(s), each one corresponding to one of the evaluated task. The dataset has been created from 1 run(s). Each run can be found as a specific split in each configuration, the split being named using the timestamp of the run.The "train" split is always pointing to the latest results. An… See the full description on the dataset page: https://huggingface.co/datasets/open-llm-leaderboard/fblgit__UNA-TheBeagle-7b-v1-details.tabular10K<n<100K0 likes15 downloads2y agoHugging Face21open-llm-leaderboard /fhai50032__Unaligned-Thinker-PHI-4-detailsgated Dataset Card for Evaluation run of fhai50032/Unaligned-Thinker-PHI-4 Dataset automatically created during the evaluation run of model fhai50032/Unaligned-Thinker-PHI-4 The dataset is composed of 38 configuration(s), each one corresponding to one of the evaluated task. The dataset has been created from 1 run(s). Each run can be found as a specific split in each configuration, the split being named using the timestamp of the run.The "train" split is always pointing to the latest… See the full description on the dataset page: https://huggingface.co/datasets/open-llm-leaderboard/fhai50032__Unaligned-Thinker-PHI-4-details.tabular10K<n<100K0 likes15 downloads2y agoHugging Face22arrg-unam /eval_act_omx_Test1304_00This dataset was created using LeRobot. Dataset Structure meta/info.json: { "codebase_version": "v3.0", "robot_type": "omx_follower", "total_episodes": 50, "total_frames": 16041, "total_tasks": 1, "chunks_size": 1000, "fps": 30, "splits": { "train": "0:50" }, "data_path": "data/chunk-{chunk_index:03d}/file-{file_index:03d}.parquet", "video_path": "videos/{video_key}/chunk-{chunk_index:03d}/file-{file_index:03d}.mp4"… See the full description on the dataset page: https://huggingface.co/datasets/arrg-unam/eval_act_omx_Test1304_00.tabularrobotics10K<n<100K0 likes15 downloads5mo agoHugging Face23electricsheepasia /asia-owid-number-healthy-diet-unaffordable Number Healthy Diet Unaffordable | Asia (Our World in Data) 🌏 288 observations · 36 Asia countries · 2017–2024 · Repackaged by Electric Sheep Asia TL;DR This dataset contains 288 observations of Number Healthy Diet Unaffordable data across 36 Asia countries, spanning 2017–2024. About the source Source: Our World in Data Publisher: Our World in Data License: cc-by-4.0 Topic: Number Healthy Diet Unaffordable Geographic coverage… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepasia/asia-owid-number-healthy-diet-unaffordable.tabulartabular-classificationn<1K0 likes15 downloads4mo agoHugging Face24electricsheepafrica /africa-south-africa-unauthorised-irregular-fruitless-and-wasteful-expenditure-1fda5b18 Unauthorised Irregular Fruitless and Wasteful Expenditure | Africa (National Treasury, South Africa) 8,772 rows - 1 Africa country/area - 2024 - source table - Engineered by Electric Sheep Africa TL;DR This dataset contains 8,772 rows from National Treasury, South Africa, covering Unauthorised Irregular Fruitless and Wasteful Expenditure. It is published as ML-ready Parquet with consistent Hugging Face metadata, source provenance, and analysis-friendly… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepafrica/africa-south-africa-unauthorised-irregular-fruitless-and-wasteful-expenditure-1fda5b18.tabulartabular-classification1K<n<10K0 likes15 downloads1mo agoHugging Face25arrg-unam /Test0804_03This dataset was created using LeRobot. Dataset Structure meta/info.json: { "codebase_version": "v2.1", "robot_type": "omx_follower", "total_episodes": 3, "total_frames": 1546, "total_tasks": 1, "total_videos": 3, "total_chunks": 1, "chunks_size": 1000, "fps": 30, "splits": { "train": "0:3" }, "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", "video_path":… See the full description on the dataset page: https://huggingface.co/datasets/arrg-unam/Test0804_03.tabularrobotics1K<n<10K0 likes14 downloads6mo agoHugging Face26arrg-unam /Test0804_04This dataset was created using LeRobot. Dataset Structure meta/info.json: { "codebase_version": "v2.1", "robot_type": "omx_follower", "total_episodes": 50, "total_frames": 20134, "total_tasks": 1, "total_videos": 50, "total_chunks": 1, "chunks_size": 1000, "fps": 30, "splits": { "train": "0:50" }, "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", "video_path":… See the full description on the dataset page: https://huggingface.co/datasets/arrg-unam/Test0804_04.tabularrobotics10K<n<100K0 likes14 downloads6mo agoHugging Face27arrg-unam /Test0904_01This dataset was created using LeRobot. Dataset Structure meta/info.json: { "codebase_version": "v2.1", "robot_type": "omx_follower", "total_episodes": 49, "total_frames": 23378, "total_tasks": 1, "total_videos": 49, "total_chunks": 1, "chunks_size": 1000, "fps": 30, "splits": { "train": "0:49" }, "data_path": "data/chunk-{episode_chunk:03d}/episode_{episode_index:06d}.parquet", "video_path":… See the full description on the dataset page: https://huggingface.co/datasets/arrg-unam/Test0904_01.tabularrobotics10K<n<100K0 likes13 downloads6mo agoHugging Face28electricsheepeurope /europe-owid-number-calorie-diet-unaffordable Number Calorie Diet Unaffordable | Europe (Our World in Data) 🇪🇺 38 observations · 38 Europe countries · 2021–2021 · Repackaged by Electric Sheep Europe TL;DR This dataset contains 38 observations of Number Calorie Diet Unaffordable data across 38 Europe countries, spanning 2021–2021. About the source Source: Our World in Data Publisher: Our World in Data License: cc-by-4.0 Topic: Number Calorie Diet Unaffordable Geographic… See the full description on the dataset page: https://huggingface.co/datasets/electricsheepeurope/europe-owid-number-calorie-diet-unaffordable.tabulartabular-classificationn<1K0 likes13 downloads4mo agoHugging Face29physicl-test /eval-pack-una-of-my-project-9qfi5p-340bf60d Eval pack una of my Project 9qfi5p Eval pack una of my Project 9qfi5p This dataset mirrors public data-pack render outputs from Physicl. Each row represents one render view. The image column contains a stable URL to the primary render image uploaded under /data; image_path stores the relative repository path and data_commit_sha pins the Hugging Face dataset commit used by those URLs. Files are uploaded as downloaded unless optional PNG recompression is enabled by the sync… See the full description on the dataset page: https://huggingface.co/datasets/physicl-test/eval-pack-una-of-my-project-9qfi5p-340bf60d.imagen<1K0 likes13 downloads2mo agoHugging Face30open-llm-leaderboard /Weyaxi__SauerkrautLM-UNA-SOLAR-Instruct-detailsgated Dataset Card for Evaluation run of Weyaxi/SauerkrautLM-UNA-SOLAR-Instruct Dataset automatically created during the evaluation run of model Weyaxi/SauerkrautLM-UNA-SOLAR-Instruct The dataset is composed of 38 configuration(s), each one corresponding to one of the evaluated task. The dataset has been created from 1 run(s). Each run can be found as a specific split in each configuration, the split being named using the timestamp of the run.The "train" split is always pointing to the… See the full description on the dataset page: https://huggingface.co/datasets/open-llm-leaderboard/Weyaxi__SauerkrautLM-UNA-SOLAR-Instruct-details.tabular10K<n<100K0 likes12 downloads2y agoHugging Face

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