技术逆向英语|202604001

张开发
2026/5/18 14:49:22 15 分钟阅读
技术逆向英语|202604001
文章目录1-01原文中文翻译核心语法分析1-02原文中文翻译核心语法分析1-03原文中文翻译核心语法分析1-04原文中文翻译核心语法分析1-01原文The happiness stemming from most events lies in the closeness between the expected result and reality.But the AI model can only estimate the closeness of the ideal gains to practical benefits, and is unable to quantify the happiness.中文翻译大多数事件所带来的幸福感在于预期结果与现实之间的接近程度。但人工智能模型只能估算理想收益与实际收益之间的接近程度而无法量化幸福感。核心语法分析现在分词短语作定语stemming from most events修饰happiness相当于which stems from...。lie in 名词短语lies in the closeness表示“在于……的接近程度”。between … and …表示两者之间的关系预期结果与现实。并列谓语can only estimate ... and is unable to quantify ...主语the AI model后跟两个并列谓语第一个有情态动词can第二个用is unable to。1-02原文Is a computer with low performance able to run an AI model? I’ll tell you the truth: of course, we can use small AI models to complete many tasks on a computer with limited resources.First, we need to download the llama.cpp source code to my disk and compile it.Second, we can search for suitable AI model files that have the file extension “gguf” and download them. For example, through the website https://hf-mirror.com/, we can obtain many ggf model files.For example, suppose you have a notebook中文翻译一台性能较低的电脑能够运行人工智能模型吗实话告诉你当然可以我们可以使用小型 AI 模型在资源有限的电脑上完成许多任务。首先我们需要将 llama.cpp 源代码下载到我的磁盘并编译它。其次我们可以搜索扩展名为 “gguf” 的合适 AI 模型文件并下载它们。例如通过网站 https://hf-mirror.com/我们可以获得许多 gguf 模型文件。例如假设你有一台笔记本电脑……核心语法分析be able toIs a computer ... able to run表示能力。of course作插入语加强语气表示肯定回答。不定式作目的状语to complete many tasks表示使用小模型的目的。并列祈使句need to download ... and compile it中and连接两个动作。定语从句files that have the file extensionthat指代model files。for example作插入语用于举例说明。1-03原文computer equipped with a J4125 CPU, 8G of memory, and a 128G hard disk. The following AI models could be installed on it and run normally:Meta-Llama-3-8B-Instruct-Q4_K_M.ggufPhi-3-mini-4k-instruct-q4.gguftinyllama-1.1b-chat-v1.0.Q4_K_M.ggufqwen2.5-1.8b-instruct-q4_k_m.ggufgemma-2-2b-it-q4_k_m.ggufLast, we had better write a script to manage them, run them, monitor system resources, and so on. We could generate the script using DeepSeek中文翻译一台配备 J4125 CPU、8G 内存和 128G 硬盘的计算机。以下 AI 模型可以安装在其上并正常运行模型列表略最后我们最好编写一个脚本来管理它们、运行它们、监控系统资源等。我们可以使用 DeepSeek 生成这个脚本。核心语法分析过去分词短语作定语equipped with ...修饰computer表示“配备有……的计算机”。情态动词 couldcould be installed表示可能性或建议。并列动词不定式to manage them, run them, monitor system resources三个动作并列作a script的定语。had better 动词原形we had better write表示强烈建议。using DeepSeek现在分词短语作方式状语表示“通过使用 DeepSeek”。1-04原文Assembly programming language is a symbolic language, and it can be used to convert mnemonic symbols into machine language consisting of streams of 0s and 1s by the assembler.中文翻译汇编编程语言是一种符号语言它可以被用来通过汇编器将助记符转换为由 0 和 1 流组成的机器语言。核心语法分析并列句... is a ..., and it can be used to ...and连接两个分句。be used to do sthcan be used to convert表示“被用来做某事”。convert A into Bconvert mnemonic symbols into machine language表示“将 A 转换为 B”。现在分词短语作定语consisting of streams of 0s and 1s修饰machine language。by the assembler介词短语作方式状语表示动作的执行者汇编器。

更多文章