Skip to content

Instantly share code, notes, and snippets.

@marii-moe
marii-moe / Mamba.ipynb
Last active January 16, 2024 04:10
posts/misc/Mamba.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@marii-moe
marii-moe / katsu
Created October 21, 2023 05:41
just some katsu tips
Tricks for making, ordered by importance, katsu(european-style dish of japanese origin):
1. Use panko, at least in the US there is a lot of "not-really" panko out there, especially when the label is in english. Generally panko
should be a pale yellow color, be very airy, and elongated. It is essentially bread dough that has been electrocuted instead of baked, and
became popular after WW2. (besides this normal flour,egg,breadcrumb breading)
2. Precut and gently flatten(with a mallet) the meat. This should be done to increase surface area and decrease cook time. Deep or
shallow fry should be done hot and fast, "oily-ness" is generally too much.
3. Salt, salting ahead of time good, a few hours (3-4) is fine. I like to do this cutting/salting a day ahead of time.
Cooking fast,hot and salting is the key to juicyness.
def kahan_sum(xs):
sum=np.array(0.,dtype=np.float16)
prev_sum=np.array(0.,dtype=np.float16)
ε=np.array(0.,dtype=np.float16)
for x in xs:
v=x-ε
prev_sum=sum
sum+=v #prev_sum+x-ε+new_ε
ε=sum-prev_sum-v #(prev_sum+x-ε+new_ε)-(prev_sum)-(x-ε)=new_ε
return sum
@marii-moe
marii-moe / Evaluating Large Language Models Trained on Code.ipynb
Last active September 1, 2023 22:58
Projects/quatro-blog/posts/misc/Untitled3.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@marii-moe
marii-moe / LLM Science Exam.ipynb
Created August 26, 2023 22:26
Projects/quatro-blog/posts/misc/LLM Science Exam.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@marii-moe
marii-moe / Diffusion Neural Operator.ipynb
Created August 24, 2023 07:47
posts/misc/Diffusion Neural Operator.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@marii-moe
marii-moe / Megabyte.ipynb
Created June 8, 2023 07:15
notebooks/Megabyte.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@marii-moe
marii-moe / Untitled1.ipynb
Created June 6, 2023 09:56
Untitled1.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@marii-moe
marii-moe / Text Generation.ipynb
Created May 19, 2023 02:30
quatro-blog/posts/misc/Untitled5.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@marii-moe
marii-moe / Recover Machine.ipynb
Last active June 22, 2022 07:37
Untitled Folder/Recover Machine.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.