mirror of
https://github.com/LostRuins/koboldcpp.git
synced 2025-09-11 17:44:38 +00:00
reverse clip skip fix as it might be breaking some sdxl models
This commit is contained in:
parent
2a309c144d
commit
a11ab0b08e
1 changed files with 1 additions and 1 deletions
|
@ -701,7 +701,7 @@ public:
|
||||||
|
|
||||||
void set_clip_skip(int skip) {
|
void set_clip_skip(int skip) {
|
||||||
if (skip <= 0) {
|
if (skip <= 0) {
|
||||||
skip = -1;
|
return;
|
||||||
}
|
}
|
||||||
clip_skip = skip;
|
clip_skip = skip;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue