Spaces:
Sleeping
Sleeping
File size: 55,224 Bytes
c94015f 6ee67ba c94015f 905259f c94015f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 |
import argparse
import os
import time
from functools import partial
import spaces
import gradio.exceptions
import gradio as gr
import pandas as pd
import torch
from transformers import (AutoTokenizer,
AutoModelForCausalLM,
LogitsProcessorList)
from watermark_processor import WatermarkLogitsProcessor, WatermarkDetector
# FIXME 所有模型的正确长度
API_MODEL_MAP = {
# "Qwen/Qwen1.5-0.5B-Chat": {"max_length": 2000, "gamma": 0.5, "delta": 2.0},
# "THUDM/chatglm3-6b": {"max_length": 2048, "gamma": 0.5, "delta": 2.0},
}
default_trace_table = pd.DataFrame(columns=["编号", "水印内容"])
default_trace_table.loc[0] = (0, "本文本由A模型生成")
default_trace_table.loc[1] = (1, "本文本由B模型生成")
default_trace_table.loc[2] = (2, "本文本由用户小王生成")
watermark_salt = 0
def str2bool(v):
"""用户友好的布尔标志参数的Util函数"""
if isinstance(v, bool):
return v
if v.lower() in ('yes', 'true', 't', 'y', '1'):
return True
elif v.lower() in ('no', 'false', 'f', 'n', '0'):
return False
else:
raise argparse.ArgumentTypeError('Boolean value expected.')
# 定义一个函数用于解析命令行参数
def parse_args():
parser = argparse.ArgumentParser(
description="")
parser.add_argument(
"--run_gradio",
type=str2bool,
default=True,
help="Whether to launch as a gradio demo. Set to False if not installed and want to just run the stdout version.",
)
parser.add_argument(
"--demo_public",
type=str2bool,
default=False,
help="Whether to expose the gradio demo to the internet.",
)
parser.add_argument(
"--model_name_or_path",
type=str,
default="Qwen/Qwen1.5-0.5B-Chat",
help="Main model, path to pretrained model or model identifier from huggingface.co/models.",
)
parser.add_argument(
"--prompt_max_length",
type=int,
default=None,
help="Truncation length for prompt, overrides model config's max length field.",
)
parser.add_argument(
"--max_new_tokens",
type=int,
default=200,
help="Maximmum number of new tokens to generate.",
)
parser.add_argument(
"--generation_seed",
type=int,
default=123,
help="Seed for setting the torch global rng prior to generation.",
)
parser.add_argument(
"--use_sampling",
type=str2bool,
default=True,
help="Whether to generate using multinomial sampling.",
)
parser.add_argument(
"--sampling_temp",
type=float,
default=0.7,
help="Sampling temperature to use when generating using multinomial sampling.",
)
parser.add_argument(
"--n_beams",
type=int,
default=1,
help="Number of beams to use for beam search. 1 is normal greedy decoding",
)
parser.add_argument(
"--use_gpu",
type=str2bool,
default=True,
help="Whether to run inference and watermark hashing/seeding/permutation on gpu.",
)
parser.add_argument(
"--seeding_scheme",
type=str,
default="simple_1",
help="Seeding scheme to use to generate the greenlists at each generation and verification step.",
)
parser.add_argument(
"--gamma",
type=float,
default=0.5,
help="The fraction of the vocabulary to partition into the greenlist at each generation and verification step.",
)
parser.add_argument(
"--delta",
type=float,
default=2.0,
help="The amount/bias to add to each of the greenlist token logits before each token sampling step.",
)
parser.add_argument(
"--normalizers",
type=str,
default="",
help="Single or comma separated list of the preprocessors/normalizer names to use when performing watermark detection.",
)
parser.add_argument(
"--ignore_repeated_bigrams",
type=str2bool,
default=False,
help="Whether to use the detection method that only counts each unqiue bigram once as either a green or red hit.",
)
parser.add_argument(
"--detection_z_threshold",
type=float,
default=4.0,
help="The test statistic threshold for the detection hypothesis test.",
)
parser.add_argument(
"--select_green_tokens",
type=str2bool,
default=True,
help="How to treat the permuation when selecting the greenlist tokens at each step. Legacy is (False) to pick the complement/reds first.",
)
parser.add_argument(
"--skip_model_load",
type=str2bool,
default=False,
help="Skip the model loading to debug the interface.",
)
parser.add_argument(
"--gguf_file",
type=str,
default='./qwen2-0_5b-instruct-q2_k.gguf',
help="gguf文件(如果有)",
)
parser.add_argument(
"--seed_separately",
type=str2bool,
default=True,
help="Whether to call the torch seed function before both the unwatermarked and watermarked generate calls.",
)
args = parser.parse_args()
return args
def load_model(args):
"""加载并返回模型和分词器"""
if args.use_gpu:
device = "cuda:0" if torch.cuda.is_available() else "cpu"
else:
device = "cpu"
if 'gguf' in args.model_name_or_path.lower():
model = AutoModelForCausalLM.from_pretrained(args.model_name_or_path, gguf_file=args.gguf_file,
trust_remote_code=True,
local_files_only=True,
device_map=device)
tokenizer = AutoTokenizer.from_pretrained(args.model_name_or_path, gguf_file=args.gguf_file,
local_files_only=True,
trust_remote_code=True)
else:
model = AutoModelForCausalLM.from_pretrained(args.model_name_or_path,
trust_remote_code=True,
local_files_only=True,
device_map=device)
tokenizer = AutoTokenizer.from_pretrained(args.model_name_or_path, trust_remote_code=True,
local_files_only=True, )
try:
model.eval()
except Exception as e:
print(e)
return model, tokenizer, device
from text_generation import InferenceAPIClient
from requests.exceptions import ReadTimeout
def generate_with_api(prompt, args):
hf_api_key = os.environ.get("HF_API_KEY")
if hf_api_key is None:
raise ValueError("HF_API_KEY environment variable not set, cannot use HF API to generate text.")
client = InferenceAPIClient(args.model_name_or_path, token=hf_api_key, timeout=60)
assert args.n_beams == 1, "HF API models do not support beam search."
generation_params = {
"max_new_tokens": args.max_new_tokens,
"do_sample": args.use_sampling,
}
if args.use_sampling:
generation_params["temperature"] = args.sampling_temp
generation_params["seed"] = args.generation_seed
timeout_msg = "[Model API timeout error. Try reducing the max_new_tokens parameter or the prompt length.]"
try:
generation_params["watermark"] = False
without_watermark_iterator = client.generate_stream(prompt, **generation_params)
except ReadTimeout as e:
print(e)
without_watermark_iterator = (char for char in timeout_msg)
try:
generation_params["watermark"] = True
with_watermark_iterator = client.generate_stream(prompt, **generation_params)
except ReadTimeout as e:
print(e)
with_watermark_iterator = (char for char in timeout_msg)
all_without_words, all_with_words = "", ""
for without_word, with_word in zip(without_watermark_iterator, with_watermark_iterator):
all_without_words += without_word.token.text
all_with_words += with_word.token.text
yield all_without_words, all_with_words
def check_prompt(prompt, args, tokenizer, model=None, device=None):
# 这适用于本地和API模型场景
try:
if args.model_name_or_path in API_MODEL_MAP:
args.prompt_max_length = API_MODEL_MAP[args.model_name_or_path]["max_length"]
elif hasattr(model.config, "max_position_embedding"):
args.prompt_max_length = model.config.max_position_embeddings - args.max_new_tokens
else:
args.prompt_max_length = 4096 - args.max_new_tokens
except Exception as e:
print(e)
args.prompt_max_length = 4096 - args.max_new_tokens
tokd_input = tokenizer(prompt, return_tensors="pt", add_special_tokens=False, truncation=True,
max_length=args.prompt_max_length).to(device)
truncation_warning = True if tokd_input["input_ids"].shape[-1] == args.prompt_max_length else False
redecoded_input = tokenizer.batch_decode(tokd_input["input_ids"], skip_special_tokens=True)[0]
return (redecoded_input,
int(truncation_warning),
args)
@spaces.GPU
def generate(prompt, args, tokenizer, model=None, device=None):
"""根据水印参数实例化 WatermarkLogitsProcessor 并通过将其作为 logits 处理器传递给模型的 generate 方法来生成带水印的文本。"""
print(f"Generating with {args}")
print(f"Prompt: {prompt}")
if args.model_name_or_path in API_MODEL_MAP:
api_outputs = generate_with_api(prompt, args)
yield from api_outputs
else:
if 'chatglm' in args.model_name_or_path.lower() or 'qwen' in args.model_name_or_path.lower() or 'llama' in args.model_name_or_path.lower():
messages = [
# {"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": prompt}
]
tokenized_input = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
tokd_input = tokenizer([tokenized_input], return_tensors="pt", truncation=True, add_special_tokens=False,
max_length=args.prompt_max_length).to(device)
else:
tokd_input = tokenizer(prompt, return_tensors="pt", add_special_tokens=True, truncation=True,
max_length=args.prompt_max_length).to(device)
gen_kwargs = dict(max_new_tokens=args.max_new_tokens)
if args.use_sampling:
gen_kwargs.update(dict(
do_sample=True,
top_k=0,
temperature=args.sampling_temp
))
else:
gen_kwargs.update(dict(
num_beams=args.n_beams
))
watermark_processor = WatermarkLogitsProcessor(vocab=list(tokenizer.get_vocab().values()),
gamma=args.gamma,
delta=args.delta,
seeding_scheme=args.seeding_scheme,
extra_salt=watermark_salt,
select_green_tokens=args.select_green_tokens)
generate_without_watermark = partial(
model.generate,
**gen_kwargs
)
generate_with_watermark = partial(
model.generate,
logits_processor=LogitsProcessorList([watermark_processor]),
**gen_kwargs
)
start_time = time.time()
gr.Info('开始生成正常内容')
torch.manual_seed(args.generation_seed)
output_without_watermark = generate_without_watermark(**tokd_input)
# 可选择在第二次生成之前种子,但通常不会再次相同,除非 delta==0.0,无操作水印
print(watermark_salt)
print(default_trace_table)
print(default_trace_table.loc[default_trace_table['编号'] == watermark_salt, '水印内容'])
gr.Info('开始注入水印:“{}”'.format(
default_trace_table.loc[default_trace_table['编号'] == watermark_salt, '水印内容'].item()))
if args.seed_separately:
torch.manual_seed(args.generation_seed)
output_with_watermark = generate_with_watermark(**tokd_input)
output_without_watermark = output_without_watermark[:, tokd_input["input_ids"].shape[-1]:]
output_with_watermark = output_with_watermark[:, tokd_input["input_ids"].shape[-1]:]
decoded_output_without_watermark = tokenizer.batch_decode(output_without_watermark, skip_special_tokens=True)[0]
decoded_output_with_watermark = tokenizer.batch_decode(output_with_watermark, skip_special_tokens=True)[0]
end_time = time.time()
gr.Info(f"生成结束,共用时{end_time - start_time:.2f}秒")
print(f"Generation took {end_time - start_time:.2f} seconds")
# 使用空格分隔生成器风格模拟 API 输出
all_without_words, all_with_words = "", ""
for without_word, with_word in zip(decoded_output_without_watermark.split(),
decoded_output_with_watermark.split()):
all_without_words += without_word + " "
all_with_words += with_word + " "
yield all_without_words, all_with_words
def format_names(s):
"""为 gradio 演示界面格式化名称"""
s = s.replace("num_tokens_scored", "总Token")
s = s.replace("num_green_tokens", "Green Token数量")
s = s.replace("green_fraction", "Green Token占比")
s = s.replace("z_score", "z-score")
s = s.replace("p_value", "p value")
s = s.replace("prediction", "预测结果")
s = s.replace("confidence", "置信度")
return s
def list_format_scores(score_dict, detection_threshold):
"""将检测指标格式化为 gradio 数据框输入格式"""
lst_2d = []
for k, v in score_dict.items():
if k == 'green_fraction':
lst_2d.append([format_names(k), f"{v:.1%}"])
elif k == 'confidence':
lst_2d.append([format_names(k), f"{v:.3%}"])
elif isinstance(v, float):
lst_2d.append([format_names(k), f"{v:.3g}"])
elif isinstance(v, bool):
lst_2d.append([format_names(k), ("含有水印" if v else "无水印")])
else:
lst_2d.append([format_names(k), f"{v}"])
if "confidence" in score_dict:
lst_2d.insert(-2, ["z-score Threshold", f"{detection_threshold}"])
else:
lst_2d.insert(-1, ["z-score Threshold", f"{detection_threshold}"])
return lst_2d
def detect(input_text, args, tokenizer, device=None, return_green_token_mask=True):
"""实例化 WatermarkDetection 对象并调用 detect 方法 在输入文本上返回测试的分数和结果"""
print(f"Detecting with {args}")
print(f"Detection Tokenizer: {type(tokenizer)}")
# 现在不要显示绿色的token mask
# 如果我们使用的是normalizers或ignore_repeated_bigrams
if args.normalizers != [] or args.ignore_repeated_bigrams:
return_green_token_mask = False
error = False
green_token_mask = None
if input_text == "":
error = True
else:
try:
for _, data in default_trace_table.iterrows():
salt = data["编号"]
name = data["水印内容"]
watermark_detector = WatermarkDetector(vocab=list(tokenizer.get_vocab().values()),
gamma=args.gamma,
seeding_scheme=args.seeding_scheme,
extra_salt=salt,
device=device,
tokenizer=tokenizer,
z_threshold=args.detection_z_threshold,
normalizers=args.normalizers,
ignore_repeated_bigrams=args.ignore_repeated_bigrams,
select_green_tokens=args.select_green_tokens)
score_dict = watermark_detector.detect(input_text, return_green_token_mask=return_green_token_mask)
if score_dict['prediction']:
print(f"检测到是“{name}”的水印")
break
green_token_mask = score_dict.pop("green_token_mask", None)
output = list_format_scores(score_dict, watermark_detector.z_threshold)
except ValueError as e:
print(e)
error = True
if error:
output = [["Error", "string too short to compute metrics"]]
output += [["", ""] for _ in range(6)]
html_output = "[No highlight markup generated]"
if green_token_mask is None:
html_output = "[Visualizing masks with ignore_repeated_bigrams enabled is not supported, toggle off to see the mask for this text. The mask is the same in both cases - only counting/stats are affected.]"
if green_token_mask is not None:
# hack 因为我们需要一个带有字符跨度支持的快速分词器
tokens = tokenizer(input_text, add_special_tokens=False)
if tokens["input_ids"][0] == tokenizer.bos_token_id:
tokens["input_ids"] = tokens["input_ids"][1:] # 忽略注意力掩码
skip = watermark_detector.min_prefix_len
if args.model_name_or_path in ['THUDM/chatglm3-6b']:
# 假设词表中3-258就是字节0-255
charspans = []
for i in range(skip, len(tokens["input_ids"])):
if tokens.data['input_ids'][i - 1] in range(3, 259):
charspans.append("<0x{:X}>".format(tokens.data['input_ids'][i - 1] - 3))
else:
charspans.append(tokenizer.decode(tokens.data['input_ids'][i - 1:i]))
else:
charspans = [tokens.token_to_chars(i - 1) for i in range(skip, len(tokens["input_ids"]))]
charspans = [cs for cs in charspans if cs is not None] # remove the special token spans
if len(charspans) != len(green_token_mask): breakpoint()
assert len(charspans) == len(green_token_mask)
if args.model_name_or_path in ['THUDM/chatglm3-6b']:
tags = []
for cs, m in zip(charspans, green_token_mask):
tags.append(
f'<span class="green">{cs}</span>' if m else f'<span class="red">{cs}</span>')
else:
tags = [(
f'<span class="green">{input_text[cs.start:cs.end]}</span>' if m else f'<span class="red">{input_text[cs.start:cs.end]}</span>')
for cs, m in zip(charspans, green_token_mask)]
html_output = f'<p>{" ".join(tags)}</p>'
if score_dict['prediction']:
html_look = gr.HTML("""<div style="width: 100%; font-size: 24px; height: 100px; border-radius: 20px; background-color: rgba(255, 0, 0, 0.25); display: flex; justify-content: center; align-items: center; color: white; font-weight: bold;">
<span>含有水印:“{}”</span>
</div>""".format(name), visible=True)
else:
html_look = gr.HTML("""<div style="width: 100%; font-size: 24px; height: 100px; border-radius: 20px; background-color: rgba(0, 128, 0, 0.25); display: flex; justify-content: center; align-items: center; color: white; font-weight: bold; text-align: center;">
<span>无水印</span>
</div>""", visible=True)
return output, args, tokenizer, html_output, html_look
def run_gradio(args, model=None, device=None, tokenizer=None):
"""定义并启动gradio演示界面"""
check_prompt_partial = partial(check_prompt, model=model, device=device)
generate_partial = spaces.GPU(partial(generate, model=model, device=device))
detect_partial = partial(detect, device=device)
css = """
.green { color: black!important;line-height:1.9em; padding: 0.2em 0.2em; background: #ccffcc; border-radius:0.5rem;}
.red { color: black!important;line-height:1.9em; padding: 0.2em 0.2em; background: #ffad99; border-radius:0.5rem;}
"""
with gr.Blocks(theme='ParityError/Interstellar', css=css) as demo:
# 顶部部分,问候语和说明
with gr.Row():
with gr.Column(scale=9):
gr.Markdown(
"""
# 🌸🖼️ 追本溯源—面向大语言模型生成内容的水印版权保护系统 🌟🎓
"""
)
with gr.Column(scale=1):
# 如果启动时的 model_name_or_path 不是 API 模型之一,则添加到下拉菜单中
all_models = sorted(list(set(list(API_MODEL_MAP.keys()) + [args.model_name_or_path])))
model_selector = gr.Dropdown(
all_models,
value=args.model_name_or_path,
label="选择大语言模型,进行模型水印",
)
# 构建参数的状态,定义更新和切换
default_prompt = args.__dict__.pop("default_prompt")
session_args = gr.State(value=args)
# 注意,如果状态对象是可调用的,则自动调用 value,希望在启动时避免调用分词器
session_tokenizer = gr.State(value=lambda: tokenizer)
with gr.Tab("生成回答和添加文本水印🎓"):
with gr.Row():
with gr.Column(scale=5):
prompt = gr.Textbox(label=f"Prompt", interactive=True, lines=3, max_lines=10, value=default_prompt)
with gr.Column(scale=3):
trace_source = gr.Dataframe(default_trace_table, datatype=['number', 'str'], interactive=True,
col_count=(2, "fixed"))
with gr.Row(equal_height=True):
with gr.Column(scale=7):
generate_btn = gr.Button("Generate", variant='primary')
gr.Markdown('水印选择:',
show_label=False)
watermark_salt_choice = gr.Dropdown(
choices=[i[::-1] for i in default_trace_table.to_dict(orient='split')['data']],
value=0,
container=False,
scale=3,
type="value",
interactive=True, label="水印标识选择")
with gr.Row():
with gr.Column():
with gr.Column(scale=2):
with gr.Tab("原版输出"):
output_without_watermark = gr.Textbox(interactive=False, lines=7, max_lines=14,
show_label=False)
with gr.Tab("显示水印"):
html_without_watermark = gr.HTML(elem_id="html-without-watermark")
original_watermark_state = gr.HTML('', visible=False)
with gr.Column(scale=1):
without_watermark_detection_result = gr.Dataframe(headers=["Metric", "Value"],
interactive=False,
row_count=7, col_count=2)
with gr.Column():
with gr.Column(scale=2):
with gr.Tab("带水印的输出"):
output_with_watermark = gr.Textbox(interactive=False, lines=7, max_lines=14,
show_label=False)
with gr.Tab("显示水印"):
html_with_watermark = gr.HTML(elem_id="html-with-watermark")
change_watermark_state = gr.HTML('', visible=False)
with gr.Column(scale=1):
with_watermark_detection_result = gr.Dataframe(headers=["Metric", "Value"], interactive=False,
row_count=7, col_count=2)
redecoded_input = gr.Textbox(visible=False)
truncation_warning = gr.Number(visible=False)
def truncate_prompt(redecoded_input, truncation_warning, orig_prompt, args):
if truncation_warning:
return redecoded_input + f"\n\n[Prompt was truncated before generation due to length...]", args
else:
return orig_prompt, args
with gr.Tab("检测文本水印功能🎭"):
with gr.Row():
with gr.Column(scale=5):
with gr.Tab("分析文本"):
detection_input = gr.Textbox(interactive=True, lines=14, max_lines=14, show_label=False)
with gr.Tab("显示水印"):
html_detection_input = gr.HTML(elem_id="html-detection-input")
detect_watermark_state = gr.HTML('', visible=False)
with gr.Column(scale=2):
trace_source2 = gr.Dataframe(default_trace_table, datatype=['number', 'str'], interactive=True,
col_count=(2, "fixed"))
detection_result = gr.Dataframe(headers=["Metric", "Value"], interactive=False, row_count=7,
col_count=2)
with gr.Row():
detect_btn = gr.Button("检测", variant='primary')
with gr.Tab("About📖"):
with gr.Row():
with gr.Column(scale=2):
gr.Markdown(
"""
大语言模型可能带来的潜在危害可以通过*水印*来减轻。*水印*是嵌入在生成的文本中的信息,
这对人类来说是不可见的,但是可以被特定算法检测到。
这些水印可以使*任何人*用特定工具判断其是否使用带水印的模型生成的。
本网站展示了一种水印方法,可以应用于_任何_生成性语言模型。
"""
)
gr.Markdown(
"""
**[生成文本与添加水印]**:可以给大模型的输出添加水印。
您可以尝试任何prompt,并比较正常文本(*没有水印的输出*)和水印文本(*有水印的输出*)的质量。
您还可以点击**显示水印**来“看到”水印,其中的颜色表示其所在的红绿表。
**[检测]**:您还可以将水印文本(或任何其他文本)复制粘贴到第二个选项卡中。
可以实验删除多少句子后还能检测到水印。
还可以在验证,检测器的误报率有多少;
"""
)
with gr.Column(scale=1):
gr.Markdown(
"""
![]()
"""
)
# 参数选择组
with gr.Accordion("高级设置", open=False):
with gr.Row():
with gr.Column(scale=1):
gr.Markdown(f"#### 生成参数")
with gr.Row():
decoding = gr.Radio(label="解码方法", choices=["多项式解码方法", "贪心解码方法"],
value=("multinomial" if args.use_sampling else "greedy"))
with gr.Row():
sampling_temp = gr.Slider(label="采样温度", minimum=0.1, maximum=1.0, step=0.1,
value=args.sampling_temp, visible=True)
with gr.Row():
generation_seed = gr.Number(label="生成种子", value=args.generation_seed, interactive=True)
with gr.Row():
n_beams = gr.Dropdown(label="波束搜索解码", choices=list(range(1, 11, 1)), value=args.n_beams,
visible=((not args.use_sampling) and (
not args.model_name_or_path in API_MODEL_MAP)))
with gr.Row():
max_new_tokens = gr.Slider(label="(生成文本的最大长度)Max Generated Tokens", minimum=10,
maximum=4000, step=10, value=args.max_new_tokens)
with gr.Column(scale=1):
gr.Markdown(f"#### 模型水印参数设置")
with gr.Row():
gamma = gr.Slider(label="gamma", minimum=0.1, maximum=0.9, step=0.05, value=args.gamma)
with gr.Row():
delta = gr.Slider(label="delta", minimum=0.0, maximum=10.0, step=0.1, value=args.delta)
gr.Markdown(f"#### 检测文本水印参数设置")
with gr.Row():
detection_z_threshold = gr.Slider(label="Z分数阈值", minimum=0.0, maximum=10.0, step=0.1,
value=args.detection_z_threshold)
with gr.Row():
ignore_repeated_bigrams = gr.Checkbox(label="避免生成连续重复的双词组合")
with gr.Row():
normalizers = gr.CheckboxGroup(label="对文本进行标准化处理",
choices=["unicode", "homoglyphs", "truecase"],
value=args.normalizers)
with gr.Row():
gr.Markdown(
f"注意:滑块并不总是能完美更新。点击条形图或使用右侧的数字窗口会有所帮助。下面的窗口显示当前设置。")
with gr.Row():
current_parameters = gr.Textbox(label="当前参数设置", value=args, max_lines=10)
with gr.Accordion("传统设置", open=False):
with gr.Row():
with gr.Column(scale=1):
seed_separately = gr.Checkbox(label="为两个不同的生成过程分别设置随机种子",
value=args.seed_separately)
with gr.Column(scale=1):
select_green_tokens = gr.Checkbox(label="从分区中选择 绿色列表", value=args.select_green_tokens)
with gr.Accordion("设置有什么作用?", open=False):
gr.Markdown(
"""
#### 生成参数:
- **解码方法**:我们可以使用多项式采样或者贪婪解码的方式从模型中生成标记。
决定如何从模型中生成token。可以选择多项式采样或贪婪解码。
多项式采样允许一定的随机性,而贪婪解码总是选择概率最高的下一个token。
- **采样温度**:如果使用多项式采样,我们可以设置采样分布的温度。
- 0.0 相当于贪婪解码,而 1.0 代表最大的随机性。
- 0.7是文本质量和随机性之间的平衡点。不适用于贪婪解码。
- **生成种子**:用于在生成前初始化随机数生成器,使多项式采样的输出可复现。此设置不适用于贪婪解码。
- **束搜索数量**:在使用贪婪解码时,可以设置光束数量来启用束搜索。
这允许考虑多个候选序列,而不是只选择最有可能的一个。此设置目前仅适用于贪婪解码。
- **最大生成标记数**:传递给生成方法的 `max_new_tokens` 参数,以在一定数量的新标记停止输出。
- 请注意,根据提示,模型可以生成较少的标记。隐含地,这将最大化可能的提示标记数,即模型的最大输入长度减去 `max_new_tokens`,并相应地截断输入。
综上所述,这些参数提供了对生成过程的不同方面的控制,包括随机性和多样性
(解码方法、采样温度),可复现性(生成种子),以及输出长度和多样性(光束数量、最大生成token数)。
合理配置这些参数可以帮助生成高质量的文本输出。
#### 水印参数:
- **gamma**:在每个生成步骤中将词汇表的一部分划分为绿色列表的比例。
- 较小的 gamma 值通过使水印模型优先从较小的绿色集中采样,从而使其与人类/未水印文本的差异更大,从而创建更强的水印。
- **delta**:在每个生成步骤中为绿色列表中的每个标记的 logits 添加的正偏差量。较高的 delta 值意味着水印模型更偏好于绿色列表中的标记。
- 随着偏差变得非常大,水印从 "软" 过渡到 "硬"。对于硬水印,几乎所有标记都是绿色的,但这可能对生成质量产生不利影响,特别是当分布的灵活性不大时。
#### 检测器参数:
- **z 分数阈值**:假设检验的 z 分数截断。较高的阈值(例如 4.0)使得 _false positives_(预测人类/未水印文本被标记为水印)非常不可能,
因为一个真正的人类文本几乎永远不会达到那么高的 z 分数。
- 较低的阈值会捕获更多的 _true positives_,因为一些水印文本可能包含较少的绿色标记并达到较低的 z 分数,但仍然通过较低的门槛并被标记为 "水印"。
然而,较低的阈值会增加包含略高于平均水平的绿色标记的人类文本错误地被标记为水印的几率。4.0-5.0 提供了极低的假阳性率,同时仍准确捕获大多数水印文本。
- **忽略二元重复**:这种替代的检测算法在检测期间仅考虑文本中的唯一二元组,根据每对中的第一个计算绿色列表,并检查第二个是否位于列表中。
- 这意味着 `T` 现在是文本中唯一二元组的数量,如果文本包含大量重复,则这个数字将小于生成的总标记数。有关更详细的讨论,请参阅论文。
- **归一化**:我们实现了一些基本的归一化来抵御文本在检测期间的各种对抗性扰动。
- 目前,我们支持将所有字符转换为 Unicode,将同形异义字符替换为规范形式,并标准化大写。有关输入归一化的详细讨论,请参阅论文。
"""
)
with gr.Accordion("输出指标意味着什么?", open=False):
gr.Markdown(
"""
- `z-score threshold`:假设检验的截止值。
- `Tokens Counted (T)`:检测算法计算的输出中的标记数量。在简单的、单标记播种方案中,第一个标记被省略了,因为没有办法为其生成绿色列表,因为它没有前缀标记。
在底部面板描述的“忽略二元重复”检测算法下,如果有很多重复,这个数量可能远少于生成的总标记数。
- ` Tokens in Greenlist`:观察到落在其相应绿色列表中的标记数量。
- `Fraction of T in Greenlist`:`# Tokens in Greenlist` / `T`。这应该大约等于人类/未水印文本的 `gamma`。
- `z-score`:用于检测假设检验的检验统计量。如果大于 `z-score threshold`,则我们“拒绝零假设”,即文本是人类/未水印的,并得出结论它是带水印的。
- `p value`:在零假设下观察到计算出的 `z-score` 的可能性。这是在不知道水印程序/绿色列表的情况下观察到 `Fraction of T in Greenlist` 的可能性。
如果这个值极其 _小_,我们可以确信这么多的绿色标记不是由随机机会选择的。
- `prediction`:假设检验的结果 - 观察到的 `z-score` 是否高于 `z-score threshold`。
- `confidence`:如果我们拒绝零假设,且 `prediction` 是“带水印”,那么我们报告 1-`p value` 来表示基于这个 `z-score` 观察的检测的置信度。
"""
)
gr.HTML("""
<p>本方法可以对任何大模型的输出结果进行水印的操作。
并且可以对输出结果进行水印检测。
<p/>
""")
# 注册主要生成标签单击事件,输出生成文本以及编码+重新解码+可能被截断的提示和标志,然后调用检测
generate_btn.click(fn=check_prompt_partial, inputs=[prompt, session_args, session_tokenizer],
outputs=[redecoded_input, truncation_warning, session_args]).success(
fn=generate_partial, inputs=[redecoded_input, session_args, session_tokenizer],
outputs=[output_without_watermark, output_with_watermark]).success(
fn=detect_partial, inputs=[output_without_watermark, session_args, session_tokenizer],
outputs=[without_watermark_detection_result, session_args, session_tokenizer,
html_without_watermark, original_watermark_state]).success(
fn=detect_partial, inputs=[output_with_watermark, session_args, session_tokenizer],
outputs=[with_watermark_detection_result, session_args, session_tokenizer, html_with_watermark,
change_watermark_state])
# 如果发生了截断,则显示提示的截断版本
redecoded_input.change(fn=truncate_prompt, inputs=[redecoded_input, truncation_warning, prompt, session_args],
outputs=[prompt, session_args])
# Register main detection tab click
detect_btn.click(fn=detect_partial, inputs=[detection_input, session_args, session_tokenizer],
outputs=[detection_result, session_args, session_tokenizer, html_detection_input,
detect_watermark_state],
api_name="detection")
# 状态管理逻辑
# 定义更新回调函数以更改状态字典
def update_model(session_state, value):
session_state.model_name_or_path = value
return session_state
def update_sampling_temp(session_state, value):
session_state.sampling_temp = float(value)
return session_state
def update_generation_seed(session_state, value):
session_state.generation_seed = int(value)
return session_state
def update_watermark_salt(value):
global watermark_salt
if isinstance(value, int):
watermark_salt = value
elif value is None:
watermark_salt = 0
elif isinstance(value, str) and value.isdigit():
watermark_salt = int(value)
else:
# 不知道为什么会出现这种倒置的情况
watermark_salt = int(
default_trace_table.loc[default_trace_table['水印内容'] == value, '编号'].item())
def update_trace_source(value):
global default_trace_table
try:
if '' in value.loc[:, '编号'].tolist():
return value, gr.Dropdown()
value.loc[:, '编号'] = value.loc[:, '编号'].astype(int)
if default_trace_table.duplicated(subset='编号').any():
raise gr.Error(f"请检查水印编号,编号不能重复")
default_trace_table = value
return value, gr.Dropdown(
choices=[i[::-1] for i in value.to_dict(orient='split')['data']])
except ValueError as e:
if 'invalid literal for int() with base 10' in str(e):
raise gr.Error(f"请检查水印数据,编号必须是整数:{e}")
except gradio.exceptions.Error as e:
raise e
except Exception as e:
print(type(e))
raise e
def update_gamma(session_state, value):
session_state.gamma = float(value)
return session_state
def update_delta(session_state, value):
session_state.delta = float(value)
return session_state
def update_detection_z_threshold(session_state, value):
session_state.detection_z_threshold = float(value)
return session_state
def update_decoding(session_state, value):
if value == "multinomial":
session_state.use_sampling = True
elif value == "greedy":
session_state.use_sampling = False
return session_state
def toggle_sampling_vis(value):
if value == "multinomial":
return gr.update(visible=True)
elif value == "greedy":
return gr.update(visible=False)
def toggle_sampling_vis_inv(value):
if value == "multinomial":
return gr.update(visible=False)
elif value == "greedy":
return gr.update(visible=True)
# 如果模型名称在 API 模型列表中,则将 num beams 参数设置为 1 并隐藏 n_beams
def toggle_vis_for_api_model(value):
if value in API_MODEL_MAP:
return gr.update(visible=False)
else:
return gr.update(visible=True)
def toggle_beams_for_api_model(value, orig_n_beams):
if value in API_MODEL_MAP:
return gr.update(value=1)
else:
return gr.update(value=orig_n_beams)
# 如果模型名称在 API 模型列表中,则将交互参数设置为 false
def toggle_interactive_for_api_model(value):
if value in API_MODEL_MAP:
return gr.update(interactive=False)
else:
return gr.update(interactive=True)
# 如果模型名称在 API 模型列表中,则根据 API 映射设置 gamma 和 delta
def toggle_gamma_for_api_model(value, orig_gamma):
if value in API_MODEL_MAP:
return gr.update(value=API_MODEL_MAP[value]["gamma"])
else:
return gr.update(value=orig_gamma)
def toggle_delta_for_api_model(value, orig_delta):
if value in API_MODEL_MAP:
return gr.update(value=API_MODEL_MAP[value]["delta"])
else:
return gr.update(value=orig_delta)
def update_n_beams(session_state, value):
session_state.n_beams = value;
return session_state
def update_max_new_tokens(session_state, value):
session_state.max_new_tokens = int(value);
return session_state
def update_ignore_repeated_bigrams(session_state, value):
session_state.ignore_repeated_bigrams = value;
return session_state
def update_normalizers(session_state, value):
session_state.normalizers = value;
return session_state
def update_seed_separately(session_state, value):
session_state.seed_separately = value;
return session_state
def update_select_green_tokens(session_state, value):
session_state.select_green_tokens = value;
return session_state
def update_tokenizer(model_name_or_path):
# if model_name_or_path == ALPACA_MODEL_NAME:
# return ALPACA_MODEL_TOKENIZER.from_pretrained(ALPACA_TOKENIZER_PATH)
# else:
return AutoTokenizer.from_pretrained(model_name_or_path)
def check_model(value):
return value if (value != "" and value is not None) else args.model_name_or_path
# 强制约束模型不能为 null 或空
# 然后特别附加模型回调函数
model_selector.change(check_model, inputs=[model_selector], outputs=[model_selector]).then(
toggle_vis_for_api_model, inputs=[model_selector], outputs=[n_beams]
).then(
toggle_beams_for_api_model, inputs=[model_selector, n_beams], outputs=[n_beams]
).then(
toggle_interactive_for_api_model, inputs=[model_selector], outputs=[gamma]
).then(
toggle_interactive_for_api_model, inputs=[model_selector], outputs=[delta]
).then(
toggle_gamma_for_api_model, inputs=[model_selector, gamma], outputs=[gamma]
).then(
toggle_delta_for_api_model, inputs=[model_selector, delta], outputs=[delta]
).then(
update_tokenizer, inputs=[model_selector], outputs=[session_tokenizer]
).then(
update_model, inputs=[session_args, model_selector], outputs=[session_args]
).then(
lambda value: str(value), inputs=[session_args], outputs=[current_parameters]
)
# 根据其他参数的值注册回调函数以切换特定参数的可见性
decoding.change(toggle_sampling_vis, inputs=[decoding], outputs=[sampling_temp])
decoding.change(toggle_sampling_vis, inputs=[decoding], outputs=[generation_seed])
decoding.change(toggle_sampling_vis_inv, inputs=[decoding], outputs=[n_beams])
decoding.change(toggle_vis_for_api_model, inputs=[model_selector], outputs=[n_beams])
# 注册所有状态更新回调函数
decoding.change(update_decoding, inputs=[session_args, decoding], outputs=[session_args])
sampling_temp.change(update_sampling_temp, inputs=[session_args, sampling_temp], outputs=[session_args])
generation_seed.change(update_generation_seed, inputs=[session_args, generation_seed], outputs=[session_args])
watermark_salt_choice.change(update_watermark_salt, inputs=[watermark_salt_choice])
# 同步更新
trace_source.change(update_trace_source, inputs=[trace_source],
outputs=[trace_source2, watermark_salt_choice])
trace_source2.change(update_trace_source, inputs=[trace_source2],
outputs=[trace_source, watermark_salt_choice])
n_beams.change(update_n_beams, inputs=[session_args, n_beams], outputs=[session_args])
max_new_tokens.change(update_max_new_tokens, inputs=[session_args, max_new_tokens], outputs=[session_args])
gamma.change(update_gamma, inputs=[session_args, gamma], outputs=[session_args])
delta.change(update_delta, inputs=[session_args, delta], outputs=[session_args])
detection_z_threshold.change(update_detection_z_threshold, inputs=[session_args, detection_z_threshold],
outputs=[session_args])
ignore_repeated_bigrams.change(update_ignore_repeated_bigrams, inputs=[session_args, ignore_repeated_bigrams],
outputs=[session_args])
normalizers.change(update_normalizers, inputs=[session_args, normalizers], outputs=[session_args])
seed_separately.change(update_seed_separately, inputs=[session_args, seed_separately], outputs=[session_args])
select_green_tokens.change(update_select_green_tokens, inputs=[session_args, select_green_tokens],
outputs=[session_args])
# 注册按钮点击时更新显示参数窗口的额外回调
generate_btn.click(lambda value: str(value), inputs=[session_args], outputs=[current_parameters])
detect_btn.click(lambda value: str(value), inputs=[session_args], outputs=[current_parameters])
# 当参数更改时,显示更新并触发检测,因为某些检测参数不会改变模型输出。
delta.change(lambda value: str(value), inputs=[session_args], outputs=[current_parameters])
gamma.change(lambda value: str(value), inputs=[session_args], outputs=[current_parameters])
gamma.change(fn=detect_partial, inputs=[output_without_watermark, session_args, session_tokenizer],
outputs=[without_watermark_detection_result, session_args, session_tokenizer,
html_without_watermark])
gamma.change(fn=detect_partial, inputs=[output_with_watermark, session_args, session_tokenizer],
outputs=[with_watermark_detection_result, session_args, session_tokenizer, html_with_watermark])
gamma.change(fn=detect_partial, inputs=[detection_input, session_args, session_tokenizer],
outputs=[detection_result, session_args, session_tokenizer, html_detection_input])
detection_z_threshold.change(lambda value: str(value), inputs=[session_args], outputs=[current_parameters])
detection_z_threshold.change(fn=detect_partial,
inputs=[output_without_watermark, session_args, session_tokenizer],
outputs=[without_watermark_detection_result, session_args, session_tokenizer,
html_without_watermark])
detection_z_threshold.change(fn=detect_partial, inputs=[output_with_watermark, session_args, session_tokenizer],
outputs=[with_watermark_detection_result, session_args, session_tokenizer,
html_with_watermark])
detection_z_threshold.change(fn=detect_partial, inputs=[detection_input, session_args, session_tokenizer],
outputs=[detection_result, session_args, session_tokenizer, html_detection_input])
ignore_repeated_bigrams.change(lambda value: str(value), inputs=[session_args], outputs=[current_parameters])
ignore_repeated_bigrams.change(fn=detect_partial,
inputs=[output_without_watermark, session_args, session_tokenizer],
outputs=[without_watermark_detection_result, session_args, session_tokenizer,
html_without_watermark])
ignore_repeated_bigrams.change(fn=detect_partial,
inputs=[output_with_watermark, session_args, session_tokenizer],
outputs=[with_watermark_detection_result, session_args, session_tokenizer,
html_with_watermark])
ignore_repeated_bigrams.change(fn=detect_partial, inputs=[detection_input, session_args, session_tokenizer],
outputs=[detection_result, session_args, session_tokenizer,
html_detection_input])
normalizers.change(lambda value: str(value), inputs=[session_args], outputs=[current_parameters])
normalizers.change(fn=detect_partial, inputs=[output_without_watermark, session_args, session_tokenizer],
outputs=[without_watermark_detection_result, session_args, session_tokenizer,
html_without_watermark])
normalizers.change(fn=detect_partial, inputs=[output_with_watermark, session_args, session_tokenizer],
outputs=[with_watermark_detection_result, session_args, session_tokenizer,
html_with_watermark])
normalizers.change(fn=detect_partial, inputs=[detection_input, session_args, session_tokenizer],
outputs=[detection_result, session_args, session_tokenizer, html_detection_input])
select_green_tokens.change(lambda value: str(value), inputs=[session_args], outputs=[current_parameters])
select_green_tokens.change(fn=detect_partial,
inputs=[output_without_watermark, session_args, session_tokenizer],
outputs=[without_watermark_detection_result, session_args, session_tokenizer,
html_without_watermark])
select_green_tokens.change(fn=detect_partial, inputs=[output_with_watermark, session_args, session_tokenizer],
outputs=[with_watermark_detection_result, session_args, session_tokenizer,
html_with_watermark])
select_green_tokens.change(fn=detect_partial, inputs=[detection_input, session_args, session_tokenizer],
outputs=[detection_result, session_args, session_tokenizer, html_detection_input])
# demo.queue(concurrency_count=3) # delete
if args.demo_public:
demo.launch(share=True) # 通过随机生成的链接将应用程序暴露到互联网上
else:
demo.launch(server_name='0.0.0.0', share=False)
def main(args):
"""运行生成和检测操作的命令行版本
并可选择启动和提供 gradio 演示"""
# 初始参数处理和日志记录
args.normalizers = (args.normalizers.split(",") if args.normalizers else [])
print(args)
if not args.skip_model_load:
model, tokenizer, device = load_model(args)
else:
model, tokenizer, device = None, None, None
tokenizer = AutoTokenizer.from_pretrained(args.model_name_or_path)
if args.use_gpu:
device = "cuda:0" if torch.cuda.is_available() else "cpu"
else:
device = "cpu"
# terrapin example
input_text = (
"为什么A股指数跌的不多,但是我亏损比之前都多?"
)
args.default_prompt = input_text
# Generate and detect, report to stdout
if not args.skip_model_load:
pass
# Launch the app to generate and detect interactively (implements the hf space demo)
if args.run_gradio:
run_gradio(args, model=model, tokenizer=tokenizer, device=device)
return
if __name__ == "__main__":
args = parse_args()
print(args)
main(args)
|