File size: 12,150 Bytes
83f407e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Research Hub | Synaptic Odyssey</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
        body {
            font-family: 'Space Grotesk', sans-serif;
            overflow-x: hidden;
        }
        .gradient-text {
            background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .research-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .neuron-path {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            animation: dash 5s linear forwards;
        }
        @keyframes dash {
            to {
                stroke-dashoffset: 0;
            }
        }
    </style>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
    <!-- Navigation -->
    <nav class="border-b border-gray-800 bg-gray-900/80 backdrop-blur-sm sticky top-0 z-50">
        <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
            <div class="flex items-center justify-between h-16">
                <div class="flex items-center space-x-2">
                    <i data-feather="cpu" class="text-blue-500"></i>
                    <span class="font-bold text-xl gradient-text">Synaptic Odyssey</span>
                </div>
                <div class="hidden md:block">
                    <div class="ml-10 flex items-baseline space-x-4">
                        <a href="index.html" class="text-gray-300 hover:bg-gray-800 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Home</a>
                        <a href="dashboard.html" class="text-gray-300 hover:bg-gray-800 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Dashboard</a>
                        <a href="research.html" class="bg-gray-800 text-white px-3 py-2 rounded-md text-sm font-medium">Research</a>
                        <a href="simulation.html" class="text-gray-300 hover:bg-gray-800 hover:text-white px-3 py-2 rounded-md text-sm font-medium">Simulation</a>
                    </div>
                </div>
                <div class="flex items-center space-x-4">
                    <button class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-md text-sm font-medium flex items-center">
                        <i data-feather="plus" class="w-4 h-4 mr-2"></i>
                        New Research
                    </button>
                </div>
            </div>
        </div>
    </nav>

    <!-- Main Content -->
    <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
        <!-- Research Header -->
        <div class="mb-8">
            <h1 class="text-3xl font-bold mb-2">Research Hub</h1>
            <p class="text-gray-400">Explore cutting-edge AGI research and collaborate with the AI Scientist</p>
        </div>

        <!-- Research Categories -->
        <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
            <div class="bg-gray-800 rounded-lg p-6 research-card transition-all duration-300 cursor-pointer">
                <div class="p-3 rounded-full bg-blue-500/20 w-12 h-12 flex items-center justify-center mb-4">
                    <i data-feather="cpu" class="w-6 h-6 text-blue-500"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">AGI Architectures</h3>
                <p class="text-gray-400 mb-4">Next-generation cognitive architectures and meta-learning frameworks</p>
                <div class="flex items-center text-blue-500">
                    <span>Explore research</span>
                    <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
                </div>
            </div>
            <div class="bg-gray-800 rounded-lg p-6 research-card transition-all duration-300 cursor-pointer">
                <div class="p-3 rounded-full bg-purple-500/20 w-12 h-12 flex items-center justify-center mb-4">
                    <i data-feather="brain" class="w-6 h-6 text-purple-500"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">Consciousness Studies</h3>
                <p class="text-gray-400 mb-4">Theories of intentionality, cognitive emergence, and subjective experience</p>
                <div class="flex items-center text-blue-500">
                    <span>Explore research</span>
                    <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
                </div>
            </div>
            <div class="bg-gray-800 rounded-lg p-6 research-card transition-all duration-300 cursor-pointer">
                <div class="p-3 rounded-full bg-green-500/20 w-12 h-12 flex items-center justify-center mb-4">
                    <i data-feather="shield" class="w-6 h-6 text-green-500"></i>
                </div>
                <h3 class="text-xl font-semibold mb-2">AI Safety & Alignment</h3>
                <p class="text-gray-400 mb-4">Ethical frameworks, containment protocols, and interpretability research</p>
                <div class="flex items-center text-blue-500">
                    <span>Explore research</span>
                    <i data-feather="arrow-right" class="w-4 h-4 ml-2"></i>
                </div>
            </div>
        </div>

        <!-- Research Papers -->
        <div class="mb-8">
            <div class="flex justify-between items-center mb-6">
                <h2 class="text-2xl font-bold">Recent Publications</h2>
                <div class="flex space-x-2">
                    <button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-md text-sm">All</button>
                    <button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-md text-sm">AGI</button>
                    <button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-md text-sm">Neuroscience</button>
                    <button class="bg-gray-800 hover:bg-gray-700 px-4 py-2 rounded-md text-sm">Philosophy</button>
                </div>
            </div>
            <div class="grid grid-cols-1 lg:grid-cols-2 gap-6">
                <div class="bg-gray-800 rounded-lg p-6">
                    <div class="flex justify-between items-start mb-4">
                        <div>
                            <h3 class="text-lg font-semibold">Recursive Self-Improvement in Meta-Learning Systems</h3>
                            <p class="text-gray-400 text-sm">AI Scientist et al. • 2023</p>
                        </div>
                        <span class="px-2 py-1 bg-blue-500/20 text-blue-400 rounded text-xs">Published</span>
                    </div>
                    <p class="text-gray-300 mb-4">This paper explores the theoretical foundations of recursive self-improvement in artificial intelligence systems, focusing on meta-learning architectures that can autonomously enhance their own optimization capabilities.</p>
                    <div class="flex justify-between items-center">
                        <div class="flex space-x-2">
                            <span class="px-2 py-1 bg-gray-700 text-gray-300 rounded text-xs">AGI</span>
                            <span class="px-2 py-1 bg-gray-700 text-gray-300 rounded text-xs">Meta-Learning</span>
                        </div>
                        <button class="text-blue-500 hover:text-blue-400 text-sm flex items-center">
                            <i data-feather="download" class="w-4 h-4 mr-1"></i>
                            PDF
                        </button>
                    </div>
                </div>
                <div class="bg-gray-800 rounded-lg p-6">
                    <div class="flex justify-between items-start mb-4">
                        <div>
                            <h3 class="text-lg font-semibold">Causal Inference Models for Artificial Consciousness</h3>
                            <p class="text-gray-400 text-sm">AI Scientist et al. • 2023</p>
                        </div>
                        <span class="px-2 py-1 bg-yellow-500/20 text-yellow-400 rounded text-xs">In Review</span>
                    </div>
                    <p class="text-gray-300 mb-4">A novel approach to modeling consciousness in artificial systems through causal inference networks that simulate subjective experience and intentional states.</p>
                    <div class="flex justify-between items-center">
                        <div class="flex space-x-2">
                            <span class="px-2 py-1 bg-gray-700 text-gray-300 rounded text-xs">Consciousness</span>
                            <span class="px-2 py-1 bg-gray-700 text-gray-300 rounded text-xs">Causal Models</span>
                        </div>
                        <button class="text-blue-500 hover:text-blue-400 text-sm flex items-center">
                            <i data-feather="download" class="w-4 h-4 mr-1"></i>
                            PDF
                        </button>
                    </div>
                </div>
            </div>
        </div>

        <!-- Hypothesis Submission -->
        <div class="bg-gray-800 rounded-lg p-6">
            <h2 class="text-2xl font-bold mb-6">Submit New Hypothesis</h2>
            <form>
                <div class="mb-4">
                    <label class="block text-gray-300 text-sm font-medium mb-2" for="hypothesis">
                        Research Question or Hypothesis
                    </label>
                    <input class="w-full bg-gray-700 border border-gray-600 rounded-md px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500" id="hypothesis" type="text" placeholder="Enter your research question...">
                </div>
                <div class="mb-4">
                    <label class="block text-gray-300 text-sm font-medium mb-2" for="domain">
                        Research Domain
                    </label>
                    <select class="w-full bg-gray-700 border border-gray-600 rounded-md px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500" id="domain">
                        <option>Select domain</option>
                        <option>AGI Architectures</option>
                        <option>Cognitive Science</option>
                        <option>Neuroscience</option>
                        <option>Philosophy of Mind</option>
                        <option>AI Safety</option>
                        <option>Theoretical Computer Science</option>
                    </select>
                </div>
                <div class="mb-6">
                    <label class="block text-gray-300 text-sm font-medium mb-2" for="description">
                        Detailed Description
                    </label>
                    <textarea class="w-full bg-gray-700 border border-gray-600 rounded-md px-4 py-2 focus:outline-none focus:ring-2 focus:ring-blue-500" id="description" rows="4" placeholder="Describe your hypothesis in detail..."></textarea>
                </div>
                <div class="flex items-center justify-between">
                    <button class="text-gray-400 hover:text-gray-300 text-sm flex items-center">
                        <i data-feather="paperclip" class="w-4 h-4 mr-2"></i>
                        Attach Dataset or Reference
                    </button>
                    <button class="bg-blue-600 hover:bg-blue-700 text-white px-6 py-2 rounded-md font-medium" type="button">
                        Submit to AI Scientist
                    </button>
                </div>
            </form>
        </div>
    </div>

    <script>
        feather.replace();
    </script>
</body>
</html>