Update README.md
Browse files
README.md
CHANGED
@@ -26,25 +26,55 @@ DatasetDict({
|
|
26 |
features: ['metadata', 'input', 'output'],
|
27 |
num_rows: 4593
|
28 |
})
|
29 |
-
|
30 |
features: ['metadata', 'input', 'output'],
|
31 |
num_rows: 574
|
32 |
})
|
33 |
-
|
34 |
features: ['metadata', 'input', 'output'],
|
35 |
num_rows: 574
|
36 |
})
|
|
|
|
|
|
|
|
|
37 |
})
|
38 |
```
|
39 |
|
40 |
This dataset consists of 3 columns:
|
41 |
- metadata - which has the home team, away team, and time of a single NBA game.
|
42 |
- input - which has a string representation of a play-by-play of the game.
|
43 |
-
- output - which has a human-written recap of the game
|
44 |
|
45 |
-
The
|
46 |
- 2019-20
|
47 |
- 2020-21
|
48 |
- 2021-22
|
49 |
- 2022-23
|
50 |
-
- 2023-24
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
features: ['metadata', 'input', 'output'],
|
27 |
num_rows: 4593
|
28 |
})
|
29 |
+
test: Dataset({
|
30 |
features: ['metadata', 'input', 'output'],
|
31 |
num_rows: 574
|
32 |
})
|
33 |
+
validation: Dataset({
|
34 |
features: ['metadata', 'input', 'output'],
|
35 |
num_rows: 574
|
36 |
})
|
37 |
+
unsupervised: Dataset({
|
38 |
+
features: ['metadata', 'input', 'output'],
|
39 |
+
num_rows: 27257
|
40 |
+
})
|
41 |
})
|
42 |
```
|
43 |
|
44 |
This dataset consists of 3 columns:
|
45 |
- metadata - which has the home team, away team, and time of a single NBA game.
|
46 |
- input - which has a string representation of a play-by-play of the game.
|
47 |
+
- output - which has a human-written recap of the game.
|
48 |
|
49 |
+
The train-test-validation sets consist of all of the NBA regular season games of:
|
50 |
- 2019-20
|
51 |
- 2020-21
|
52 |
- 2021-22
|
53 |
- 2022-23
|
54 |
+
- 2023-24
|
55 |
+
with 80%, 10%, 10% ratio
|
56 |
+
|
57 |
+
The unsupervised set consists of metadata and input only (output field is an empty string) of all of the NBA regular season games of:
|
58 |
+
- 1996-97
|
59 |
+
- 1997-98
|
60 |
+
- 1998-99
|
61 |
+
- 1999-2000
|
62 |
+
- 2000-01
|
63 |
+
- 2001-02
|
64 |
+
- 2002-03
|
65 |
+
- 2003-04
|
66 |
+
- 2004-05
|
67 |
+
- 2005-06
|
68 |
+
- 2006-07
|
69 |
+
- 2007-08
|
70 |
+
- 2008-09
|
71 |
+
- 2009-10
|
72 |
+
- 2010-11
|
73 |
+
- 2011-12
|
74 |
+
- 2012-13
|
75 |
+
- 2013-14
|
76 |
+
- 2014-15
|
77 |
+
- 2015-16
|
78 |
+
- 2016-17
|
79 |
+
- 2017-18
|
80 |
+
- 2018-19
|