Fixed several machine translation errors

“Token”      令牌   changed to  Tokens             it is Terminology used in Chinese
“Promt ”     提示  changed to   提示词             it is Terminology in Chinese
Change some blunt translations on the welcome page to be more in line with Chinese usage habits, such as:
"Confused or lost?":"感到困惑或迷失?“  changed to  "获取更多帮助?",
etc......
This commit is contained in:
blueswolf 2024-03-24 20:50:46 +08:00 committed by GitHub
parent c3579c0dab
commit f89e8d5302
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -6,24 +6,24 @@
"default": "默认",
"openaipresets": "OpenAI 预设",
"text gen webio(ooba) presets": "WebUI(ooba) 预设",
"response legth(tokens)": "响应长度(令牌",
"response legth(tokens)": "响应长度(Token",
"select": "选择",
"context size(tokens)": "上下文长度(令牌",
"context size(tokens)": "上下文长度(Token",
"unlocked": "已解锁",
"Only select models support context sizes greater than 4096 tokens. Increase only if you know what you're doing.": "仅选择的模型支持大于 4096 个令牌的上下文大小。只有在知道自己在做什么的情况下才增加。",
"Only select models support context sizes greater than 4096 tokens. Increase only if you know what you're doing.": "仅选择的模型支持大于 4096 个Token的上下文大小。只有在知道自己在做什么的情况下才增加。",
"rep.pen": "重复惩罚",
"WI Entry Status:🔵 Constant🟢 Normal❌ Disabled": "WI 输入状态:\n🔵 恒定\n🟢 正常\n❌ 禁用",
"rep.pen range": "重复惩罚范围",
"Temperature controls the randomness in token selection": "温度控制令牌选择中的随机性:\n- 低温(<1.0)导致更可预测的文本,优先选择高概率的令牌。\n- 高温(>1.0)鼓励创造性和输出的多样性,更多地选择低概率的令牌。\n将值设置为 1.0 以使用原始概率。",
"Temperature controls the randomness in token selection": "温度控制Token选择中的随机性:\n- 低温(<1.0)导致更可预测的文本,优先选择高概率的Token。\n- 高温(>1.0鼓励创造性和输出的多样性更多地选择低概率的Token。\n将值设置为 1.0 以使用原始概率。",
"temperature": "温度",
"Top K sets a maximum amount of top tokens that can be chosen from": "Top K 设置可以从中选择的顶级令牌的最大数量。",
"Top P (a.k.a. nucleus sampling)": "Top P又称核心采样将所有必需的顶级令牌合并到一个特定百分比中。\n换句话说如果前两个令牌代表 25%,而 Top-P 为 0.50,则只考虑这两个令牌。\n将值设置为 1.0 以禁用。",
"Typical P Sampling prioritizes tokens based on their deviation from the average entropy of the set": "典型的 P 采样根据它们与集合平均熵的偏差对令牌进行优先排序。\n保留概率累积接近指定阈值例如 0.5)的令牌,区分包含平均信息的那些。\n将值设置为 1.0 以禁用。",
"Min P sets a base minimum probability": "Min P 设置基本最小概率。它根据顶级令牌的概率进行优化。\n如果顶级令牌的概率为 80%,而 Min P 为 0.1,则只考虑概率高于 8% 的令牌。\n将值设置为 0 以禁用。",
"Top A sets a threshold for token selection based on the square of the highest token probability": "Top A 根据最高令牌概率的平方设置令牌选择的阈值。\n如果 Top A 为 0.2,最高令牌概率为 50%,则排除概率低于 5% 的令牌0.2 * 0.5^2。\n将值设置为 0 以禁用。",
"Tail-Free Sampling (TFS)": "无尾采样TFS查找分布中概率较低的尾部令牌,\n 通过分析令牌概率的变化率以及二阶导数。 令牌保留到阈值(例如 0.3),取决于统一的二阶导数。\n值越接近 0被拒绝的令牌数量就越多。将值设置为 1.0 以禁用。",
"Epsilon cutoff sets a probability floor below which tokens are excluded from being sampled": "ε 截止设置了一个概率下限,低于该下限的令牌将被排除在样本之外。\n以 1e-4 单位;合适的值为 3。将其设置为 0 以禁用。",
"Scale Temperature dynamically per token, based on the variation of probabilities": "根据概率的变化动态地按令牌缩放温度。",
"Top K sets a maximum amount of top tokens that can be chosen from": "Top K 设置可以从中选择的顶级Token的最大数量。",
"Top P (a.k.a. nucleus sampling)": "Top P又称核心采样将所有必需的顶级Token合并到一个特定百分比中。\n换句话说如果前两个Token代表 25%,而 Top-P 为 0.50则只考虑这两个Token。\n将值设置为 1.0 以禁用。",
"Typical P Sampling prioritizes tokens based on their deviation from the average entropy of the set": "典型的 P 采样根据它们与集合平均熵的偏差对Token进行优先排序。\n保留概率累积接近指定阈值例如 0.5的Token,区分包含平均信息的那些。\n将值设置为 1.0 以禁用。",
"Min P sets a base minimum probability": "Min P 设置基本最小概率。它根据顶级Token的概率进行优化。\n如果顶级Token的概率为 80%,而 Min P 为 0.1,则只考虑概率高于 8% 的Token。\n将值设置为 0 以禁用。",
"Top A sets a threshold for token selection based on the square of the highest token probability": "Top A 根据最高Token概率的平方设置Token选择的阈值。\n如果 Top A 为 0.2最高Token概率为 50%,则排除概率低于 5% 的Token0.2 * 0.5^2。\n将值设置为 0 以禁用。",
"Tail-Free Sampling (TFS)": "无尾采样TFS查找分布中概率较低的尾部Token\n 通过分析Token概率的变化率以及二阶导数。 Token保留到阈值例如 0.3),取决于统一的二阶导数。\n值越接近 0被拒绝的Token数量就越多。将值设置为 1.0 以禁用。",
"Epsilon cutoff sets a probability floor below which tokens are excluded from being sampled": "ε 截止设置了一个概率下限,低于该下限的Token将被排除在样本之外。\n以 1e-4 单位;合适的值为 3。将其设置为 0 以禁用。",
"Scale Temperature dynamically per token, based on the variation of probabilities": "根据概率的变化动态地按Token缩放温度。",
"Minimum Temp": "最小温度",
"Maximum Temp": "最大温度",
"Exponent": "指数",
@ -34,8 +34,8 @@
"Learning rate of Mirostat": "Mirostat 的学习率。",
"Strength of the Contrastive Search regularization term. Set to 0 to disable CS": "对比搜索正则化项的强度。 将值设置为 0 以禁用 CS。",
"Temperature Last": "最后温度",
"Use the temperature sampler last": "最后使用温度采样器。 通常是合理的。\n当启用时首先进行潜在令牌的选择,然后应用温度来修正它们的相对概率(技术上是对数似然)。\n当禁用时首先应用温度来修正所有令牌的相对概率,然后从中选择潜在令牌。\n禁用最后的温度。",
"LLaMA / Mistral / Yi models only": "仅限 LLaMA / Mistral / Yi 模型。 确保首先选择适当的分析师。\n结果中不应出现串。\n每行一个串。 文本或 [令牌标识符]。\n许多令牌以空格开头。 如果不确定,请使用令牌计数器。",
"Use the temperature sampler last": "最后使用温度采样器。 通常是合理的。\n当启用时首先进行潜在Token的选择,然后应用温度来修正它们的相对概率(技术上是对数似然)。\n当禁用时首先应用温度来修正所有Token的相对概率然后从中选择潜在Token。\n禁用最后的温度。",
"LLaMA / Mistral / Yi models only": "仅限 LLaMA / Mistral / Yi 模型。 确保首先选择适当的分析师。\n结果中不应出现串。\n每行一个串。 文本或 [Token标识符]。\n许多Token以空格开头。 如果不确定请使用Token计数器。",
"Example: some text [42, 69, 1337]": "例如:\n一些文本\n[42, 69, 1337]",
"Classifier Free Guidance. More helpful tip coming soon": "免费的分类器指导。 更多有用的提示词即将推出。",
"Scale": "比例",
@ -57,8 +57,8 @@
"We cannot provide support for problems encountered while using an unofficial OpenAI proxy": "我们无法为使用非官方 OpenAI 代理时遇到的问题提供支持",
"Legacy Streaming Processing": "传统流处理",
"Enable this if the streaming doesn't work with your proxy": "如果流媒体与您的代理不兼容,请启用此选项",
"Context Size (tokens)": "上下文长度(令牌",
"Max Response Length (tokens)": "最大回复长度(令牌",
"Context Size (tokens)": "上下文长度(Token",
"Max Response Length (tokens)": "最大回复长度(Token",
"Frequency Penalty": "Frequency Penalty 频率惩罚",
"Presence Penalty": "Presence Penalty 存在惩罚",
"Top-p": "Top-p",
@ -71,11 +71,11 @@
"Top K": "Top K",
"Top P": "Top P",
"Do Sample": "进行采样",
"Add BOS Token": "添加 BOS 令牌",
"Add the bos_token to the beginning of prompts. Disabling this can make the replies more creative": "在提示词的开头添加 bos_token。 禁用此功能可以使回复更具创意",
"Ban EOS Token": "禁止 EOS 令牌",
"Add BOS Token": "添加 BOS Token",
"Add the bos_token to the beginning of prompts. Disabling this can make the replies more creative": "在提示词的开头添加 bos_token。 禁用此功能可以使回复更具创意",
"Ban EOS Token": "禁止 EOS Token",
"Ban the eos_token. This forces the model to never end the generation prematurely": "禁止 eos_token。 这将强制模型永远不会提前结束生成",
"Skip Special Tokens": "跳过特殊令牌",
"Skip Special Tokens": "跳过特殊Token",
"Beam search": "束搜索",
"Number of Beams": "束数量",
"Length Penalty": "长度惩罚",
@ -92,7 +92,7 @@
"Phrase Repetition Penalty": "短语重复惩罚",
"Preamble": "序文",
"Use style tags to modify the writing style of the output.": "使用样式标签修改输出的写作风格。",
"Banned Tokens": "禁用的令牌",
"Banned Tokens": "禁用的Token",
"Sequences you don't want to appear in the output. One per line.": "您不希望出现在输出中的序列。 每行一个。",
"AI Module": "AI 模块",
"Changes the style of the generated text.": "更改生成文本的样式。",
@ -251,7 +251,7 @@
"Tokenizer": "分词器",
"None / Estimated": "无 / 估计",
"Sentencepiece (LLaMA)": "Sentencepiece (LLaMA)",
"Token Padding": "令牌填充",
"Token Padding": "Token填充",
"Save preset as": "另存预设为",
"Always add character's name to prompt": "始终将角色名称添加到提示词",
"Use as Stop Strings": "用作停止字符串",
@ -261,7 +261,7 @@
"Auto-Continue": "自动继续",
"Collapse Consecutive Newlines": "折叠连续的换行符",
"Allow for Chat Completion APIs": "允许聊天完成API",
"Target length (tokens)": "目标长度(令牌",
"Target length (tokens)": "目标长度(Token",
"Keep Example Messages in Prompt": "在提示词中保留示例消息",
"Remove Empty New Lines from Output": "从输出中删除空行",
"Disabled for all models": "对所有模型禁用",
@ -283,7 +283,7 @@
"Budget Cap": "预算上限",
"(0 = disabled)": "(0 = 禁用)",
"depth": "深度",
"Token Budget": "令牌预算",
"Token Budget": "Token预算",
"budget": "预算",
"Recursive scanning": "递归扫描",
"None": "无",
@ -321,7 +321,7 @@
"Aphrodite API key": "Aphrodite API 密钥",
"Relax message trim in Groups": "放松群组中的消息修剪",
"Characters Hotswap": "收藏角色卡置顶显示",
"Request token probabilities": "请求令牌概率",
"Request token probabilities": "请求Token概率",
"Movable UI Panels": "可移动的 UI 面板",
"Reset Panels": "重置面板",
"UI Colors": "UI 颜色",
@ -362,11 +362,11 @@
"System Backgrounds": "系统背景",
"Name": "名称",
"Your Avatar": "您的头像",
"Extensions API:": "插件 API地址:",
"Extensions API:": "扩展 API地址:",
"SillyTavern-extras": "SillyTavern-额外功能",
"Auto-connect": "自动连接",
"Active extensions": "激活插件",
"Extension settings": "插件设置",
"Active extensions": "激活扩展",
"Extension settings": "扩展设置",
"Description": "描述",
"First message": "第一条消息",
"Group Controls": "群组控制",
@ -413,7 +413,7 @@
"Before Char": "角色之前",
"After Char": "角色之后",
"Insertion Order": "插入顺序",
"Tokens:": "令牌",
"Tokens:": "Token",
"Disable": "禁用",
"${characterName}": "${角色名称}",
"CHAR": "角色",
@ -478,8 +478,8 @@
"Custom": "自定义",
"Title A-Z": "标题 A-Z",
"Title Z-A": "标题 Z-A",
"Tokens ↗": "令牌 ↗",
"Tokens ↘": "令牌 ↘",
"Tokens ↗": "Token ↗",
"Tokens ↘": "Token ↘",
"Depth ↗": "深度 ↗",
"Depth ↘": "深度 ↘",
"Order ↗": "顺序 ↗",
@ -520,7 +520,7 @@
"Chat Background": "聊天背景",
"UI Background": "UI 背景",
"Mad Lab Mode": "疯狂实验室模式",
"Show Message Token Count": "显示消息令牌计数",
"Show Message Token Count": "显示消息Token计数",
"Compact Input Area (Mobile)": "紧凑输入区域(移动端)",
"Zen Sliders": "禅滑块",
"UI Border": "UI 边框",
@ -533,7 +533,7 @@
"Streaming FPS": "流媒体帧速率",
"Gestures": "手势",
"Message IDs": "显示消息编号",
"Prefer Character Card Prompt": "角色卡提示词优先",
"Prefer Character Card Prompt": "角色卡提示词优先",
"Prefer Character Card Jailbreak": "角色卡越狱优先",
"Press Send to continue": "按发送键继续",
"Quick 'Continue' button": "快速“继续”按钮",
@ -565,7 +565,7 @@
"Show a timestamp for each message in the chat log": "在聊天日志中为每条消息显示时间戳",
"Show an icon for the API that generated the message": "为生成消息的API显示图标",
"Show sequential message numbers in the chat log": "在聊天日志中显示连续的消息编号",
"Show the number of tokens in each message in the chat log": "在聊天日志中显示每条消息中的令牌数",
"Show the number of tokens in each message in the chat log": "在聊天日志中显示每条消息中的Token数",
"Single-row message input area. Mobile only, no effect on PC": "单行消息输入区域。仅适用于移动设备对PC无影响",
"In the Character Management panel, show quick selection buttons for favorited characters": "在角色管理面板中,显示快速选择按钮以选择收藏的角色",
"Show tagged character folders in the character list": "在角色列表中显示已标记的角色文件夹",
@ -579,7 +579,7 @@
"Save movingUI changes to a new file": "将movingUI更改保存到新文件中",
"Apply a custom CSS style to all of the ST GUI": "将自定义CSS样式应用于所有ST GUI",
"Use fuzzy matching, and search characters in the list by all data fields, not just by a name substring": "使用模糊匹配,在列表中通过所有数据字段搜索字符,而不仅仅是名称子字符串",
"If checked and the character card contains a prompt override (System Prompt), use that instead": "如果角色卡包含提示词,则使用它替代系统提示词",
"If checked and the character card contains a prompt override (System Prompt), use that instead": "如果角色卡包含提示词,则使用它替代系统提示词",
"If checked and the character card contains a jailbreak override (Post History Instruction), use that instead": "如果角色卡包含越狱(后置历史记录指令),则使用它替代系统越狱",
"Avoid cropping and resizing imported character images. When off, crop/resize to 400x600": "避免裁剪和放大导入的角色图像。关闭时,裁剪/放大为400x600",
"Show actual file names on the disk, in the characters list display only": "仅在磁盘上显示实际文件名,在角色列表显示中",
@ -607,7 +607,7 @@
"Blank": "空白",
"In Story String / Chat Completion: Before Character Card": "故事模式/聊天补全模式:在角色卡之前",
"In Story String / Chat Completion: After Character Card": "故事模式/聊天补全模式:在角色卡之后",
"In Story String / Prompt Manager": "在故事字符串/提示词管理器",
"In Story String / Prompt Manager": "在故事字符串/提示词管理器",
"Top of Author's Note": "作者注的顶部",
"Bottom of Author's Note": "作者注的底部",
"How do I use this?": "怎样使用?",
@ -627,9 +627,9 @@
"Most chats": "最多聊天",
"Least chats": "最少聊天",
"Back": "返回",
"Prompt Overrides (For OpenAI/Claude/Scale APIs, Window/OpenRouter, and Instruct mode)": "提示词覆盖适用于OpenAI/Claude/Scale API、Window/OpenRouter和Instruct模式",
"Prompt Overrides (For OpenAI/Claude/Scale APIs, Window/OpenRouter, and Instruct mode)": "提示词覆盖适用于OpenAI/Claude/Scale API、Window/OpenRouter和Instruct模式",
"Insert {{original}} into either box to include the respective default prompt from system settings.": "将{{original}}插入到任一框中,以包含系统设置中的相应默认提示词。",
"Main Prompt": "主要提示词",
"Main Prompt": "主要提示词",
"Jailbreak": "越狱",
"Creator's Metadata (Not sent with the AI prompt)": "创作者的元数据不与AI提示词一起发送",
"Everything here is optional": "这里的一切都是可选的",
@ -659,7 +659,7 @@
"Custom Stopping Strings": "自定义停止字符串",
"JSON serialized array of strings": "JSON序列化的字符串数组",
"words you dont want generated separated by comma ','": "不想生成的单词,用逗号','分隔",
"Extensions URL": "插件URL",
"Extensions URL": "扩展URL",
"API Key": "API密钥",
"Enter your name": "输入您的名字",
"Name this character": "为这个角色命名",
@ -714,7 +714,7 @@
"Can help with bad responses by queueing only the approved workers. May slowdown the response time.": "可以通过仅排队批准的工作人员来帮助处理不良响应。可能会减慢响应时间。",
"Clear your API key": "清除您的API密钥",
"Refresh models": "刷新模型",
"Get your OpenRouter API token using OAuth flow. You will be redirected to openrouter.ai": "使用OAuth流程获取您的OpenRouter API令牌。您将被重定向到openrouter.ai",
"Get your OpenRouter API token using OAuth flow. You will be redirected to openrouter.ai": "使用OAuth流程获取您的OpenRouter APIToken。您将被重定向到openrouter.ai",
"Verifies your API connection by sending a short test message. Be aware that you'll be credited for it!": "通过发送简短的测试消息验证您的API连接。请注意您将因此而获得信用",
"Create New": "创建新",
"Edit": "编辑",
@ -744,7 +744,7 @@
"removes blur and uses alternative background color for divs": "消除模糊并为div使用替代背景颜色",
"AI Response Formatting": "AI响应格式",
"Change Background Image": "更改背景图片",
"Extensions": "插件管理",
"Extensions": "扩展管理",
"Click to set a new User Name": "点击设置新的用户名",
"Click to lock your selected persona to the current chat. Click again to remove the lock.": "单击以将您选择的角色锁定到当前聊天。再次单击以移除锁定。",
"Click to set user name for all messages": "点击为所有消息设置用户名",
@ -752,7 +752,7 @@
"Character Management": "角色管理",
"Locked = Character Management panel will stay open": "已锁定=角色管理面板将保持打开状态",
"Select/Create Characters": "选择/创建角色",
"Token counts may be inaccurate and provided just for reference.": "令牌计数可能不准确,仅供参考。",
"Token counts may be inaccurate and provided just for reference.": "Token计数可能不准确,仅供参考。",
"Click to select a new avatar for this character": "单击以为此角色选择新的头像",
"Example: [{{user}} is a 28-year-old Romanian cat girl.]": "示例:[{{user}}是一个28岁的罗马尼亚猫女孩。]",
"Toggle grid view": "切换网格视图",
@ -834,25 +834,25 @@
"Sampler Priority": "采样器优先级",
"Ooba only. Determines the order of samplers.": "仅适用于Ooba。确定采样器的顺序。",
"Load default order": "加载默认顺序",
"Max Tokens Second": "每秒最大令牌数",
"Max Tokens Second": "每秒最大Token数",
"CFG": "CFG",
"No items": "无项目",
"Extras API key (optional)": "插件API密钥可选",
"Notify on extension updates": "在插件更新时通知",
"Extras API key (optional)": "扩展API密钥可选",
"Notify on extension updates": "在扩展更新时通知",
"Toggle character grid view": "切换角色网格视图",
"Bulk edit characters": "批量编辑角色",
"Bulk delete characters": "批量删除角色",
"Favorite characters to add them to HotSwaps": "将角色收藏以将它们添加到HotSwaps",
"Underlined Text": "下划线文本",
"Token Probabilities": "令牌概率",
"Token Probabilities": "Token概率",
"Close chat": "关闭聊天",
"Manage chat files": "管理聊天文件",
"Import Extension From Git Repo": "从Git存储库导入插件",
"Install extension": "安装插件",
"Manage extensions": "管理插件",
"Tokens persona description": "令牌人物描述",
"Most tokens": "大多数令牌",
"Least tokens": "最少令牌",
"Import Extension From Git Repo": "从Git存储库导入扩展",
"Install extension": "安装扩展",
"Manage extensions": "管理扩展",
"Tokens persona description": "Token人物描述",
"Most tokens": "大多数Token",
"Least tokens": "最少Token",
"Random": "随机",
"Skip Example Dialogues Formatting": "跳过示例对话格式",
"Import a theme file": "导入主题文件",
@ -860,7 +860,7 @@
"Unlocked Context Size": "解锁上下文长度",
"Display the response bit by bit as it is generated.": "逐位显示生成的响应。",
"When this is off, responses will be displayed all at once when they are complete.": "当此选项关闭时,响应将在完成时一次性显示。",
"Quick Prompts Edit": "快速提示词编辑",
"Quick Prompts Edit": "快速提示词编辑",
"Enable OpenAI completion streaming": "启用OpenAI完成流",
"Main": "主要",
"Utility Prompts": "Utility Prompts 实用提示词",
@ -873,19 +873,19 @@
"Send inline images": "发送内联图像",
"Assistant Prefill": "助手预填充",
"Start Claude's answer with...": "以以下内容开始Claude克劳德的回答...",
"Use system prompt (Claude 2.1+ only)": "仅使用系统提示词仅适用于Claude 2.1+",
"Send the system prompt for supported models. If disabled, the user message is added to the beginning of the prompt.": "为支持的模型发送系统提示词。如果禁用,则用户消息将添加到提示词的开头。",
"Prompts": "提示词",
"Total Tokens:": "总令牌数:",
"Use system prompt (Claude 2.1+ only)": "仅使用系统提示词仅适用于Claude 2.1+",
"Send the system prompt for supported models. If disabled, the user message is added to the beginning of the prompt.": "为支持的模型发送系统提示词。如果禁用,则用户消息将添加到提示词的开头。",
"Prompts": "提示词",
"Total Tokens:": "总Token数:",
"Insert prompt": "插入提示词",
"Delete prompt": "删除提示词",
"Import a prompt list": "导入提示词列表",
"Export this prompt list": "导出此提示词列表",
"Import a prompt list": "导入提示词列表",
"Export this prompt list": "导出此提示词列表",
"Reset current character": "重置当前角色",
"New prompt": "新提示词",
"Tokens": "Tokens 令牌",
"New prompt": "新提示词",
"Tokens": "Tokens Token",
"Want to update?": "获取最新版本",
"How to start chatting?": "如何快速开始使用酒馆",
"How to start chatting?": "如何快速开始聊天",
"Click": "点击",
"and select a": "并选择一个",
"Chat API": "聊天API",
@ -894,7 +894,7 @@
"Confused or lost?": "获取更多帮助?",
"click these icons!": "点击这个图标",
"SillyTavern Documentation Site": "SillyTavern帮助文档",
"Extras Installation Guide": "插件安装指南",
"Extras Installation Guide": "扩展安装指南",
"Still have questions?": "仍有疑问?",
"Join the SillyTavern Discord": "加入SillyTavern Discord",
"Post a GitHub issue": "发布GitHub问题",
@ -911,7 +911,7 @@
"Very aggressive": "非常激进",
"Eta cutoff is the main parameter of the special Eta Sampling technique.&#13;In units of 1e-4; a reasonable value is 3.&#13;Set to 0 to disable.&#13;See the paper Truncation Sampling as Language Model Desmoothing by Hewitt et al. (2022) for details.": "Eta截止是特殊Eta采样技术的主要参数。&#13;以1e-4为单位合理的值为3。&#13;设置为0以禁用。&#13;有关详细信息请参阅Hewitt等人的论文《Truncation Sampling as Language Model Desmoothing》2022年。",
"Learn how to contribute your idle GPU cycles to the Horde": "了解如何将您的空闲GPU时间分享给Horde",
"Use the appropriate tokenizer for Google models via their API. Slower prompt processing, but offers much more accurate token counting.": "通过其API为Google模型使用适当的标记器。处理速度较慢但提供更准确的令牌计数。",
"Use the appropriate tokenizer for Google models via their API. Slower prompt processing, but offers much more accurate token counting.": "通过其API为Google模型使用适当的标记器。处理速度较慢但提供更准确的Token计数。",
"Load koboldcpp order": "加载koboldcpp顺序",
"Use Google Tokenizer": "使用Google标记器"