mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-13 00:50:06 +08:00
13 lines
204 B
Python
13 lines
204 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Language Modeling Schema
|
|
"""
|
|
import datasets
|
|
|
|
features = datasets.Features(
|
|
{
|
|
"text": datasets.Value("string"),
|
|
"meta": [datasets.Value("string")],
|
|
}
|
|
)
|