We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 181ac2f commit 7a068ecCopy full SHA for 7a068ec
RELEASE.md
@@ -19,6 +19,7 @@
19
* Modifies a ROUGE Test to be compatible with NumPy v2.0.1.
20
* Remove keras_util_test.py which is based on estimator models.
21
* Remove dependency on eval_saved_model encodings.
22
+* Downloads `punkt_tab` in Rouge metric.
23
24
## Breaking Changes
25
tensorflow_model_analysis/metrics/rouge.py
@@ -93,6 +93,7 @@ def setup(self):
93
if not tokenizer_installed:
94
logging.info(_LOGGING_MESSAGE_TOKENIZER_PREPARER)
95
nltk.download('punkt')
96
+ nltk.download('punkt_tab')
97
98
def create_accumulator(self) -> _Accumulator:
99
return _Accumulator()
0 commit comments