Maël Kerbiriou
Maël Kerbiriou
I do not expect this to be merged, but I figured it might help others. Although, I don't know if this is the right place. This logs information to a...
129c7d1e (#20) added a repetition penalty that prevent the model to run into loops. Here are a few suggestions for possible enhancements: * One issue with the interactive mode is...
Affects `llama_sample_top_p_top_k` and `params.ignore_eos` mode in `main.cpp`. Alternatively the sampler could take an additional argument indicating the position to sample in the batch. As of now, I haven't come across...
This adds a `--trace ` option that exports the decoder activations to a file. The format can be read with: ``` python -m examples.traceparser trace.bin ``` It's a basic app...
Some macros try to detect skipped steps, for example, [Ellis's macro](https://ellis3dp.com/Print-Tuning-Guide/articles/determining_max_speeds_accels.html#determining-if-skipping-occured) for finding the absolute maximum speeds and accelerations of a printer. It relies on the user comparing the "mcu"...
Adding support wouldn't be so difficult. Once a random access thread reach a block marked as the last block of a gzip part it could parse the footer and the...
Most gzip libraries provide an easy to use API of the form: ```C decompress(void* state, const char* input, size_t in_len, char* output, size_t out_len) ``` It decompresses the `input` stream...