Sigma Reaver

Results 9 comments of Sigma Reaver

I think I found the issue. ``` if (!current_child) { Object widget(idvar, type_); objects.push_back(widget); } ``` Here in `ims_buffer.cpp` you construct a stack allocated `Object`, and then copy it into...

See https://github.com/Raais/ImStudio/commit/ac16cd858ef7d5f2575bd27286e7935171b48f1e for the solution I went with.

Ported over the code from Transformers, but having trouble getting it working. The AI turns quite wonky. I probably did something completely wrong. ``` def sample(self, logits, cfg_scale, temperature, top_k,...

> I quickly glanced over the code in the bus but it looks like your negative context always uses the last token only. Also you should remove that last softmax...

Still doesn't work. It seems that no matter what I try, the exllama just falls into looping after a few tokens. Still not sure why that is, but if I...

> Hey, thank you for your flan-ul2 quant! I really appreciate it. Very useful model, but unfortunately overlooked due to the flood of llamas.. > > Seeing your work, I...

After a bit of experimentation, I've found that: `blessed.screen({ input: client, output: client })` Seem to be not doing anything. But if you change: `blessed.program({ input: client, output: client })`...

If possible, I could do a pull request rather than burden you with a feature request. If you could let me know what files/functions I should look at to add...

I think it may be possible, by registering sol::table component class in C++, but one would have to devise a way of tracking the different Lua objects (component types). I...