waterfall 0.2.6__py3-none-any.whl → 0.2.7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- waterfall/WatermarkerBase.py +5 -1
- {waterfall-0.2.6.dist-info → waterfall-0.2.7.dist-info}/METADATA +1 -1
- {waterfall-0.2.6.dist-info → waterfall-0.2.7.dist-info}/RECORD +6 -6
- {waterfall-0.2.6.dist-info → waterfall-0.2.7.dist-info}/WHEEL +0 -0
- {waterfall-0.2.6.dist-info → waterfall-0.2.7.dist-info}/entry_points.txt +0 -0
- {waterfall-0.2.6.dist-info → waterfall-0.2.7.dist-info}/licenses/LICENSE +0 -0
waterfall/WatermarkerBase.py
CHANGED
|
@@ -227,6 +227,7 @@ class Watermarker:
|
|
|
227
227
|
return_scores : bool = False,
|
|
228
228
|
use_tqdm : bool = False,
|
|
229
229
|
batched_generate : bool = True,
|
|
230
|
+
discard_incomplete : bool = True,
|
|
230
231
|
**kwargs # Other generate parameters
|
|
231
232
|
) -> List[str] | dict: # Returns flattened list of query x beam
|
|
232
233
|
|
|
@@ -305,7 +306,10 @@ class Watermarker:
|
|
|
305
306
|
tokenizer=self.tokenizer,
|
|
306
307
|
**kwargs
|
|
307
308
|
)
|
|
308
|
-
output = output[:,tokd_input_batch["input_ids"].shape[-1]:]
|
|
309
|
+
output = output[:,tokd_input_batch["input_ids"].shape[-1]:]
|
|
310
|
+
if discard_incomplete:
|
|
311
|
+
output[output[:, -1] == self.tokenizer.eos_token_id].fill_(self.tokenizer.eos_token_id)
|
|
312
|
+
output = output.to("cpu", non_blocking=True)
|
|
309
313
|
outputs.append(output)
|
|
310
314
|
bar.update(tokd_input_batch["input_ids"].shape[0])
|
|
311
315
|
torch.cuda.synchronize()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: waterfall
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.7
|
|
4
4
|
Summary: Scalable Framework for Robust Text Watermarking and Provenance for LLMs
|
|
5
5
|
Project-URL: Homepage, https://github.com/aoi3142/Waterfall
|
|
6
6
|
Project-URL: Issues, https://github.com/aoi3142/Waterfall/issues
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
waterfall/WatermarkerBase.py,sha256=
|
|
1
|
+
waterfall/WatermarkerBase.py,sha256=_Ok-lU-gF3xEWCBwEmxW6ncvUaFXdGQbdiBlAqFAhno,21305
|
|
2
2
|
waterfall/WatermarkingFn.py,sha256=-b-kGRdL0a7eKRqJmcHPAR_rCjxQYnsg1Ne6bTwBc1I,1931
|
|
3
3
|
waterfall/WatermarkingFnFourier.py,sha256=QYayAQYwi1dQkDIyqmvhU568VhrVYTVy47HkI8F8SZs,1358
|
|
4
4
|
waterfall/WatermarkingFnSquare.py,sha256=2PAO05DdKT02npo7GDf_82D520nP7kGAWK6H4E4JMt4,1638
|
|
5
5
|
waterfall/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
waterfall/permute.py,sha256=uYKdmn4pGvjB6hInInLGxFIF6vt507lqJ_qe-ST1PFE,2783
|
|
7
7
|
waterfall/watermark.py,sha256=IbH5r3oqjtKztDVryfDTr_NDn-CLZHow0S8nAEtZmdc,14420
|
|
8
|
-
waterfall-0.2.
|
|
9
|
-
waterfall-0.2.
|
|
10
|
-
waterfall-0.2.
|
|
11
|
-
waterfall-0.2.
|
|
12
|
-
waterfall-0.2.
|
|
8
|
+
waterfall-0.2.7.dist-info/METADATA,sha256=GhqFgFaxYJD11tKHejrS9PsHBL2cdggieezeXWvLdxk,8723
|
|
9
|
+
waterfall-0.2.7.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
10
|
+
waterfall-0.2.7.dist-info/entry_points.txt,sha256=XXnUzuWXu2nc9j4WAll9tq6HyodN_8WJLjeG0O4Y2Gw,60
|
|
11
|
+
waterfall-0.2.7.dist-info/licenses/LICENSE,sha256=zAtaO-k41Q-Q4Etl4bzuh7pgNJsPH-dYfzvznRa0OvM,11341
|
|
12
|
+
waterfall-0.2.7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|