@@ -57,7 +57,7 @@ function extremeTopK(testCase)
57
57
%% This should work, and it does on some computers. On others, Ollama
58
58
%% receives the parameter, but either Ollama or llama.cpp fails to
59
59
%% honor it correctly.
60
- testCase .assumeTrue( false , " disabled due to Ollama/llama.cpp not honoring parameter reliably" );
60
+ testCase .assumeFail( " disabled due to Ollama/llama.cpp not honoring parameter reliably" );
61
61
62
62
% setting top-k to k=1 leaves no random choice,
63
63
% so we expect to get a fixed response.
@@ -72,7 +72,7 @@ function extremeMinP(testCase)
72
72
%% This should work, and it does on some computers. On others, Ollama
73
73
%% receives the parameter, but either Ollama or llama.cpp fails to
74
74
%% honor it correctly.
75
- testCase .assumeTrue( false , " disabled due to Ollama/llama.cpp not honoring parameter reliably" );
75
+ testCase .assumeFail( " disabled due to Ollama/llama.cpp not honoring parameter reliably" );
76
76
77
77
% setting min-p to p=1 means only tokens with the same logit as
78
78
% the most likely one can be chosen, which will almost certainly
@@ -88,7 +88,7 @@ function extremeTfsZ(testCase)
88
88
%% This should work, and it does on some computers. On others, Ollama
89
89
%% receives the parameter, but either Ollama or llama.cpp fails to
90
90
%% honor it correctly.
91
- testCase .assumeTrue( false , " disabled due to Ollama/llama.cpp not honoring parameter reliably" );
91
+ testCase .assumeFail( " disabled due to Ollama/llama.cpp not honoring parameter reliably" );
92
92
93
93
% setting tfs_z to z=0 leaves no random choice, but degrades to
94
94
% greedy sampling, so we expect to get a fixed response.
@@ -113,7 +113,7 @@ function seedFixesResult(testCase)
113
113
%% This should work, and it does on some computers. On others, Ollama
114
114
%% receives the parameter, but either Ollama or llama.cpp fails to
115
115
%% honor it correctly.
116
- testCase .assumeTrue( false , " disabled due to Ollama/llama.cpp not honoring parameter reliably" );
116
+ testCase .assumeFail( " disabled due to Ollama/llama.cpp not honoring parameter reliably" );
117
117
118
118
chat = ollamaChat(" mistral" );
119
119
response1 = generate(chat ," hi" ,Seed= 1234 );
0 commit comments