wopdevries commited on
Commit
8e28d0e
·
verified ·
1 Parent(s): 3d67795

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +15 -1
README.md CHANGED
@@ -1 +1,15 @@
1
- # Bridge DDS Dataset\n\nThis dataset contains bridge deals in PBN format with DDS results, generated using https://github.com/wopdevries/make-dds-dataset.\n\n## Dataset Details\n- **Format**: TSV with PBN strings and DDS results.\n- **Size**: ~11,293 bytes for 100 deals.\n- **License**: GPL v3 (code), Apache 2.0 ().\n\n## Usage\nSee the GitHub repository for instructions.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Bridge DDS Dataset
2
+
3
+ This dataset contains bridge deals in PBN format with DDS results, generated using https://github.com/wopdevries/make-dds-dataset.
4
+
5
+ ## Dataset Details
6
+ - **Format**: TSV with PBN strings and DDS results.
7
+ - **Size**: ~11,293 bytes for 100 deals.
8
+ - **License**: GPL v3 (code), Apache 2.0 (`libdds.so`).
9
+
10
+ ## Usage
11
+ ```python
12
+ import pandas as pd
13
+ data = pd.read_csv('sample_results.tsv', sep=' ')
14
+ print(data.head())
15
+ ```