Maybe we should consider other sources for datasets not only Hugging Face? At this moment we have something like this: ``` class SampleIdentifier(BaseModel): dataset_name: str = Field(..., description='Name of the source dataset') hf_repo: str = Field(..., description='HuggingFace repository identifier') hf_split: HfSplit = Field(..., description='HuggingFace split identifier') hf_index: int = Field(..., description='Index in the HuggingFace dataset') ```
Maybe we should consider other sources for datasets not only Hugging Face?
At this moment we have something like this: