Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
8fa477fa
Unverified
Commit
8fa477fa
authored
Jul 27, 2023
by
Michael Yang
Committed by
GitHub
Jul 27, 2023
Browse files
Merge pull request #225 from jmorganca/stop-conditions
add stop conditions
parents
01d155c9
fadf75f9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
13 deletions
+39
-13
api/types.go
api/types.go
+14
-13
llama/llama.go
llama/llama.go
+25
-0
No files found.
api/types.go
View file @
8fa477fa
...
...
@@ -165,19 +165,20 @@ type Options struct {
EmbeddingOnly
bool
`json:"embedding_only,omitempty"`
// Predict options
RepeatLastN
int
`json:"repeat_last_n,omitempty"`
RepeatPenalty
float32
`json:"repeat_penalty,omitempty"`
FrequencyPenalty
float32
`json:"frequency_penalty,omitempty"`
PresencePenalty
float32
`json:"presence_penalty,omitempty"`
Temperature
float32
`json:"temperature,omitempty"`
TopK
int
`json:"top_k,omitempty"`
TopP
float32
`json:"top_p,omitempty"`
TFSZ
float32
`json:"tfs_z,omitempty"`
TypicalP
float32
`json:"typical_p,omitempty"`
Mirostat
int
`json:"mirostat,omitempty"`
MirostatTau
float32
`json:"mirostat_tau,omitempty"`
MirostatEta
float32
`json:"mirostat_eta,omitempty"`
PenalizeNewline
bool
`json:"penalize_newline,omitempty"`
RepeatLastN
int
`json:"repeat_last_n,omitempty"`
RepeatPenalty
float32
`json:"repeat_penalty,omitempty"`
FrequencyPenalty
float32
`json:"frequency_penalty,omitempty"`
PresencePenalty
float32
`json:"presence_penalty,omitempty"`
Temperature
float32
`json:"temperature,omitempty"`
TopK
int
`json:"top_k,omitempty"`
TopP
float32
`json:"top_p,omitempty"`
TFSZ
float32
`json:"tfs_z,omitempty"`
TypicalP
float32
`json:"typical_p,omitempty"`
Mirostat
int
`json:"mirostat,omitempty"`
MirostatTau
float32
`json:"mirostat_tau,omitempty"`
MirostatEta
float32
`json:"mirostat_eta,omitempty"`
PenalizeNewline
bool
`json:"penalize_newline,omitempty"`
StopConditions
[]
string
`json:"stop_conditions,omitempty"`
NumThread
int
`json:"num_thread,omitempty"`
}
...
...
llama/llama.go
View file @
8fa477fa
...
...
@@ -172,6 +172,8 @@ func (llm *LLM) Close() {
C
.
llama_print_timings
(
llm
.
ctx
)
}
var
errNeedMoreData
=
errors
.
New
(
"need more data"
)
func
(
llm
*
LLM
)
Predict
(
ctx
[]
int
,
prompt
string
,
fn
func
(
api
.
GenerateResponse
))
error
{
C
.
llama_reset_timings
(
llm
.
ctx
)
...
...
@@ -200,6 +202,17 @@ func (llm *LLM) Predict(ctx []int, prompt string, fn func(api.GenerateResponse))
}
b
.
WriteString
(
llm
.
detokenize
(
token
))
if
err
:=
llm
.
checkStopConditions
(
b
);
err
!=
nil
{
if
errors
.
Is
(
err
,
io
.
EOF
)
{
break
}
else
if
errors
.
Is
(
err
,
errNeedMoreData
)
{
continue
}
return
err
}
if
utf8
.
Valid
(
b
.
Bytes
())
||
b
.
Len
()
>=
utf8
.
UTFMax
{
fn
(
api
.
GenerateResponse
{
Response
:
b
.
String
()})
b
.
Reset
()
...
...
@@ -228,6 +241,18 @@ func (llm *LLM) Predict(ctx []int, prompt string, fn func(api.GenerateResponse))
return
nil
}
func
(
llm
*
LLM
)
checkStopConditions
(
b
bytes
.
Buffer
)
error
{
for
_
,
stopCondition
:=
range
llm
.
StopConditions
{
if
stopCondition
==
b
.
String
()
{
return
io
.
EOF
}
else
if
strings
.
HasPrefix
(
stopCondition
,
b
.
String
())
{
return
errNeedMoreData
}
}
return
nil
}
func
(
llm
*
LLM
)
marshalPrompt
(
ctx
[]
C
.
llama_token
,
prompt
string
)
[]
C
.
llama_token
{
tokens
:=
append
(
ctx
,
llm
.
tokenize
(
prompt
)
...
)
if
llm
.
NumKeep
<
0
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment