Skip to content

Instantly share code, notes, and snippets.

View timm's full-sized avatar

Tim Menzies timm

View GitHub Profile
@timm
timm / Makefile
Last active November 24, 2025 15:02
lua six (stochastic incremental XAI) . For multiple objective optimization.
.SILENT:
docs: ~/tmp/lua7a.html
locs:
cat lua7a.lua \
| gawk '/^function/ { fun=NR } \
fun && /^[ \t]*$$/ { print NR-fun; fun=0 }' \
| sort -n | fmt -20
@timm
timm / _RepGrid.md
Last active November 10, 2025 01:37
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 November 23, 2025 17:26
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

@timm
timm / ,Tests4mop.md
Last active March 28, 2024 21:07
Test data, multi-objective problems, for SE problems

Test data, Multi-objective Problems, SE

@timm
timm / !dbayes.md
Created April 15, 2023 21:19
dbayes

Dbayes