Skip to content

Commit 4d7fc00

Browse files
committed
Removed mentions of llava
1 parent 33865e2 commit 4d7fc00

6 files changed

Lines changed: 11 additions & 35 deletions

File tree

LLama.Benchmark/Constants.cs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,6 @@ public static string ModelDir
1414
public static string Generative7BModelPath => Path.Combine(ModelDir, "llama-2-7b-chat.Q3_K_S.gguf");
1515
public static string EmbeddingModelPath => Path.Combine(ModelDir, "all-MiniLM-L12-v2.Q8_0.gguf");
1616

17-
public static string LLavaModelPath => Path.Combine("llava-v1.6-mistral-7b.Q3_K_XS.gguf");
18-
public static string LLavaMmpPath => Path.Combine("mmproj-model-f16.gguf");
19-
public static string LLavaImage => "Assets/extreme-ironing-taxi-610x427.jpg";
20-
2117
public static string TextCompletionPromptsFilePath => "Assets/TextCompletionPrompts.txt";
2218
}
2319
}

LLama/Abstractions/ILLamaExecutor.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using System.Collections.Generic;
1+
using System.Collections.Generic;
22
using System.Threading;
33
using LLama.Native;
44

@@ -14,8 +14,8 @@ public interface ILLamaExecutor
1414
/// </summary>
1515
public LLamaContext Context { get; }
1616

17-
// LLava Section
18-
//
17+
// Multimodal Section
18+
1919
/// <summary>
2020
/// Identify if it's a multi-modal model and there is a image to process.
2121
/// </summary>

LLama/LLamaExecutorBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ public abstract class StatefulExecutorBase : ILLamaExecutor
6969
/// </summary>
7070
protected AntipromptProcessor AntipromptProcessor { get; }
7171

72-
// LLava Section
73-
//
72+
// Multimodal Section
73+
7474
/// <inheritdoc />
7575
public bool IsMultiModal
7676
{

LLama/Native/Load/NativeLibraryConfig.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -283,13 +283,13 @@ public override string ToString()
283283
public sealed partial class NativeLibraryConfig
284284
{
285285
/// <summary>
286-
/// Set configurations for all the native libraries, including LLama and LLava
286+
/// Set configurations for all the native libraries, including LLama and Multimodal
287287
/// </summary>
288-
[Obsolete("Please use NativeLibraryConfig.All instead, or set configurations for NativeLibraryConfig.LLama and NativeLibraryConfig.LLavaShared respectively.")]
288+
[Obsolete("Please use NativeLibraryConfig.All instead, or set configurations for NativeLibraryConfig.LLama and NativeLibraryConfig.Mtmd respectively.")]
289289
public static NativeLibraryConfigContainer Instance => All;
290290

291291
/// <summary>
292-
/// Set configurations for all the native libraries, including LLama and LLava
292+
/// Set configurations for all the native libraries, including LLama and Multimodal
293293
/// </summary>
294294
public static NativeLibraryConfigContainer All { get; }
295295

LLama/Native/MtmdImageEmbed.cs

Lines changed: 0 additions & 20 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![logo](Assets/LLamaSharpLogo.png)
1+
![logo](Assets/LLamaSharpLogo.png)
22

33
[![Discord](https://img.shields.io/discord/1106946823282761851?label=Discord)](https://discord.gg/7wNVU65ZDY)
44
[![QQ Group](https://img.shields.io/static/v1?label=QQ&message=加入QQ群&color=brightgreen)](http://qm.qq.com/cgi-bin/qm/qr?_wv=1027&k=sN9VVMwbWjs5L0ATpizKKxOcZdEPMrp8&authKey=RLDw41bLTrEyEgZZi%2FzT4pYk%2BwmEFgFcrhs8ZbkiVY7a4JFckzJefaYNW6Lk4yPX&noverify=0&group_code=985366726)
@@ -11,7 +11,7 @@
1111
[![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Vulkan?label=LLamaSharp.Backend.Vulkan)](https://www.nuget.org/packages/LLamaSharp.Backend.Vulkan)
1212

1313

14-
**LLamaSharp is a cross-platform library to run 🦙LLaMA/LLaVA model (and others) on your local device. Based on [llama.cpp](https://github.com/ggerganov/llama.cpp), inference with LLamaSharp is efficient on both CPU and GPU. With the higher-level APIs and RAG support, it's convenient to deploy LLMs (Large Language Models) in your application with LLamaSharp.**
14+
**LLamaSharp is a cross-platform library to run 🦙LLaMA model (and others) on your local device. Based on [llama.cpp](https://github.com/ggerganov/llama.cpp), inference with LLamaSharp is efficient on both CPU and GPU. With the higher-level APIs and RAG support, it's convenient to deploy LLMs (Large Language Models) in your application with LLamaSharp.**
1515

1616
**Please star the repo to show your support for this project!🤗**
1717

@@ -49,7 +49,7 @@
4949
<table class="center">
5050
<tr style="line-height: 0">
5151
<td width=50% height=30 style="border: none; text-align: center">LLaMA</td>
52-
<td width=50% height=30 style="border: none; text-align: center">LLaVA</td>
52+
<td width=50% height=30 style="border: none; text-align: center">Multimodal</td>
5353
</tr>
5454
<tr>
5555
<td width=25% style="border: none"><img src="Assets/console_demo.gif" style="width:100%"></td>

0 commit comments

Comments
 (0)