You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 6.2 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. # LLamaSharp - .NET Binding for llama.cpp
  2. ![logo](Assets/LLamaSharpLogo.png)
  3. [![Discord](https://img.shields.io/discord/1106946823282761851?label=Discord)](https://discord.gg/M2fS4PNj)
  4. [![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp?label=LLamaSharp)](https://www.nuget.org/packages/LLamaSharp)
  5. [![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cpu?label=LLamaSharp.Backend.Cpu)](https://www.nuget.org/packages/LLamaSharp.Backend.Cpu)
  6. [![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cuda11?label=LLamaSharp.Backend.Cuda11)](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda11)
  7. [![LLamaSharp Badge](https://img.shields.io/nuget/v/LLamaSharp.Backend.Cuda12?label=LLamaSharp.Backend.Cuda12)](https://www.nuget.org/packages/LLamaSharp.Backend.Cuda12)
  8. The C#/.NET binding of [llama.cpp](https://github.com/ggerganov/llama.cpp). It provides APIs to inference the LLaMa Models and deploy it on native environment or Web. It works on
  9. both Windows and Linux and does NOT require compiling llama.cpp yourself.
  10. - Load and inference LLaMa models
  11. - Simple APIs for chat session
  12. - Quantize the model in C#/.NET
  13. - ASP.NET core integration
  14. - Native UI integration
  15. ## Installation
  16. Firstly, search `LLamaSharp` in nuget package manager and install it.
  17. ```
  18. PM> Install-Package LLamaSharp
  19. ```
  20. Then, search and install one of the following backends:
  21. ```
  22. LLamaSharp.Backend.Cpu
  23. LLamaSharp.Backend.Cuda11
  24. LLamaSharp.Backend.Cuda12
  25. ```
  26. The latest version of `LLamaSharp` and `LLamaSharp.Backend` may not always be the same. `LLamaSharp.Backend` follows up [llama.cpp](https://github.com/ggerganov/llama.cpp) because sometimes the
  27. break change of it makes some model weights invalid. If you are not sure which version of backend to install, just install the latest version.
  28. Note that version v0.2.1 has a package named `LLamaSharp.Cpu`. After v0.2.2 it will be dropped.
  29. 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](https://github.com/ggerganov/llama.cpp)
  30. from source and put the `libllama` under your project's output path. When building from source, please add `-DBUILD_SHARED_LIBS=ON` to enable the library generation.
  31. ## FAQ
  32. 1. GPU out of memory: v0.2.3 put all layers into GPU by default. If the momory use is out of the capacity of your GPU, please set `n_gpu_layers` to a smaller number.
  33. 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.
  34. ## Simple Benchmark
  35. Currently it's only a simple benchmark to indicate that the performance of `LLamaSharp` is close to `llama.cpp`. Experiments run on a computer
  36. with Intel i7-12700, 3060Ti with 7B model. Note that the benchmark uses `LLamaModel` instead of `LLamaModelV1`.
  37. #### Windows
  38. - llama.cpp: 2.98 words / second
  39. - LLamaSharp: 2.94 words / second
  40. ## Usages
  41. #### Model Inference and Chat Session
  42. Currently, `LLamaSharp` provides two kinds of model, `LLamaModelV1` and `LLamaModel`. Both of them works but `LLamaModel` is more recommended
  43. because it provides better alignment with the master branch of [llama.cpp](https://github.com/ggerganov/llama.cpp).
  44. Besides, `ChatSession` makes it easier to wrap your own chat bot. The code below is a simple example. For all examples, please refer to
  45. [Examples](./LLama.Examples).
  46. ```cs
  47. var model = new LLamaModel(new LLamaParams(model: "<Your path>", n_ctx: 512, repeat_penalty: 1.0f));
  48. var session = new ChatSession<LLamaModel>(model).WithPromptFile("<Your prompt file path>")
  49. .WithAntiprompt(new string[] { "User:" });
  50. Console.Write("\nUser:");
  51. while (true)
  52. {
  53. Console.ForegroundColor = ConsoleColor.Green;
  54. var question = Console.ReadLine();
  55. Console.ForegroundColor = ConsoleColor.White;
  56. var outputs = session.Chat(question); // It's simple to use the chat API.
  57. foreach (var output in outputs)
  58. {
  59. Console.Write(output);
  60. }
  61. }
  62. ```
  63. #### Quantization
  64. 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#.
  65. ```cs
  66. string srcFilename = "<Your source path>";
  67. string dstFilename = "<Your destination path>";
  68. string ftype = "q4_0";
  69. if(Quantizer.Quantize(srcFileName, dstFilename, ftype))
  70. {
  71. Console.WriteLine("Quantization succeed!");
  72. }
  73. else
  74. {
  75. Console.WriteLine("Quantization failed!");
  76. }
  77. ```
  78. For more usages, please refer to [Examples](./LLama.Examples).
  79. #### Web API
  80. We provide the integration of ASP.NET core [here](./LLama.WebAPI). Since currently the API is not stable, please clone the repo and use it. In the future we'll publish it on NuGet.
  81. ## Demo
  82. ![demo-console](Assets/console_demo.gif)
  83. ## Roadmap
  84. ✅ LLaMa model inference.
  85. ✅ Embeddings generation.
  86. ✅ Chat session.
  87. ✅ Quantization
  88. ✅ ASP.NET core Integration
  89. 🔳 UI Integration
  90. 🔳 Follow up llama.cpp and improve performance
  91. ## Assets
  92. The model weights are too large to be included in the repository. However some resources could be found below:
  93. - [eachadea/ggml-vicuna-13b-1.1](https://huggingface.co/eachadea/ggml-vicuna-13b-1.1/tree/main)
  94. - [TheBloke/wizardLM-7B-GGML](https://huggingface.co/TheBloke/wizardLM-7B-GGML)
  95. - Magnet: [magnet:?xt=urn:btih:b8287ebfa04f879b048d4d4404108cf3e8014352&dn=LLaMA](magnet:?xt=urn:btih:b8287ebfa04f879b048d4d4404108cf3e8014352&dn=LLaMA)
  96. The weights included in the magnet is exactly the weights from [Facebook LLaMa](https://github.com/facebookresearch/llama).
  97. The prompts could be found below:
  98. - [llama.cpp prompts](https://github.com/ggerganov/llama.cpp/tree/master/prompts)
  99. - [ChatGPT_DAN](https://github.com/0xk1h0/ChatGPT_DAN)
  100. - [awesome-chatgpt-prompts](https://github.com/f/awesome-chatgpt-prompts)
  101. - [awesome-chatgpt-prompts-zh](https://github.com/PlexPt/awesome-chatgpt-prompts-zh) (Chinese)
  102. ## Contact us
  103. Join our chat on [Discord](https://discord.gg/quBc2jrz).
  104. ## License
  105. This project is licensed under the terms of the MIT license.

C#/.NET上易用的LLM高性能推理框架,支持LLaMA和LLaVA系列模型。