File size: 1,835 Bytes
1092b34
 
 
 
 
 
 
 
 
 
dcd3fd1
1092b34
 
 
 
 
 
 
 
 
 
 
 
 
3df0ae4
1092b34
cfb6805
 
 
 
 
 
 
 
 
1092b34
cfb6805
 
 
 
 
 
 
 
 
0aeabb1
1092b34
0aeabb1
1092b34
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 csv
import datasets
import os

_DESCRIPTION = "TODO"

_HOMEPAGE = "TODO"

_LICENSE = "TODO"

_URL = {"UltimateArabic":"https://huggingface.co/datasets/khalidalt/ultimate_arabic_news/blob/main/UltimateArabic.csv","UltimateArabicPrePros":"https://huggingface.co/datasets/khalidalt/ultimate_arabic_news/raw/main/UltimateArabicPrePros.csv"}
        
          
class UAN_Config(datasets.BuilderConfig):

    """BuilderConfig for Ultamte Arabic News"""

    def __init__(self, **kwargs):
        """
        Args:
            **kwargs: keyword arguments forwarded to super.
        """
        super(UAN_Config, self).__init__(version=datasets.Version("1.0.0", ""), **kwargs)
        

class Ultimate_Arabic_News(datasets.GeneratorBasedBuilder):
    VERSION = datasets.Version("1.1.0")
    BUILDER_CONFIGS = [
    UAN_Config(
        name="UltimateArabic",
        description=textwrap.dedent(
            """\
      UltimateArabic: A file containing more than 193,000 original Arabic news texts, without pre-processing. The texts contain words, 
      numbers, and symbols that can be removed using pre-processing to increase accuracy when using the dataset in various Arabic natural 
      language processing tasks such as text classification."""
        ),
    ),
    UAN_Config(
        name="UltimateArabicPrePros",
        description=textwrap.dedent(
            """UltimateArabicPrePros: It is a file that contains the data mentioned in the first file, but after pre-processing, where 
            the number of data became about 188,000 text documents, where stop words, non-Arabic words, symbols and numbers have been 
            removed so that this file is ready for use directly in the various Arabic natural language processing tasks. Like text 
            classification.
      """
            ),
        ),
    ]