• Stars
    star
    1,805
  • Rank 24,702 (Top 0.6 %)
  • Language
    C#
  • License
    MIT License
  • Created 12 months ago
  • Updated 25 days ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A cross-platform library to run 🦙LLaMA/LLaVA model (and others) on your local device efficiently.

LLamaSharp - .NET Binding for llama.cpp

logo

Discord QQ Group LLamaSharp Badge LLamaSharp Badge LLamaSharp Badge LLamaSharp Badge

The C#/.NET binding of llama.cpp. It provides APIs to inference the LLaMa Models and deploy it on local environment. It works on both Windows, Linux and MAC without requirment for compiling llama.cpp yourself. Its performance is close to llama.cpp.

Furthermore, it provides integrations with other projects such as BotSharp to provide higher-level applications and UI.

Documentation

Installation

Firstly, search LLamaSharp in nuget package manager and install it.

PM> Install-Package LLamaSharp

Then, search and install one of the following backends:

LLamaSharp.Backend.Cpu
LLamaSharp.Backend.Cuda11
LLamaSharp.Backend.Cuda12

Here's the mapping of them and corresponding model samples provided by LLamaSharp. If you're not sure which model is available for a version, please try our sample model.

LLamaSharp.Backend LLamaSharp Verified Model Resources llama.cpp commit id
- v0.2.0 This version is not recommended to use. -
- v0.2.1 WizardLM, Vicuna (filenames with "old") -
v0.2.2 v0.2.2, v0.2.3 WizardLM, Vicuna (filenames without "old") 63d2046
v0.3.0, v0.3.1 v0.3.0, v0.4.0 LLamaSharpSamples v0.3.0, WizardLM 7e4ea5b
v0.4.1-preview (cpu only) v0.4.1-preview Open llama 3b, Open Buddy aacdbd4
v0.4.2-preview (cpu,cuda11) v0.4.2-preview Llama2 7b -

Many hands make light work. If you have found any other model resource that could work for a version, we'll appreciate it for opening an PR about it! 😊

We publish the backend with cpu, cuda11 and cuda12 because they are the most popular ones. If none of them matches, please compile the llama.cpp from source and put the libllama under your project's output path (guide).

FAQ

  1. GPU out of memory: Please try setting n_gpu_layers to a smaller number.
  2. Unsupported model: llama.cpp is under quick development and often has break changes. Please check the release date of the model and find a suitable version of LLamaSharp to install, or use the model we provide on huggingface.

Usages

Model Inference and Chat Session

LLamaSharp provides two ways to run inference: LLamaExecutor and ChatSession. The chat session is a higher-level wrapping of the executor and the model. Here's a simple example to use chat session.

using LLama.Common;
using LLama;

string modelPath = "<Your model path>" // change it to your own model path
var prompt = "Transcript of a dialog, where the User interacts with an Assistant named Bob. Bob is helpful, kind, honest, good at writing, and never fails to answer the User's requests immediately and with precision.\r\n\r\nUser: Hello, Bob.\r\nBob: Hello. How may I help you today?\r\nUser: Please tell me the largest city in Europe.\r\nBob: Sure. The largest city in Europe is Moscow, the capital of Russia.\r\nUser:"; // use the "chat-with-bob" prompt here.

// Initialize a chat session
var ex = new InteractiveExecutor(new LLamaModel(new ModelParams(modelPath, contextSize: 1024, seed: 1337, gpuLayerCount: 5)));
ChatSession session = new ChatSession(ex);

// show the prompt
Console.WriteLine();
Console.Write(prompt);

// run the inference in a loop to chat with LLM
while (prompt != "stop")
{
    foreach (var text in session.Chat(prompt, new InferenceParams() { Temperature = 0.6f, AntiPrompts = new List<string> { "User:" } }))
    {
        Console.Write(text);
    }
    prompt = Console.ReadLine();
}

// save the session
session.SaveSession("SavedSessionPath");

Quantization

The following example shows how to quantize the model. With LLamaSharp you needn't to compile c++ project and run scripts to quantize the model, instead, just run it in C#.

string srcFilename = "<Your source path>";
string dstFilename = "<Your destination path>";
string ftype = "q4_0";
if(Quantizer.Quantize(srcFileName, dstFilename, ftype))
{
    Console.WriteLine("Quantization succeed!");
}
else
{
    Console.WriteLine("Quantization failed!");
}

For more usages, please refer to Examples.

Web API

We provide the integration of ASP.NET core here. Since currently the API is not stable, please clone the repo and use it. In the future we'll publish it on NuGet.

Since we are in short of hands, if you're familiar with ASP.NET core, we'll appreciate it if you would like to help upgrading the Web API integration.

Demo

demo-console

Roadmap


: completed. ⚠️: outdated for latest release but will be updated. 🔳: not completed


LLaMa model inference

Embeddings generation, tokenization and detokenization

Chat session

Quantization

State saving and loading

⚠️ BotSharp Integration

⚠️ ASP.NET core Integration

⚠️ Semantic-kernel Integration

🔳 Fine-tune

