Skip to content

Instantly share code, notes, and snippets.

View timm's full-sized avatar

Tim Menzies timm

View GitHub Profile
# LightGBM
[tiny.cc/lightg](tiny.cc/lightg)
@timm
timm / ,luamine.md
Last active June 27, 2026 01:38
LUAMINE = LUA MINing Engines. http://tiny.cc/luamine

AuthorLanguageLicensePurpose

LUAMINE = LUA MINing Engines: lots of useful learners. Three small files, each a few hundred lines long, no dependencies beyond Lua 5.x: generic helpers, AI primitives (Num, Sym, distance, trees, Bayes), and apps (clustering, classification, active learning, GA/DE/SA/LS optimizers, synthetic data, anomaly detection).

@timm
timm / .DS_Store
Last active June 6, 2026 18:30
lua six (stochastic incremental XAI) . For multiple objective optimization.
@timm
timm / _RepGrid.md
Last active June 6, 2026 16:58
Rep grid : represent and cluster

Purpose License Language Author

@timm
timm / _Litr.md
Last active November 30, 2025 22:26
Lightweight AI : a little scripting goes a long way

Purpose License Data Language Tool Author

@timm
timm / _MOOT0.md
Last active January 21, 2026 14:15
data mining for multi-objective optimization

Purpose License Python Data Run Author

@timm
timm / stemmer.py
Last active May 5, 2025 21:43
Final Tiny Stemmer
def stem(w):
vowels = "aeiou"
# Plural normalization
if w.endswith("ies") and len(w) > 4:
return w[:-3] + "y"
if w.endswith("ves") and len(w) > 4:
return w[:-3] + "f"
# Long suffixes (Porter-inspired)
@timm
timm / ,ruler.md
Last active April 5, 2025 23:44
ruler.lua

ruler.lua

@timm
timm / ,Ape.md
Last active March 27, 2024 20:28
Adaptive Parameter Evolution

Adaptive Parameter Evolution

@timm
timm / ,Tricks.md
Last active March 28, 2024 00:26
Timm's gist-based tricks for scipting