wopdevries commited on
Commit
66fe9b7
·
verified ·
1 Parent(s): 0d5f1dd

Update metadata.jsonl

Browse files
Files changed (1) hide show
  1. metadata.jsonl +25 -1
metadata.jsonl CHANGED
@@ -1 +1,25 @@
1
- {"@context": "http://schema.org", "@type": "Dataset", "name": "Bridge DDS Dataset", "description": "Bridge deals in PBN format with DDS results", "license": "https://www.gnu.org/licenses/gpl-3.0.html, https://www.apache.org/licenses/LICENSE-2.0"}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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())