mirror of
https://github.com/meta-llama/llama-stack.git
synced 2025-12-08 19:10:56 +00:00
29 lines
917 B
Python
29 lines
917 B
Python
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
# All rights reserved.
|
|
#
|
|
# This source code is licensed under the terms described in the LICENSE file in
|
|
# the root directory of this source tree.
|
|
|
|
# TODO: make these import config based
|
|
from llama_stack.apis.dataset import * # noqa: F403
|
|
from .dataset import CustomDataset, HuggingfaceDataset
|
|
from .dataset_registry import DatasetRegistry
|
|
|
|
DATASETS_REGISTRY = [
|
|
CustomDataset(
|
|
config=CustomDatasetDef(
|
|
identifier="mmlu-simple-eval-en",
|
|
url="https://openaipublic.blob.core.windows.net/simple-evals/mmlu.csv",
|
|
)
|
|
),
|
|
HuggingfaceDataset(
|
|
config=HuggingfaceDatasetDef(
|
|
identifier="hellaswag",
|
|
dataset_name="hellaswag",
|
|
kwargs={"split": "validation", "trust_remote_code": True},
|
|
)
|
|
),
|
|
]
|
|
|
|
for d in DATASETS_REGISTRY:
|
|
DatasetRegistry.register(d.dataset_id, d)
|