diff --git a/LLama.Examples/Examples/CustomSampler.cs b/LLama.Examples/Examples/CustomSampler.cs index d2df8db2..7102e092 100644 --- a/LLama.Examples/Examples/CustomSampler.cs +++ b/LLama.Examples/Examples/CustomSampler.cs @@ -60,7 +60,6 @@ protected override SafeLLamaSamplerChainHandle CreateChain(SafeLLamaContextHandl chain.AddCustom(new RemoveMostLikelyToken()); // Select from the distribution - chain.AddSoftmax(); chain.AddDistributionSampler(42); return chain;