This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
论坛
实训
竞赛
大数据
AI开发
Register
Sign In
scisharp
/
LLamaSharp
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
17
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
docs: improve GetEmbeddings page
If EmbeddingMode is not set to true, GetEmbeddings() throws an exception
pull/525/head
Scott W Harden
1 year ago
parent
fa85962ba2
commit
6c9ff3158c
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
docs/Examples/GetEmbeddings.md
+ 1
- 1
docs/Examples/GetEmbeddings.md
View File
@@ -14,7 +14,7 @@ public class GetEmbeddings
{
Console.Write("Please input your model path: ");
string modelPath = Console.ReadLine();
var embedder = new LLamaEmbedder(new ModelParams(modelPath));
var embedder = new LLamaEmbedder(new ModelParams(modelPath))
{ EmbeddingMode = true }
;
while (true)
{
Write
Preview
Loading…
Cancel
Save