-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: ggml graph encoding format (#66)
This commit adds the `ggml` graph encoding format to the `graph_encoding` enum. The motivation for this is to allow the `wasi-nn` interface to support models that are encoded in the `ggml` format which is the model format used by llama.cpp. Signed-off-by: Daniel Bevenius <[email protected]>
- Loading branch information
Showing
2 changed files
with
2 additions
and
0 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
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 |
---|---|---|
|
@@ -78,6 +78,7 @@ interface graph { | |
tensorflow, | ||
pytorch, | ||
tensorflowlite, | ||
ggml, | ||
autodetect, | ||
} | ||
|
||
|