Rickey Bowers Jr.

Results 57 comments of Rickey Bowers Jr.

```chunk()``` doesn't work the way I thought it did. So, I wrote one that does: 😄 ```python def list_chunk(L,N): # irregular chunk with complete coverage (random overflow) for x in...

```data``` is a list, but a list of what? Batching is possible because ```data``` is a list of iterators. Currently, by multiplying the list of prompts by ```batch_size``` and sorting;...

This is a result of the model being trained on 512x512 images. Outside of that, the model hallucinates - kind of like a holographic memory seeing similar projections - and...

I have an album on facebook where I gather size anomalies: https://www.facebook.com/media/set/?set=a.10159796081345272 Some are as you said atmospheric type renders, but others are just amazing prompts. For example, the viking...

The images reminded me of this ShaderToy: https://www.shadertoy.com/view/ldlSzX So, I'm wondering if the another model can target the interference pattern to produce better image at arbitrary scale. Or maybe incorporate...

One way to only adjust threading on hyperthreaded systems is: ```python # get_num_threads defaults to physical cores, while os.cpu_count reports # logical cores. Only adjust thread count on hyperthreaded systems:...

Unfortunately, I'm seeing drastic memory thrashing under Windows - massive allocation swings of 10+GB and this will consume most of the time on larger images. Pytorch should (imho) maintain it's...

`ggml_new_tensor_impl: not enough space in the context's memory pool (needed 704905456, available 704155676) Assertion failed: false, file ggml.c, line 2516` @drewcrawford for me, that error doesn't appear to be context...

The 65B model sometimes crashes with 2k, but usually works ... ``` llama_model_load: loading model from './models/65B/ggml-model-q4_0.bin' - please wait ... llama_model_load: n_vocab = 32000 llama_model_load: n_ctx = 2048 llama_model_load:...

Numbers allow both ' and _ to increase readability - this is by design.