jlama-core-0.8.4.jar中文-英文对照文档.zip

com.github.tjakejlama-core0.8.4API文档接口文档中文文档中英对照JavaJavaDoc操作手册Maven依赖Gradle依赖Java开发使用指南离线文档Java编程寒水馨
文件基础信息

文件名称: jlama-core-0.8.4.jar中文-英文对照文档.zip

文件类型: Java 组件中文文档
文件大小: 1.02 MB

选择下载方式

方式1:前往hanshuixin.org下载
前往 hanshuixin.org ,在hanshuixin.org查看/下载

文件简介

jlama-core-0.8.4.jar中文-英文对照文档.zip 中包含以下内容

  1. 中文-英文对照文档:位于压缩包内的“文档”文件夹中
  2. 说明文件:使用说明.txt、README.md
  3. Maven依赖:jlama-core-0.8.4.jar Maven依赖信息(可用于项目pom.xml).txt
  4. Gradle依赖:jlama-core-0.8.4.jar Gradle依赖信息(可用于项目build.gradle).txt
  5. jar包下载地址:jlama-core-0.8.4.jar下载地址(官方地址+国内镜像地址).txt
  6. 源码下载地址:jlama-core-0.8.4-sources.jar下载地址(官方地址+国内镜像地址).txt

使用方法

  1. 解压 jlama-core-0.8.4.jar中文-英文对照文档.zip,找到 解压后的文件夹>文档>index.html,双击index.html即可用浏览器打开查看。
  2. 为了防止解压后路径太长导致浏览器无法打开,推荐在解压时选择“解压到当前文件夹”(放心,自带文件夹,文件不会散落一地)。
  3. 有时,一套Java组件会有多个jar,所以在下载前,请仔细阅读本篇描述,以确保这就是你需要的文件。

组件信息

简介

  • 名称: Jlama Core
  • 描述: Jlama:一个现代的Java大语言模型推理引擎
  • 版本: 0.8.4

Maven依赖

<dependency>
	<groupId>com.github.tjake</groupId>
	<artifactId>jlama-core</artifactId>
	<version>0.8.4</version>
</dependency>

Gradle依赖

Gradle:
	implementation group: 'com.github.tjake', name: 'jlama-core', version: '0.8.4'
Gradle (Short):
	implementation 'com.github.tjake:jlama-core:0.8.4'
Gradle (Kotlin):
	implementation("com.github.tjake:jlama-core:0.8.4")

寒水馨 Java 组件中文文档系列说明

  • 文档为 Java 组件的中文翻译文档
  • 文档由 寒水馨 翻译整理,非官方版本
  • 本系列文档获取地址:https://hanshuixin.org
  • 本文档为人性化翻译,精心制作,请放心使用
  • 本文档为双语同时展示,一行原文、一行译文,可逐行对照,避免了原文/译文来回切换的麻烦
  • 有原文可参照,不再担心翻译偏差误导
  • 边学技术、边学英语
  • 只翻译了该翻译的内容,如:注释、说明、描述、用法讲解 等
  • 不该翻译的内容保持原样,如:类名、方法名、包名、类型、关键字、代码 等

版权声明与来源信息

本翻译文档基于以下开源项目制作,严格遵守各项目的开源许可证,并在此列出其版权归属与许可证信息。

本组件包含的 Java package(包)

com.github.tjake.jlama.math
com.github.tjake.jlama.model
com.github.tjake.jlama.model.bert
com.github.tjake.jlama.model.functions
com.github.tjake.jlama.model.gemma
com.github.tjake.jlama.model.gemma2
com.github.tjake.jlama.model.gpt2
com.github.tjake.jlama.model.granite
com.github.tjake.jlama.model.llama
com.github.tjake.jlama.model.mistral
com.github.tjake.jlama.model.mixtral
com.github.tjake.jlama.model.qwen2
com.github.tjake.jlama.safetensors
com.github.tjake.jlama.safetensors.prompt
com.github.tjake.jlama.safetensors.tokenizer
com.github.tjake.jlama.tensor
com.github.tjake.jlama.tensor.operations
com.github.tjake.jlama.util

本组件包含的 Java class(类)

