File size: 1,377 Bytes
1f1712b
13485a3
 
 
 
1f1712b
13485a3
 
 
 
 
 
 
 
 
 
 
 
 
 
5eb1119
13485a3
 
1f1712b
13485a3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import datasets
import pandas as pd
import os


class MyDataset(datasets.GeneratorBasedBuilder):
    def _info(self):

        return datasets.DatasetInfo(
            description="DESCRIPTION",
            features=datasets.Features(
                {"domain": datasets.Value("string"), "label": datasets.Value("string")}
            ),
            supervised_keys=("domain", "label"),
            homepage="_HOMEPAGE",
        )


    def _split_generators(self, dl_manager: DownloadConfig):
        # Load your local dataset file
        csv_path = "https://huggingface.co/datasets/harpomaxx/dga-detection/raw/main/argencon.csv.gz"

        return [
            datasets.SplitGenerator(
                name=split,
                gen_kwargs={
                    "filepath": csv_path,
                    "split": split,
                },
            )
            for split in ["train", "test", "validation"]
        ]

    def _generate_examples(
        self,
        filepath: str,
        split: str,
    ):
        # Read your CSV dataset
        dataset = pd.read_csv(filepath)

        # You can filter or split your dataset based on the 'split' argument if necessary

        # Generate examples
        for index, row in dataset.iterrows():
            yield index, {
                "domain": row["domain"],
                "label": row["label"],
            }