Update README.md
Browse files
README.md
CHANGED
@@ -39,28 +39,57 @@ from datasets import load_dataset
|
|
39 |
|
40 |
# BBC articles
|
41 |
bbc = load_dataset("MohamedZayton/AMINA", data_files="BBC/BBC.csv")
|
|
|
|
|
|
|
|
|
42 |
|
43 |
# CNN articles
|
44 |
cnn = load_dataset("MohamedZayton/AMINA", data_files="CNN/CNN.csv")
|
|
|
|
|
|
|
|
|
45 |
|
46 |
# RT articles
|
47 |
rt = load_dataset("MohamedZayton/AMINA", data_files="RT/RT.csv")
|
|
|
|
|
|
|
|
|
48 |
|
49 |
# Youm7 articles
|
50 |
youm_7 = load_dataset("MohamedZayton/AMINA", data_files="Youm7/Youm7.csv")
|
|
|
|
|
|
|
|
|
51 |
|
52 |
# Hespress articles
|
53 |
hespress = load_dataset("MohamedZayton/AMINA", data_files="Hespress/Hespress.csv")
|
|
|
|
|
|
|
|
|
54 |
|
55 |
# Elspahe articles
|
56 |
elspahe = load_dataset("MohamedZayton/AMINA", data_files="Elspahe/Elspahe.csv")
|
|
|
|
|
|
|
|
|
57 |
|
58 |
# ElRai articles by category
|
59 |
-
|
|
|
|
|
|
|
|
|
60 |
|
61 |
# ElSharq articles by category
|
62 |
-
|
63 |
```
|
|
|
64 |
## Images Link
|
65 |
The Images for some articles for Youm7 and Elsharq newspaper [here](https://drive.google.com/drive/folders/1E4RqlxmKcj5AoO3pGZ6FrfdqLpaA1PHt?usp=sharing).
|
66 |
|
|
|
39 |
|
40 |
# BBC articles
|
41 |
bbc = load_dataset("MohamedZayton/AMINA", data_files="BBC/BBC.csv")
|
42 |
+
```
|
43 |
+
|
44 |
+
```python
|
45 |
+
from datasets import load_dataset
|
46 |
|
47 |
# CNN articles
|
48 |
cnn = load_dataset("MohamedZayton/AMINA", data_files="CNN/CNN.csv")
|
49 |
+
```
|
50 |
+
|
51 |
+
```python
|
52 |
+
from datasets import load_dataset
|
53 |
|
54 |
# RT articles
|
55 |
rt = load_dataset("MohamedZayton/AMINA", data_files="RT/RT.csv")
|
56 |
+
```
|
57 |
+
|
58 |
+
```python
|
59 |
+
from datasets import load_dataset
|
60 |
|
61 |
# Youm7 articles
|
62 |
youm_7 = load_dataset("MohamedZayton/AMINA", data_files="Youm7/Youm7.csv")
|
63 |
+
```
|
64 |
+
|
65 |
+
```python
|
66 |
+
from datasets import load_dataset
|
67 |
|
68 |
# Hespress articles
|
69 |
hespress = load_dataset("MohamedZayton/AMINA", data_files="Hespress/Hespress.csv")
|
70 |
+
```
|
71 |
+
|
72 |
+
```python
|
73 |
+
from datasets import load_dataset
|
74 |
|
75 |
# Elspahe articles
|
76 |
elspahe = load_dataset("MohamedZayton/AMINA", data_files="Elspahe/Elspahe.csv")
|
77 |
+
```
|
78 |
+
|
79 |
+
```python
|
80 |
+
from datasets import load_dataset
|
81 |
|
82 |
# ElRai articles by category
|
83 |
+
elrai = load_dataset("MohamedZayton/AMINA", data_files="ElRai/*.csv")
|
84 |
+
```
|
85 |
+
|
86 |
+
```python
|
87 |
+
from datasets import load_dataset
|
88 |
|
89 |
# ElSharq articles by category
|
90 |
+
elsharq = load_dataset("MohamedZayton/AMINA", data_files="ElSharq/*.csv")
|
91 |
```
|
92 |
+
|
93 |
## Images Link
|
94 |
The Images for some articles for Youm7 and Elsharq newspaper [here](https://drive.google.com/drive/folders/1E4RqlxmKcj5AoO3pGZ6FrfdqLpaA1PHt?usp=sharing).
|
95 |
|