9 lines
240 B
Python
9 lines
240 B
Python
from mmengine.config import read_base
|
|
|
|
with read_base():
|
|
from .datasets.collections.base_medium_llama import piqa_datasets, siqa_datasets
|
|
from .models.hf_llama.hf_llama_7b import models
|
|
|
|
|
|
datasets = [*piqa_datasets, *siqa_datasets]
|