From d34b07373ee1fe744aad38740492e4f3971a85ea Mon Sep 17 00:00:00 2001 From: Marton Havasi Date: Mon, 23 Dec 2024 14:01:52 +0100 Subject: [PATCH] README.md for examples/ (#106) * examples readme * itai nits --------- Co-authored-by: Marton Havasi --- examples/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 examples/README.md diff --git a/examples/README.md b/examples/README.md new file mode 100644 index 0000000..3b6af05 --- /dev/null +++ b/examples/README.md @@ -0,0 +1,21 @@ +# Flow matching examples + +## Image + +[Flow matching on images.](image/) Pixel space image generation using continuous flow matching. + +## Text + +[Flow matching on text.](text/) Text generation using discrete flow matching. + +## Notebooks + +| Notebook | Description | +| --- | --- | +| [standalone_flow_matching.ipynb](standalone_flow_matching.ipynb) | A concise flow matching example built in pure PyTorch. | +| [standalone_discrete_flow_matching.ipynb](standalone_discrete_flow_matching.ipynb) | A concise discrete flow matching example built in pure PyTorch. | +| [2d_flow_matching.ipynb](2d_flow_matching.ipynb) | 2D flow matching example on the checkerboard dataset using the flow_matching library. | +| [2d_discrete_flow_matching.ipynb](2d_discrete_flow_matching.ipynb) | 2D discrete flow matching example on the checkerboard dataset using the flow_matching library. | +| [2d_riemannian_flow_matching_flat_torus.ipynb](2d_riemannian_flow_matching_flat_torus.ipynb) | 2D Riemannian flow matching on a flat torus on the checkerboard dataset and the flow_matching library. | +| [2d_riemannian_flow_matching_sphere.ipynb](2d_riemannian_flow_matching_sphere.ipynb) | 2D Riemannian flow matching on a sphere on the checkerboard dataset and the flow_matching library. | +