@@ -18,10 +18,26 @@ func (f *DummyDatasetReadmeFetcher) Fetch(ctx context.Context, datasetID string)
1818 License : "cc0-1.0" ,
1919 Tags : []string {"dataset" , "test" },
2020 Language : []string {"en" },
21- AnnotationCreators : []string {"huggingface" },
22- CuratedBy : "Dummy Curator" ,
23- FundedBy : "Test Foundation" ,
24- SharedBy : "Test Team" ,
25- DatasetDescription : "A dummy dataset for testing dataset component building" ,
21+ AnnotationCreators : []string {"Test Annotator" , "Secondary Annotator" },
22+ Configs : []DatasetConfig {
23+ {
24+ Name : "default" ,
25+ DataFiles : []DatasetDataFile {
26+ {Split : "train" , Path : "data/train.csv" },
27+ {Split : "test" , Path : "data/test.csv" },
28+ },
29+ },
30+ },
31+ DatasetDescription : "A dummy dataset for testing dataset component building with comprehensive metadata" ,
32+ CuratedBy : "Dummy Curator" ,
33+ FundedBy : "Test Foundation" ,
34+ SharedBy : "Test Team" ,
35+ RepositoryURL : "https://huggingface.co/datasets/" + datasetID ,
36+ PaperURL : "https://arxiv.org/abs/2401.12345" ,
37+ DemoURL : "https://huggingface.co/spaces/demo/" + datasetID ,
38+ OutOfScopeUse : "This dataset should not be used for production systems without proper validation" ,
39+ PersonalSensitiveInfo : "This dataset may contain synthetic personal information for testing purposes" ,
40+ BiasRisksLimitations : "Dataset may contain inherent biases from the synthetic generation process" ,
41+ DatasetCardContact :
"[email protected] " ,
2642 }, nil
2743}
0 commit comments