Datasets:
dataset card
Browse files
README.md
CHANGED
|
@@ -97,3 +97,27 @@ All processing steps were implemented in Python and executed with A100 GPU accel
|
|
| 97 |
|
| 98 |
|
| 99 |
## Usage
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
|
| 98 |
|
| 99 |
## Usage
|
| 100 |
+
|
| 101 |
+
```python
|
| 102 |
+
from datasets import load_dataset
|
| 103 |
+
|
| 104 |
+
reuters = load_dataset("IsmaelMousa/reuters", split="train")
|
| 105 |
+
|
| 106 |
+
print(reuters["text"][0])
|
| 107 |
+
```
|
| 108 |
+
|
| 109 |
+
output:
|
| 110 |
+
```python
|
| 111 |
+
Plm cos inc said its plm power co
|
| 112 |
+
unit broke off merger discussions with sunlaw energy corp of
|
| 113 |
+
beverly hills, calif.
|
| 114 |
+
in january plm power entered into a letter of intent to
|
| 115 |
+
negotiate a potential acquisition of sunlaw, subject to
|
| 116 |
+
substantial due diligence, the company said.
|
| 117 |
+
but it also said the two companies were not able to agree
|
| 118 |
+
on mutually satisfactory final terms and conditions.
|
| 119 |
+
```
|
| 120 |
+
|
| 121 |
+
## License
|
| 122 |
+
|
| 123 |
+
The rights to the reuters are reserved by their respective authors. This dataset is provided under the Apache 2.0 license for both personal and commercial use, with proper attribution.
|