com.github.tjake.jlama.math.ActivationFunction
com.github.tjake.jlama.math.FloatConversions
com.github.tjake.jlama.math.VectorMath
com.github.tjake.jlama.model.AbstractModel
com.github.tjake.jlama.model.CausalSelfAttention
com.github.tjake.jlama.model.DistributedContext
com.github.tjake.jlama.model.DistributedContext.Builder
com.github.tjake.jlama.model.LayerNorm
com.github.tjake.jlama.model.MLPBlock
com.github.tjake.jlama.model.MoEBlock
com.github.tjake.jlama.model.ModelSupport
com.github.tjake.jlama.model.RMSNorm
com.github.tjake.jlama.model.TransformerBlock
com.github.tjake.jlama.model.bert.BertConfig
com.github.tjake.jlama.model.bert.BertModel
com.github.tjake.jlama.model.bert.BertTokenizer
com.github.tjake.jlama.model.functions.ClassifyOutput
com.github.tjake.jlama.model.functions.EmbedInput
com.github.tjake.jlama.model.functions.FeedForward
com.github.tjake.jlama.model.functions.Generator
com.github.tjake.jlama.model.functions.Generator.GenerateBuilder
com.github.tjake.jlama.model.functions.Generator.Response
com.github.tjake.jlama.model.functions.PoolingLayer
com.github.tjake.jlama.model.functions.SampleOutput
com.github.tjake.jlama.model.gemma.GemmaConfig
com.github.tjake.jlama.model.gemma.GemmaModel
com.github.tjake.jlama.model.gemma.GemmaTokenizer
com.github.tjake.jlama.model.gemma2.Gemma2Config
com.github.tjake.jlama.model.gemma2.Gemma2Model
com.github.tjake.jlama.model.gpt2.GPT2Config
com.github.tjake.jlama.model.gpt2.GPT2Model
com.github.tjake.jlama.model.gpt2.GPT2Tokenizer
com.github.tjake.jlama.model.granite.GraniteConfig
com.github.tjake.jlama.model.granite.GraniteModel
com.github.tjake.jlama.model.llama.LlamaConfig
com.github.tjake.jlama.model.llama.LlamaModel
com.github.tjake.jlama.model.llama.LlamaTokenizer
com.github.tjake.jlama.model.mistral.MistralConfig
com.github.tjake.jlama.model.mistral.MistralModel
com.github.tjake.jlama.model.mixtral.MixtralConfig
com.github.tjake.jlama.model.mixtral.MixtralModel
com.github.tjake.jlama.model.qwen2.Qwen2Config
com.github.tjake.jlama.model.qwen2.Qwen2Model
com.github.tjake.jlama.safetensors.Config
com.github.tjake.jlama.safetensors.HTTPSafeTensorLoader
com.github.tjake.jlama.safetensors.SafeTensorIndex
com.github.tjake.jlama.safetensors.SafeTensorSplitter
com.github.tjake.jlama.safetensors.SafeTensorSupport
com.github.tjake.jlama.safetensors.TensorInfo
com.github.tjake.jlama.safetensors.WeightLoader
com.github.tjake.jlama.safetensors.Weights
com.github.tjake.jlama.safetensors.prompt.Function
com.github.tjake.jlama.safetensors.prompt.Function.Builder
com.github.tjake.jlama.safetensors.prompt.Parameters
com.github.tjake.jlama.safetensors.prompt.Parameters.Builder
com.github.tjake.jlama.safetensors.prompt.PromptContext
com.github.tjake.jlama.safetensors.prompt.PromptSupport
com.github.tjake.jlama.safetensors.prompt.PromptSupport.Builder
com.github.tjake.jlama.safetensors.prompt.Tool
com.github.tjake.jlama.safetensors.prompt.ToolCall
com.github.tjake.jlama.safetensors.prompt.ToolResult
com.github.tjake.jlama.safetensors.tokenizer.BPETokenizer
com.github.tjake.jlama.safetensors.tokenizer.Tokenizer
com.github.tjake.jlama.safetensors.tokenizer.TokenizerModel
com.github.tjake.jlama.safetensors.tokenizer.TokenizerModel.Normalizer
com.github.tjake.jlama.safetensors.tokenizer.TokenizerModel.NormalizerItem
com.github.tjake.jlama.safetensors.tokenizer.TokenizerModel.Pattern
com.github.tjake.jlama.safetensors.tokenizer.TokenizerModel.PreTokenizer
com.github.tjake.jlama.safetensors.tokenizer.TokenizerModel.PretokenizerItem
com.github.tjake.jlama.safetensors.tokenizer.WordPieceTokenizer
com.github.tjake.jlama.tensor.AbstractTensor<V,T>
com.github.tjake.jlama.tensor.BFloat16BufferTensor
com.github.tjake.jlama.tensor.Float16BufferTensor
com.github.tjake.jlama.tensor.FloatBufferTensor
com.github.tjake.jlama.tensor.KvBufferCache
com.github.tjake.jlama.tensor.Q4ByteBufferTensor
com.github.tjake.jlama.tensor.Q5ByteBufferTensor
com.github.tjake.jlama.tensor.Q8ByteBufferTensor
com.github.tjake.jlama.tensor.SegmentedTensor
com.github.tjake.jlama.tensor.TensorCache
com.github.tjake.jlama.tensor.TensorCache.ShapeKey
com.github.tjake.jlama.tensor.TensorShape
com.github.tjake.jlama.tensor.operations.NaiveTensorOperations
com.github.tjake.jlama.tensor.operations.PanamaTensorOperations
com.github.tjake.jlama.tensor.operations.TensorOperations
com.github.tjake.jlama.tensor.operations.TensorOperationsProvider
com.github.tjake.jlama.util.BiIntConsumer
com.github.tjake.jlama.util.DebugSupport
com.github.tjake.jlama.util.Downloader
com.github.tjake.jlama.util.HttpSupport
com.github.tjake.jlama.util.JsonSupport
com.github.tjake.jlama.util.JsonSupport.JlamaPrettyPrinter
com.github.tjake.jlama.util.MachineSpec
com.github.tjake.jlama.util.Pair<T1,T2>
com.github.tjake.jlama.util.PhysicalCoreExecutor
com.github.tjake.jlama.util.ProgressReporter
com.github.tjake.jlama.util.RuntimeSupport
com.github.tjake.jlama.util.TriConsumer<P,M,N>
com.github.tjake.jlama.util.UnsafeDirectByteBuffer