Update README.md
Browse files
README.md
CHANGED
@@ -49,6 +49,29 @@ pipeline_tag: text-generation
|
|
49 |
|
50 |
# 快速开始
|
51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
- 翻译轻小说(或其他任何纯文本)
|
53 |
|
54 |
仓库提供了[翻译脚本](https://huggingface.co/sakuraumi/Sakura-13B-Galgame-Archived/blob/main/translate_novel.py)`translate_novel.py`,用于翻译轻小说等文本,支持输出中日对照文本。使用示例如下:
|
|
|
49 |
|
50 |
# 快速开始
|
51 |
|
52 |
+
- 翻译Epub文件
|
53 |
+
|
54 |
+
仓库提供了[翻译脚本](https://huggingface.co/sakuraumi/Sakura-13B-Galgame-Archived/blob/main/translate_epub.py)`translate_epub.py`(感谢[CjangCjengh](https://github.com/CjangCjengh)),用于翻译Epub格式的小说。使用示例如下:
|
55 |
+
|
56 |
+
```bash
|
57 |
+
# 参数说明:
|
58 |
+
# --model_name_or_path:模型本地路径或者huggingface仓库id。
|
59 |
+
# --model_version:模型版本,本仓库README表格中即可查看。可选范围:['0.1', '0.4', '0.5', '0.7', '0.8']
|
60 |
+
# --use_gptq_model:如果模型为gptq量化模型,则需加此项;如是全量模型,则不需要添加。
|
61 |
+
# --text_length:文本分块的最大单块文字数量。
|
62 |
+
# --data_path:日文原文Epub小说文件路径。
|
63 |
+
# --data_folder:批量翻译Epub小说时,小说所在的文件夹路径
|
64 |
+
# --output_folder:翻译后的Epub文件输出路径(注意是文件夹路径)。
|
65 |
+
# 以下为一个例子
|
66 |
+
python translate_epub.py \
|
67 |
+
--model_name_or_path SakuraLLM/Sakura-13B-LNovel-v0_8-4bit \
|
68 |
+
--model_version 0.8 \
|
69 |
+
--use_gptq_model \
|
70 |
+
--text_length 512 \
|
71 |
+
--data_path novel.epub \
|
72 |
+
--output_folder output
|
73 |
+
```
|
74 |
+
|
75 |
- 翻译轻小说(或其他任何纯文本)
|
76 |
|
77 |
仓库提供了[翻译脚本](https://huggingface.co/sakuraumi/Sakura-13B-Galgame-Archived/blob/main/translate_novel.py)`translate_novel.py`,用于翻译轻小说等文本,支持输出中日对照文本。使用示例如下:
|