Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion symbiont/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MPL-2.0"
name = "symbiont"
readme = "README.md"
repository = "https://github.com/MathisWellmann/symbiont"
version = "0.1.0"
version = "0.2.0"

[lints]
workspace = true
Expand Down
5 changes: 5 additions & 0 deletions website/sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,9 @@ section {
}

.example {
display: flex;
flex-direction: column;
height: 380px;
background: $bg-card;
border: 1px solid $border;
border-radius: 8px;
Expand All @@ -333,10 +336,12 @@ section {
object-fit: cover;
object-position: top;
display: block;
flex-shrink: 0;
}

.caption {
padding: 1rem 1.2rem;
flex: 1;

h3 {
font-size: 1rem;
Expand Down
Binary file added website/static/img/quantize-example.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions website/static/style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions website/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,18 @@ <h3>Tic-Tac-Toe &mdash; Game AI</h3>
control, fork creation, and blocking strategies.</p>
</div>
</a>
<a href="https://github.com/MathisWellmann/symbiont/tree/main/examples/quantize" class="example">
<img src="/img/quantize-example.png"
alt="Quantize Pareto frontier"
loading="lazy"
style="object-position: bottom">
<div class="caption">
<h3>Quantize &mdash; Optimal compression</h3>
<p>Evolve a quantization function that minimizes
reconstruction error (MSE) while reducing distinct output
levels. Tracks a Pareto frontier across 20 rounds.</p>
</div>
</a>
<a href="https://github.com/MathisWellmann/symbiont/tree/main/examples/counter" class="example">
<img src="/img/counter-example.png"
alt="Counter hot-reload"
Expand Down
Loading