Unconventional AI

15 posts

Unconventional AI banner
Unconventional AI

Unconventional AI

@unconvAI

Unconventional AI is rethinking the foundations of a computer to bring biology-scale efficiency to artificial intelligence.

Katılım Ekim 2025
0 Takip Edilen3.4K Takipçiler
Unconventional AI
Unconventional AI@unconvAI·
In a recent episode of the @ThisWeeknAI, our CEO @NaveenGRao joined @jason for a roundtable discussion with @chaselochmiller (@CrusoeAI) and @ml_angelopoulos (@arena). Naveen discusses the long-term limits of scaling AI on today’s computing architectures and why new approaches to hardware and computation will be needed as the field continues to grow. The discussion also touches on infrastructure constraints, evaluation challenges, and how engineers can stand out as the industry matures. These are the kinds of questions we are exploring every day at Unconventional AI. Watch the full conversation below. youtu.be/9o13P7SMAaY?si…
YouTube video
YouTube
English
0
4
11
1.6K
Unconventional AI
Unconventional AI@unconvAI·
10/10 What other fundamental questions should we be asking about dynamical systems and computation? Join us as we continue to explore the limits of programmability, steerability, and efficiency for tomorrow’s computing. unconv.ai/careers/
English
0
0
14
861
Unconventional AI
Unconventional AI@unconvAI·
9/10 Success! When you plot the learned dynamics through time, the results demonstrate the steerability and programmability of these simple dynamical systems. Yes, this demo is whimsical, but it provides a clear answer: these systems are highly programmable. This answer hints toward a bright future for energy efficient computation by reimaging the very components.
GIF
English
5
1
13
1K
Unconventional AI
Unconventional AI@unconvAI·
1/10 Reimaging computing using dynamical systems raises a host of fundamental questions, among them: How programmable/steerable is a candidate system? This week, we ran an experiment to test the limits of programmability by asking: is a toy 4-oscillator system expressive enough to dynamically sweep out any arbitrary pattern in phase-difference space? After testing our “[un]” logo, we concluded these systems are highly steerable. Here’s how we did it.
GIF
English
4
15
90
27.9K
Unconventional AI
Unconventional AI@unconvAI·
Unconventional AI is designing a new computational substrate for intelligence. This requires extreme codesign across AI algorithms, systems, compute models, analog circuits, and hardware architecture. We are hiring across all of these areas. Learn more about our open roles on our careers page. unconv.ai/careers?cache=…
English
3
6
65
29.1K
Unconventional AI
Unconventional AI@unconvAI·
AI scaling will be energy-limited at the global level in the next 3-4 years. Conventional computing is reaching its limits. It’s time to stop simulating neural networks on digital logic and start building hardware that actually behaves like them. We are Unconventional AI. Learn more about our mission: unconv.ai/introducing-un…
English
25
37
390
306.1K
Unconventional AI
Unconventional AI@unconvAI·
[x(t_0) = x_0] ——————— import time from math import prod print("--- Initiating Dynamical System Simulation ---") # The Attractors Y = [104, 101, 108, 108, 111, 32, 119, 111, 114, 108, 100] # The Analytic Evolution Function x(t): Lagrange Interpolation governing the dynamics f = lambda t: sum(y * prod((t-k)/(j-k) for k in range(len(Y)) if k!=j) for j,y in enumerate(Y)) # Time Evolution: Step through discrete time t, observing state x(t) acc = "" for t in range(len(Y)): c=chr(int(round(f(t)))); acc+=c; print(f"Time t={t:2} | x(t): '{c}' | Trajectory: {acc}"); time.sleep(0.2)
English
9
6
67
20K