You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|<ahref="https://en.wikipedia.org/wiki/Backgammon">Backgammon</a><br>`"backgammon"`|<imgsrc="https://raw.githubusercontent.com/sotetsuk/pgx/main/docs/assets/backgammon_dark.gif"width="60px"><imgsrc="https://raw.githubusercontent.com/sotetsuk/pgx/main/docs/assets/backgammon_light.gif"width="60px">|`v2`|*Luck aids bearing off checkers.*|
114
-
|<ahref="https://en.wikipedia.org/wiki/Contract_bridge">Bridge bidding</a><br>`"bridge_bidding"`|<imgsrc="https://raw.githubusercontent.com/sotetsuk/pgx/main/docs/assets/bridge_bidding_dark.gif"width="60px"><imgsrc="https://raw.githubusercontent.com/sotetsuk/pgx/main/docs/assets/bridge_bidding_light.gif"width="60px">|`v0`|*Partners exchange information via bids.*|
114
+
|<ahref="https://en.wikipedia.org/wiki/Contract_bridge">Bridge bidding</a><br>`"bridge_bidding"`|<imgsrc="https://raw.githubusercontent.com/sotetsuk/pgx/main/docs/assets/bridge_bidding_dark.gif"width="60px"><imgsrc="https://raw.githubusercontent.com/sotetsuk/pgx/main/docs/assets/bridge_bidding_light.gif"width="60px">|`v1`|*Partners exchange information via bids.*|
115
115
|<ahref="https://en.wikipedia.org/wiki/Chess">Chess</a><br>`"chess"`|<imgsrc="https://raw.githubusercontent.com/sotetsuk/pgx/main/docs/assets/chess_dark.gif"width="60px"><imgsrc="https://raw.githubusercontent.com/sotetsuk/pgx/main/docs/assets/chess_light.gif"width="60px">|`v2`|*Checkmate opponent's king to win.*|
116
116
|<ahref="https://en.wikipedia.org/wiki/Connect_Four">Connect Four</a><br>`"connect_four"`|<imgsrc="https://raw.githubusercontent.com/sotetsuk/pgx/main/docs/assets/connect_four_dark.gif"width="60px"><imgsrc="https://raw.githubusercontent.com/sotetsuk/pgx/main/docs/assets/connect_four_light.gif"width="60px">|`v0`|*Connect discs, win with four.*|
Copy file name to clipboardExpand all lines: docs/bridge_bidding.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ env = BridgeBidding()
28
28
29
29
In Pgx, we follow `[Tian+20]` and use pre-computed Double Dummy Solver (DDS) dataset for each hand.
30
30
So, `BrdigeBidding` environment requires to load pre-computed DDS dataset by `env = BridgeBidding("<path_to_dataset>")`.
31
-
Please run the following command to download the DDS results provided by Pgx.
31
+
Please run the following command to download the DDS results provided by Pgx from [huggingface](https://huggingface.co/datasets/sotetsuk/dds_dataset).
32
32
33
33
```py
34
34
from pgx.bridge_bidding import download_dds_results
@@ -56,7 +56,7 @@ Therefore, we approximate the playing phase of bridge by using the results of DD
56
56
57
57
| Name | Value |
58
58
|:---|:----:|
59
-
| Version |`v0`|
59
+
| Version |`v1`|
60
60
| Number of players |`4`|
61
61
| Number of actions |`38`|
62
62
| Observation shape |`(480,)`|
@@ -96,6 +96,7 @@ Terminates by three consecutive passes after the last bid.
96
96
## Version History
97
97
98
98
-`v0` : Initial release (v1.0.0)
99
+
-`v1` : Provide larger DDS dataset and improve the efficienct in [#1191](https://github.com/sotetsuk/pgx/pull/1191/files) (v2.1.2)
99
100
100
101
## Reference
101
102
@@ -105,4 +106,4 @@ Terminates by three consecutive passes after the last bid.
105
106
-`[Lockhart+20]` "Human-agent cooperation in bridge bidding"
0 commit comments