Update metadata.jsonl
Browse files- metadata.jsonl +25 -1
metadata.jsonl
CHANGED
|
@@ -1 +1,25 @@
|
|
| 1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Bridge DDS Dataset
|
| 2 |
+
|
| 3 |
+
This dataset contains bridge deals in Portable Bridge Notation (PBN) format with Double Dummy Solver (DDS) results, generated using [make-dds-dataset](https://github.com/wopdevries/make-dds-dataset). It is designed for reinforcement learning (RL) research in bridge, offering reproducible, ML-ready data.
|
| 4 |
+
|
| 5 |
+
## Dataset Description
|
| 6 |
+
- **Homepage**: [https://github.com/wopdevries/make-dds-dataset](https://github.com/wopdevries/make-dds-dataset)
|
| 7 |
+
- **Repository**: [https://github.com/wopdevries/make-dds-dataset](https://github.com/wopdevries/make-dds-dataset)
|
| 8 |
+
- **Paper**: None
|
| 9 |
+
- **Point of Contact**: Open an issue on the GitHub repository
|
| 10 |
+
- **Size**: ~11,293 bytes for 100 deals
|
| 11 |
+
- **Format**: TSV with PBN strings (e.g., `N:A2.KT.T763.AKQ87 ...`) and DDS results (20 comma-separated integers for tricks by player and denomination)
|
| 12 |
+
- **License**: GPL v3 (code), Apache 2.0 (`libdds.so`)
|
| 13 |
+
|
| 14 |
+
## Dataset Structure
|
| 15 |
+
- **Files**:
|
| 16 |
+
- `sample_results.tsv`: TSV file with 100 deals, each with a PBN string and DDS results.
|
| 17 |
+
- Columns:
|
| 18 |
+
- `pbn`: String representing the deal in PBN format.
|
| 19 |
+
- `dds_results`: Sequence of 20 integers (tricks for N, E, S, W in C, D, H, S, NT).
|
| 20 |
+
- **Splits**: Single split (`train`) with 100 examples.
|
| 21 |
+
- **Example**:
|
| 22 |
+
```python
|
| 23 |
+
import pandas as pd
|
| 24 |
+
data = pd.read_csv('sample_results.tsv', sep='\t')
|
| 25 |
+
print(data.head())
|