Skip to content
View gearupsmile's full-sized avatar
  • Independent Researcher

Block or report gearupsmile

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
gearupsmile/README.md

Typing SVG


Research Open to Collabs Profile Views


The Question I Can't Stop Asking

Most people ask "how do I build AI that succeeds?"

I asked something different: what happens when you build AI that has nothing to succeed at?

No fitness function. No reward signal. No goal. Just raw evolutionary pressure — and time.

58.3% sustained activity across 10,000 generations.

That's not random noise. That's emergence. And it came out of a system designed to go nowhere.

That's the Genesis Engine. And it's going to GECCO 2026.


What I Build

I'm not a "passionate learner" or "aspiring developer."
I'm someone who runs experiments at 2am and checks the terminal output before checking my phone.

# My research question, distilled
def genesis_engine(population, generations=10_000):
    # No goal. No reward. Just selection pressure.
    # Watch what survives.
    for gen in range(generations):
        population = evolve(population, fitness=None)  # <-- this is the point
    return what_remained(population)

# Result: 58.3% activity. Sustained. Unexplained. Fascinating.

Featured Work

🧬 Genesis Engine

Constraint-Driven Evolutionary AI

Built a system where agents evolve under environmental constraints — zero explicit objective. The question was whether meaningful structure would emerge anyway.

It did.

  • 📈 58.3% sustained behavioral activity
  • 🔬 Accepted to GECCO 2026
  • 🧠 Novel framework for goalless AI systems
  • 🛠️ Python · DEAP · NumPy · Matplotlib

Repo

👁️ VisionIRL

Computer Vision Meets the Real World

Because the gap between "works on benchmark datasets" and "works on your phone camera" is embarrassingly wide. This closes it.

  • ⚡ Real-time inference pipeline
  • 📱 Edge-device optimized
  • 🎯 Designed for deployment, not demos
  • 🛠️ Python · OpenCV · TensorFlow Lite

Repo

🏆 Google Hackathon Project

Built Under Pressure. Shipped Anyway.

Some projects you plan for months.
Some you build in 24 hours with 3 other humans on caffeine.
This was the second kind. It worked.

Repo

🔭 What's Next

Currently in the lab:

  • Extending Genesis Engine post-GECCO
  • Exploring how constraint shapes intelligence (not just behavior)
  • Asking questions that don't have papers yet

The best projects start with "I wonder if..."


The Stack

Languages

Python C++ JavaScript SQL

AI / ML / Research

TensorFlow PyTorch NumPy OpenCV Scikit Learn

Tools

Git Linux VS Code LaTeX


By the Numbers

GitHub Streak


Let's Think Together

I'm most interested in people who ask strange questions and follow them seriously.

If you're working on evolutionary computation, emergent AI behavior, or systems that surprise their creators — let's talk.

Email LinkedIn Twitter Portfolio


"Evolution doesn't optimize.
It explores.
Maybe AI should do the same."

— Genesis Engine, Generation 10,000


Wave

Pinned Loading

  1. google-girl-hackathon-2025 google-girl-hackathon-2025 Public

    Verilog 1

  2. genesis-emergence genesis-emergence Public

    Building the chemical substrate where artificial intelligence emerges naturally—not coded, not trained, but grown.

    Python

  3. genesis-evolution-sandbox genesis-evolution-sandbox Public

    Evolutionary system that explores chaos and complexity through guided selection. Demonstrates parameter space exploration and population dynamics.

    Python