Changes to kan-lab3.scroll.pub

ffff:206.172.131.49
ffff:206.172.131.49
14 days ago
updated body.html
body.html
Changed around line 4: p
- Exploring Dynamic Weights and Attention Mechanisms (Shenggang Li).
+ Exploring Dynamic Weights and Attention Mechanisms (Shenggang Li)
ffff:206.172.131.49
ffff:206.172.131.49
14 days ago
updated body.html
body.html
Changed around line 3: p
-

+

ffff:206.172.131.49
ffff:206.172.131.49
14 days ago
updated body.html
body.html
Changed around line 4: p
- Exploring Dynamic Weights and Attention Mechanisms.
+ Exploring Dynamic Weights and Attention Mechanisms (Shenggang Li).
ffff:206.172.131.49
ffff:206.172.131.49
14 days ago
updated body.html
body.html
Changed around line 3: p
-

- Kolmogorov-Arnold Networks: Exploring Dynamic Weights and Attention
- Mechanisms.
+

+ Exploring Dynamic Weights and Attention Mechanisms.
ffff:206.172.131.49
ffff:206.172.131.49
14 days ago
updated body.html
body.html
Changed around line 1
+ p
-

KAN-Lab

+

+ KAN-Lab
+

+ Kolmogorov-Arnold Networks: Exploring Dynamic Weights and Attention
+ Mechanisms.
+

+
ffff:206.172.131.49
ffff:206.172.131.49
14 days ago
updated style.css
style.css
Changed around line 174: footer {
- color: var(
- --accent-color
- ); /* Make the arrow visible with a contrasting color */
+ color: white; /* Make the arrow visible with a contrasting color */
ffff:206.172.131.49
ffff:206.172.131.49
14 days ago
updated style.css
style.css
Changed around line 155: footer {
- #modelType {
- width: 100%; /* Make the dropdown fill the available space */
- padding: 1rem; /* Add padding inside the dropdown */
- font-size: 1.1rem; /* Increase font size */
- border-radius: 6px; /* Add rounded corners */
- border: 1px solid var(--accent-color); /* Add a border matching your theme */
- background-color: var(
- --card-bg
- ); /* Match the dropdown background with your theme */
- color: var(--text-color); /* Match text color */
- appearance: none; /* Remove default dropdown styling (optional) */
- }
-
- #modelType option {
- font-size: 1.1rem; /* Ensure options match the dropdown font size */
- padding: 0.5rem; /* Add padding inside options */
- background-color: var(--card-bg); /* Match option background with theme */
- color: var(--text-color); /* Match option text color */
- }
-
+ appearance: none; /* Remove default styling */
+ width: 100%;
+ padding: 1rem;
+ font-size: 1.1rem;
+ border-radius: 6px;
+ border: 1px solid var(--accent-color);
+ background-color: var(--card-bg);
+ color: var(--text-color);
- right: 1rem;
+ right: 1rem; /* Position arrow to the right */
- pointer-events: none; /* Make the arrow unclickable */
- color: var(--text-color); /* Match arrow color with text */
+ pointer-events: none; /* Ensure arrow doesn't interfere with clicks */
+ color: var(
+ --accent-color
+ ); /* Make the arrow visible with a contrasting color */
+ font-size: 1rem; /* Adjust size of the arrow */
ffff:206.172.131.49
ffff:206.172.131.49
14 days ago
updated style.css
style.css
Changed around line 175: footer {
+ #modelType {
+ position: relative;
+ }
+
+ #modelType::after {
+ content: "▼"; /* Unicode for dropdown arrow */
+ position: absolute;
+ right: 1rem;
+ top: 50%;
+ transform: translateY(-50%);
+ pointer-events: none; /* Make the arrow unclickable */
+ color: var(--text-color); /* Match arrow color with text */
+ }
+
ffff:206.172.131.49
ffff:206.172.131.49
14 days ago
updated style.css
style.css
Changed around line 155: footer {
+ #modelType {
+ width: 100%; /* Make the dropdown fill the available space */
+ padding: 1rem; /* Add padding inside the dropdown */
+ font-size: 1.1rem; /* Increase font size */
+ border-radius: 6px; /* Add rounded corners */
+ border: 1px solid var(--accent-color); /* Add a border matching your theme */
+ background-color: var(
+ --card-bg
+ ); /* Match the dropdown background with your theme */
+ color: var(--text-color); /* Match text color */
+ appearance: none; /* Remove default dropdown styling (optional) */
+ }
+
+ #modelType option {
+ font-size: 1.1rem; /* Ensure options match the dropdown font size */
+ padding: 0.5rem; /* Add padding inside options */
+ background-color: var(--card-bg); /* Match option background with theme */
+ color: var(--text-color); /* Match option text color */
+ }
ffff:206.172.131.49
ffff:206.172.131.49
14 days ago
updated style.css
style.css
Changed around line 146: footer {
+ #parameters {
+ display: flex;
+ flex-direction: column;
+ }
+
+ #runExperiment {
+ align-self: flex-end;
+ margin-top: 2rem;
+ }