Vol Building AGI
581 subscribers
116 photos
9 videos
12 files
199 links
Past topics: speech synthesis, transformers, LSTM, recurrence
Download Telegram
https://x.com/hamelhusain/status/1824452022890119658?

Programming languages are not the problem, time to check your writing skills.
Спитав у chatgpt як виглядає маршрутка Богдан. Ідеально вгадав балкони та кондиціонери.
😁3
Channel name was changed to «Vol Building AGI»
o1 excels at generating gpu kernels that are harder than level 1
ARC-AGI has been solved. Apply for safety testing of o3: https://openai.com/12-days/
Heatmap of additively smoothed log probabilities of character bigrams log p(target|source) in common voice uk 10.0. Every word is padded by spaces on each side.

що looks like a very popular word. ї is missing entirely! You can see vowels making up distinct columns and rows.
Plotting columns of the DFT basis with matplotlib looks very vibrant out of the box. A small enough ratio of the window size to the sampling rate allows for stripes to reveal underlying higher frequency filters at the back.


def dft(size=512, rate=16000, low=50):
k = np.linspace(low, rate / 2, size, endpoint=False)
t = np.arange(size) / rate
return np.exp(-2j * np.pi * k[:, None] * t)
Why want high precision accumulation while doing low precision computations
👍1