diff --git a/Cargo.lock b/Cargo.lock index a0c1626..6adb008 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2918,7 +2918,7 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" [[package]] name = "symbiont" -version = "0.1.0" +version = "0.2.0" dependencies = [ "criterion", "libloading", diff --git a/symbiont/Cargo.toml b/symbiont/Cargo.toml index 508f4cf..815af3c 100644 --- a/symbiont/Cargo.toml +++ b/symbiont/Cargo.toml @@ -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 diff --git a/website/sass/style.scss b/website/sass/style.scss index 17e7c55..1f9ce81 100644 --- a/website/sass/style.scss +++ b/website/sass/style.scss @@ -319,6 +319,9 @@ section { } .example { + display: flex; + flex-direction: column; + height: 380px; background: $bg-card; border: 1px solid $border; border-radius: 8px; @@ -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; diff --git a/website/static/img/quantize-example.png b/website/static/img/quantize-example.png new file mode 100644 index 0000000..b0a92e8 Binary files /dev/null and b/website/static/img/quantize-example.png differ diff --git a/website/static/style.css b/website/static/style.css index 73baaa6..c3ddd68 100644 --- a/website/static/style.css +++ b/website/static/style.css @@ -278,6 +278,9 @@ a.example:hover { text-decoration: none; } .examples .example { + display: flex; + flex-direction: column; + height: 380px; background: #161b22; border: 1px solid #30363d; border-radius: 8px; @@ -290,10 +293,15 @@ a.example:hover { } .examples .example img { width: 100%; + height: 250px; + object-fit: cover; + object-position: top; display: block; + flex-shrink: 0; } .examples .example .caption { padding: 1rem 1.2rem; + flex: 1; } .examples .example .caption h3 { font-size: 1rem; diff --git a/website/templates/index.html b/website/templates/index.html index ab2a1be..9177b1e 100644 --- a/website/templates/index.html +++ b/website/templates/index.html @@ -291,6 +291,18 @@
+ Evolve a quantization function that minimizes + reconstruction error (MSE) while reducing distinct output + levels. Tracks a Pareto frontier across 20 rounds.
+