kimnt93/viet-dolly
收藏Hugging Face2024-04-20 更新2024-06-12 收录
下载链接:
https://hf-mirror.com/datasets/kimnt93/viet-dolly
下载链接
链接失效反馈官方服务:
资源简介:
---
dataset_info:
features:
- name: instruction
dtype: string
- name: input
dtype: string
- name: output
dtype: string
splits:
- name: train
num_bytes: 20794302
num_examples: 14650
download_size: 11067724
dataset_size: 20794302
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
**Dataset Name:** viet-dolly
**Description:** The viet-dolly dataset is generated by translating data from the Databricks Dolly 15k dataset into Vietnamese. It contains Vietnamese translations of the original data.
**Source:** [viet-dolly on Hugging Face Datasets](https://huggingface.co/datasets/kimnt93/viet-dolly)
**Original Source:** [Databricks Dolly 15k on Hugging Face Datasets](https://huggingface.co/datasets/aisquared/databricks-dolly-15k)
**Method:** Data from the Databricks Dolly 15k dataset was translated into Vietnamese.
**License:** Please refer to the license information provided by the original source.
---
**Python Script to Download the Dataset:**
```python
from datasets import load_dataset
# Load the viet-dolly dataset
dataset = load_dataset("kimnt93/viet-dolly")
# Print some basic information about the dataset
print("Dataset Name:", dataset.name)
print("Number of Samples:", len(dataset))
# Example usage: accessing a sample from the dataset
sample = dataset[0]
print("Example Sample:", sample)
```
This Python script uses the `datasets` library from Hugging Face to download and access the viet-dolly dataset. You can run this script in your Python environment to download the dataset and print some basic information about it.
Make sure you have the `datasets` library installed (`pip install datasets`) before running the script.
Let me know if you need further assistance!
提供机构:
kimnt93
原始信息汇总
数据集概述
数据集名称
- 名称: viet-dolly
数据集描述
- 描述: 该数据集是通过将Databricks Dolly 15k数据集翻译成越南语生成的,包含原始数据的越南语翻译。
数据集特征
- 特征:
instruction: 数据类型为字符串input: 数据类型为字符串output: 数据类型为字符串
数据集拆分
- 拆分:
train: 包含14650个样本,数据大小为20794302字节
数据集大小
- 下载大小: 11067724字节
- 数据集大小: 20794302字节
数据集配置
- 配置名称: default
- 数据文件:
split: trainpath: data/train-*
数据集来源
- 原始来源: Databricks Dolly 15k数据集
- 翻译方法: 数据从Databricks Dolly 15k数据集翻译成越南语
许可证
- 许可证: 请参考原始来源提供的许可证信息



