File size: 1,118 Bytes
a6ac8e9
 
 
 
889b51c
 
 
 
3982b8d
 
 
 
 
 
 
 
 
 
 
889b51c
a6ac8e9
 
cc42e85
 
 
e3eb56b
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
license: apache-2.0
---

# Geometric Lookup Flow Matching (GLFM)

The prototype formula for the next experiment.

```
Standard:  x_t β†’ UNet(x_t, t, c) β†’ v_pred
                 ↑ full 16384-dim path

GLFM:      x_t β†’ encoder β†’ project to S^15 β†’ triangulate against anchors
                                                    ↓
                              768-dim geometric address (continuous, not discrete)
                                                    ↓
                              conditioned_generator(address, t, c) β†’ v_pred
```

# Prelim
This one is going to attempt a new form of prediction based on velocity flow matching using spherical representation.

The alignment for the early prototype is essentially going to be euler discreet ODE flow matching, and it will be more than enough for now.
We'll work from there and build increased representation as needed.

I'm going to attempt to fully replace the diffuser's substructure with a spherical representation. Standby.

First proto is pretty much vpred, then I'll enhance the system with shift and so on. Simple improvements.