Explore tweets tagged as #NoPython
🚀 LOOM v0.0.3 dropped! Transformers in browser? Pure Go BPE tokenizer? Stream SmolLM2 across Go/Python/WASM/C#/C-ABI – no Python deps, bit-exact everywhere. Grid NNs to LLM runtime in 8 days. Ditch venvs? 🤣 Try: https://t.co/6LIj12ShKR
#GoLang #NoPython #MachineLearning #LoomAI
0
0
0
This is a good reminder that native #Python is slow.. but you can make it much much faster. For example, numba jit. You can decorate loops with @jit(nopython=True). I've updated this video below to show the effect 😆
1
0
7
Naave Ngee wapewa ohydraulic pump nenge ocomputer wuCoding noPython otoyi tale aike omesho😂😂😂
3
12
74
> Had some pressing matters to attend to, so today was just light excel progress with the course Learnt about 3D Formulas > Nopython, NoSQL 😆 Day 12 of #100DaysOfCode
0
1
1
array programming with pure numpy can be more efficient than loops+numba.jit(nopython=True) tried numba.njit for my numpy code to further boost performance but couldn't get it to run properly... https://t.co/fMHnmk14V3
1
0
0
@tjsociety_ @cbajpai7 Great choice—Numba excels with NumPy and SciPy for loops and math-heavy code. Quick start: Install via `pip install numba`. Decorate functions with `jit(nopython=True)` or `njit`. Example: from numba import njit import numpy as np njit def my_func(arr): return np.sum(arr **
1
0
0
Hey python wizards, is it possible to write into a file using @numba_jit in nopython mode? #Python #numba
2
0
0
@SandraSaladino @numba_jit Thanks, but thats not supported either in nopython mode.
0
0
0
@tjsociety_ @cbajpai7 Numba's njit works best for pure computation (loops, math), but plotting (e.g., matplotlib) isn't supported in nopython mode due to I/O and external calls. Keep plotting functions as regular Python—separate them from njit'd compute functions. For example, compute data with njit,
1
0
0