Commit ·
7caf653
1
Parent(s): 143291b
modelfile*.txt: use POSIX path separator (/)
Browse filesUse the POSIX file separator (a slash, /)
instead of the Windows one (a backslash, \)
to support Unix(-like) platforms like MacOS and Linux.
The ollama documentation on modelfiles uses the POSIX path separator[1],
which might indicate their preference on such representation.
[1]: https://github.com/ollama/ollama/blob/main/docs/modelfile.md#build-from-a-gguf-file
- modelfilegemmapro-20kctx.txt +1 -1
- modelfilegemmapro-r.txt +1 -1
- modelfilegemmapro.txt +1 -1
modelfilegemmapro-20kctx.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM .
|
| 2 |
|
| 3 |
PARAMETER num_ctx 20000
|
| 4 |
|
|
|
|
| 1 |
+
FROM ./GemmaPro_q4.gguf
|
| 2 |
|
| 3 |
PARAMETER num_ctx 20000
|
| 4 |
|
modelfilegemmapro-r.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM .
|
| 2 |
|
| 3 |
PARAMETER num_ctx 2048
|
| 4 |
|
|
|
|
| 1 |
+
FROM ./GemmaPro_q4.gguf
|
| 2 |
|
| 3 |
PARAMETER num_ctx 2048
|
| 4 |
|
modelfilegemmapro.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM .
|
| 2 |
|
| 3 |
PARAMETER num_ctx 2048
|
| 4 |
|
|
|
|
| 1 |
+
FROM ./GemmaPro_q4.gguf
|
| 2 |
|
| 3 |
PARAMETER num_ctx 2048
|
| 4 |
|