| 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. |