-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation on how to measure model perplexity
- Loading branch information
Showing
6 changed files
with
37 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,3 @@ | |
|
||
# Ignore Sublime Text files. | ||
*.sublime-workspace | ||
|
||
# Ignore OpenBLAS directories and files | ||
vendor/OpenBLAS/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule llama.cpp
updated
21 files
+0 −5 | CMakeLists.txt | |
+1 −0 | README.md | |
+36 −5 | convert.py | |
+1 −1 | examples/common.cpp | |
+3 −2 | examples/common.h | |
+6 −3 | examples/embd-input/embd-input-lib.cpp | |
+1 −3 | examples/embd-input/embd-input.h | |
+2 −2 | examples/embedding/embedding.cpp | |
+1 −1 | examples/main/README.md | |
+2 −2 | examples/main/main.cpp | |
+2 −2 | examples/perplexity/perplexity.cpp | |
+1 −1 | examples/server/README.md | |
+120 −30 | examples/server/server.cpp | |
+5 −4 | examples/train-text-from-scratch/train-text-from-scratch.cpp | |
+46 −17 | ggml-cuda.cu | |
+0 −4 | ggml-cuda.h | |
+3 −1 | ggml-metal.m | |
+53 −9 | ggml.c | |
+3 −0 | ggml.h | |
+57 −12 | llama.cpp | |
+8 −6 | llama.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ignore everything in this directory except this file. | ||
* | ||
!.gitignore |