Spaces:
Paused
Paused
docs: improve README with usage instructions
Browse files- README.md +10 -8
- requirements.txt +1 -1
README.md
CHANGED
|
@@ -11,18 +11,20 @@ license: mit
|
|
| 11 |
short_description: Morphogen gradient formation on graph topologies
|
| 12 |
---
|
| 13 |
|
| 14 |
-
# π Diffusion
|
| 15 |
|
| 16 |
-
Simulate
|
| 17 |
|
| 18 |
-
##
|
| 19 |
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
|
| 24 |
## How It Works
|
| 25 |
|
| 26 |
-
|
| 27 |
|
| 28 |
-
|
|
|
|
|
|
|
|
|
| 11 |
short_description: Morphogen gradient formation on graph topologies
|
| 12 |
---
|
| 13 |
|
| 14 |
+
# π Diffusion -- Morphogen Gradient Visualizer
|
| 15 |
|
| 16 |
+
Simulate morphogen diffusion across graph topologies and watch concentration gradients form -- the spatial coordination layer that lets distributed agents sense their position.
|
| 17 |
|
| 18 |
+
## What to Try
|
| 19 |
|
| 20 |
+
1. Open the **Linear Chain** tab, set the **Source Node** and **Diffusion Steps** sliders, and click **Run Diffusion** to watch concentration spread from the source along a line of nodes.
|
| 21 |
+
2. Switch to the **Topologies** tab and select different graph shapes (Star, Ring, Grid, Binary Tree) to see how network structure shapes gradient formation.
|
| 22 |
+
3. In the **Competing Sources** tab, place two morphogens at different nodes and run diffusion to observe overlapping gradients and competition zones.
|
| 23 |
|
| 24 |
## How It Works
|
| 25 |
|
| 26 |
+
A DiffusionField manages a graph where MorphogenSource objects emit signals that spread to neighbors, decay over time, and clamp at saturation. Each node's local concentration maps to the MorphogenGradient API, giving agents position-aware strategy hints -- like how cells in a developing embryo read morphogen concentrations to determine their fate.
|
| 27 |
|
| 28 |
+
## Learn More
|
| 29 |
+
|
| 30 |
+
[GitHub](https://github.com/coredipper/operon) | [PyPI](https://pypi.org/project/operon-ai/) | [Paper](https://github.com/coredipper/operon/tree/main/article)
|
requirements.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
| 1 |
gradio>=4.0
|
| 2 |
-
operon-ai>=0.
|
|
|
|
| 1 |
gradio>=4.0
|
| 2 |
+
operon-ai>=0.15.0
|