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.
|
- using LLama;
- using LLama.Common;
-
- namespace LLama.Unittest
- {
- public class BasicTest
- {
- [Fact]
- public void LoadModel()
- {
- var model = new LLamaModel(new ModelParams("Models/llama-2-7b-chat.ggmlv3.q3_K_S.bin", contextSize: 256));
- model.Dispose();
- }
- }
- }
|