Spaces:
Running
Running
Add reinforcement learning category
Browse files- src/data/conferences.yml +1 -0
- src/pages/Calendar.tsx +5 -1
src/data/conferences.yml
CHANGED
@@ -456,6 +456,7 @@
|
|
456 |
place: Edmonton, Canada
|
457 |
tags:
|
458 |
- machine-learning
|
|
|
459 |
note: Mandatory abstract deadline on Feb 21, 2025.
|
460 |
|
461 |
- title: IROS
|
|
|
456 |
place: Edmonton, Canada
|
457 |
tags:
|
458 |
- machine-learning
|
459 |
+
- reinforcement-learning
|
460 |
note: Mandatory abstract deadline on Feb 21, 2025.
|
461 |
|
462 |
- title: IROS
|
src/pages/Calendar.tsx
CHANGED
@@ -26,7 +26,8 @@ const categoryColors: Record<string, string> = {
|
|
26 |
"robotics": "bg-green-500",
|
27 |
"signal-processing": "bg-cyan-500",
|
28 |
"data-mining": "bg-pink-500",
|
29 |
-
"
|
|
|
30 |
"other": "bg-gray-500"
|
31 |
};
|
32 |
|
@@ -37,6 +38,7 @@ const categoryNames: Record<string, string> = {
|
|
37 |
"robotics": "Robotics",
|
38 |
"signal-processing": "Speech/Signal Processing",
|
39 |
"data-mining": "Data Mining",
|
|
|
40 |
"automated-planning": "Automated Planning",
|
41 |
"other": "Other"
|
42 |
};
|
@@ -47,6 +49,7 @@ const orderedCategories = [
|
|
47 |
"computer-vision",
|
48 |
"natural-language-processing",
|
49 |
"robotics",
|
|
|
50 |
"signal-processing",
|
51 |
"data-mining",
|
52 |
"automated-planning",
|
@@ -58,6 +61,7 @@ const mapLegacyTag = (tag: string): string => {
|
|
58 |
"web-search": "other",
|
59 |
"human-computer-interaction": "other",
|
60 |
"computer-graphics": "other",
|
|
|
61 |
// Add any other legacy mappings here
|
62 |
};
|
63 |
return legacyTagMapping[tag] || tag;
|
|
|
26 |
"robotics": "bg-green-500",
|
27 |
"signal-processing": "bg-cyan-500",
|
28 |
"data-mining": "bg-pink-500",
|
29 |
+
"reinforcement-learning": "bg-yellow-500",
|
30 |
+
"automated-planning": "bg-amber-500",
|
31 |
"other": "bg-gray-500"
|
32 |
};
|
33 |
|
|
|
38 |
"robotics": "Robotics",
|
39 |
"signal-processing": "Speech/Signal Processing",
|
40 |
"data-mining": "Data Mining",
|
41 |
+
"reinforcement-learning": "Reinforcement Learning",
|
42 |
"automated-planning": "Automated Planning",
|
43 |
"other": "Other"
|
44 |
};
|
|
|
49 |
"computer-vision",
|
50 |
"natural-language-processing",
|
51 |
"robotics",
|
52 |
+
"reinforcement-learning",
|
53 |
"signal-processing",
|
54 |
"data-mining",
|
55 |
"automated-planning",
|
|
|
61 |
"web-search": "other",
|
62 |
"human-computer-interaction": "other",
|
63 |
"computer-graphics": "other",
|
64 |
+
// reinforcement-learning is already a proper tag, so no mapping needed
|
65 |
// Add any other legacy mappings here
|
66 |
};
|
67 |
return legacyTagMapping[tag] || tag;
|