Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -395,6 +395,7 @@ tags:
|
|
395 |
|
396 |
## Table of Contents
|
397 |
- [Dataset Description](#dataset-description)
|
|
|
398 |
- [Dataset Summary](#dataset-summary)
|
399 |
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
|
400 |
- [Languages](#languages)
|
@@ -417,6 +418,8 @@ tags:
|
|
417 |
- [Citation Information](#citation-information)
|
418 |
- [Contributions](#contributions)
|
419 |
|
|
|
|
|
420 |
## Dataset Description
|
421 |
|
422 |
- **Homepage:**
|
@@ -425,6 +428,16 @@ tags:
|
|
425 |
- **Leaderboard:**
|
426 |
- **Point of Contact:**
|
427 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
428 |
### Dataset Summary
|
429 |
|
430 |
The BidCorpus dataset consists of various configurations related to bidding documents. It includes datasets for Named Entity Recognition, Multi-label Classification, Sentence Similarity, and more. Each configuration focuses on different aspects of bidding documents and is designed for specific tasks.
|
|
|
395 |
|
396 |
## Table of Contents
|
397 |
- [Dataset Description](#dataset-description)
|
398 |
+
- [How to load the datasets](#how-to-load-the-datasets)
|
399 |
- [Dataset Summary](#dataset-summary)
|
400 |
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
|
401 |
- [Languages](#languages)
|
|
|
418 |
- [Citation Information](#citation-information)
|
419 |
- [Contributions](#contributions)
|
420 |
|
421 |
+
|
422 |
+
|
423 |
## Dataset Description
|
424 |
|
425 |
- **Homepage:**
|
|
|
428 |
- **Leaderboard:**
|
429 |
- **Point of Contact:**
|
430 |
|
431 |
+
### How to load the datasets
|
432 |
+
|
433 |
+
To load one of the datasets, simply provide the tcepi/bidCorpus argument as the first parameter, followed by the name of the desired dataset, such as bid_corpus_raw.
|
434 |
+
```python
|
435 |
+
from datasets import load_dataset
|
436 |
+
dataset = load_dataset("tcepi/bidCorpus",
|
437 |
+
"bidCorpus_raw",
|
438 |
+
split="train")
|
439 |
+
```
|
440 |
+
|
441 |
### Dataset Summary
|
442 |
|
443 |
The BidCorpus dataset consists of various configurations related to bidding documents. It includes datasets for Named Entity Recognition, Multi-label Classification, Sentence Similarity, and more. Each configuration focuses on different aspects of bidding documents and is designed for specific tasks.
|