🔳 Local document search

🔳 MAUI Integration

🔳 Follow up llama.cpp and improve performance

Assets

Some extra model resources could be found below:

The weights included in the magnet is exactly the weights from Facebook LLaMa.

The prompts could be found below:

Contributing

Any contribution is welcomed! Please read the contributing guide. You can do one of the followings to help us make LLamaSharp better:

  • Append a model link that is available for a version. (This is very important!)
  • Star and share LLamaSharp to let others know it.
  • Add a feature or fix a BUG.
  • Help to develop Web API and UI integration.
  • Just start an issue about the problem you met!

Contact us

Join our chat on Discord.

Join QQ group

License

This project is licensed under the terms of the MIT license.

More Repositories

1

TensorFlow.NET

.NET Standard bindings for Google's TensorFlow for developing, training and deploying Machine Learning models in C# and F#.
C#
3,118
star
2

BotSharp

The AI Agent Framework in .NET
C#
1,901
star
3

NumSharp

High Performance Computation for N-D Tensors in .NET, similar API to NumPy.
C#
1,302
star
4

Numpy.NET

C#/F# bindings for NumPy - a fundamental library for scientific computing, machine learning and AI
C#
640
star
5

Keras.NET

Keras.NET is a high-level neural networks API for C# and F#, with Python Binding and capable of running on top of TensorFlow, CNTK, or Theano.
C#
587
star
6

Pandas.NET

Pandas port for C# and F#, data analysis tool, process multi-dim array in DataFrame.
C#
526
star
7

SiaNet

An easy to use C# deep learning library with CUDA/OpenCL support
C#
376
star
8

SciSharp-Stack-Examples

Practical examples written in SciSharp's machine learning libraries
C#
310
star
9

SharpCV

A Computer Vision library for C# and F# that combines OpenCV and NDArray together in .NET Standard.
C#
289
star
10

Torch.NET

.NET bindings for PyTorch. Machine Learning with C# / F# with Multi-GPU/CPU support
C#
270
star
11

Gym.NET

openai/gym's popular toolkit for developing and comparing reinforcement learning algorithms port to C#.
C#
114
star
12

CherubNLP

Natural Language Processing in .NET Core
C#
111
star
13

SciSharp

SciSharp STACK is focused on building tools for Machine Learning development.
Vue
104
star
14

SciSharpCube

Quickly experience all the latest features of SciSharp Machine Learning tools in docker container.
Jupyter Notebook
95
star
15

ICSharpCore

Jupyter kernel in C# .NET Core which is the standard interface for SciSharp STACK.
C#
75
star
16

Bigtree.Algorithm

Machine Learning algorithm library in .NET Core
C#
62
star
17

Plot.NET

.NET wrapper of plotly.js for ICSharpCore
C#
60
star
18

Tensor.NET

A lightweight and high-performance tensor library which provides numpy-like operations but .NET style interfaces. It supports generic tensor, Linq, C# native slices and so on. (Qushui student project))
C#
60
star
19

Matplotlib.Net

.NET wrapper for the Python plotting library Matplotlib
C#
47
star
20

dotnet-mysql-replication

C# Implementation of MySQL replication protocol
C#
45
star
21

BotSharp-UI

Build, test and manage your AI Agents in the central place.
SCSS
40
star
22

scikit-learn.net

Machine Learning in .NET Core.
C#
37
star
23

CodeMinion

A code generator framework capable of auto-generating the APIs of several SciSharp libraries.
C#
34
star
24

OpenAIGym.NET

A toolkit for developing and comparing reinforcement learning algorithms.
C#
26
star
25

Ludwig.NET

Ludwig is a toolbox that allows to train and test deep learning models without the need to write code.
C#
26
star
26

SciSharp.Models

Image Classification, Time Series, Transformer, Object Detection
Jupyter Notebook
22
star
27

protobuf.Text

Text format support for protobuf
C#
21
star
28

Microcharts.Matplotlib

Microcharts.Matplotlib is a wrapper of Microcharts for Data Science and Machine Learning
C#
21
star
29

SharpPythonCompiler

A compiler which can transform the convention of C# code to the convention of Python
C#
20
star
30

SpaCy.NET

.NET wrapper of spaCy (Industrial-strength NLP)
18
star
31

tensorflow-net-docs

Tensorflow.NET documentation
C#
16
star
32

unity-ml-agents.net

C#
15
star
33

NumSharp.Lite

NumSharp compact version without full datatype supported.
C#
10
star
34

TensorFlow.NET.OpencvAdapter

A library which enables using tensorflow.net with opencvsharp. It reuses the memory to provide a good performance.
C#
9
star
35

PillowSharp

The friendly PIL fork (Python Imaging Library) in C#.
9
star
36

SciSharpStudio

SciSharp Studio is a web based AI/ ML development tool.
HTML
6
star
37

qdrant-csharp

Qdrant .NET Client
C#
5
star
38

TensorDebuggerVisualizers

The Sheet Viewer, which provides instant view of the contents of the sheet when debugging.
C#
4
star
39

ChillXML

2
star