Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>NeuralScape | AI Research Platform</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
.gradient-bg { | |
background: linear-gradient(135deg, #6e8efb 0%, #4a6cf7 100%); | |
} | |
.model-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); | |
} | |
.chat-bubble { | |
border-radius: 1.5rem; | |
position: relative; | |
} | |
.chat-bubble:after { | |
content: ''; | |
position: absolute; | |
bottom: 0; | |
left: 20px; | |
width: 0; | |
height: 0; | |
border: 10px solid transparent; | |
border-top-color: #3b82f6; | |
border-bottom: 0; | |
margin-left: -10px; | |
margin-bottom: -10px; | |
} | |
.typewriter { | |
overflow: hidden; | |
border-right: .15em solid #4a6cf7; | |
white-space: nowrap; | |
margin: 0 auto; | |
letter-spacing: .15em; | |
animation: | |
typing 3.5s steps(40, end), | |
blink-caret .75s step-end infinite; | |
} | |
@keyframes typing { | |
from { width: 0 } | |
to { width: 100% } | |
} | |
@keyframes blink-caret { | |
from, to { border-color: transparent } | |
50% { border-color: #4a6cf7; } | |
} | |
</style> | |
</head> | |
<body class="bg-gray-50 font-sans"> | |
<!-- Navigation --> | |
<nav class="bg-white shadow-sm"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="flex justify-between h-16"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 flex items-center"> | |
<i class="fas fa-brain text-blue-500 text-2xl mr-2"></i> | |
<span class="text-xl font-bold text-gray-900">NeuralScape</span> | |
</div> | |
<div class="hidden sm:ml-6 sm:flex sm:space-x-8"> | |
<a href="#" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Home</a> | |
<a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Models</a> | |
<a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Research</a> | |
<a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Docs</a> | |
</div> | |
</div> | |
<div class="hidden sm:ml-6 sm:flex sm:items-center"> | |
<button class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-md text-sm font-medium transition duration-150 ease-in-out"> | |
Sign In | |
</button> | |
</div> | |
<div class="-mr-2 flex items-center sm:hidden"> | |
<button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500"> | |
<span class="sr-only">Open main menu</span> | |
<i class="fas fa-bars"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<div class="gradient-bg"> | |
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-24 sm:px-6 lg:px-8 text-center"> | |
<h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl"> | |
<span class="block">Advanced AI Research</span> | |
<span class="block text-blue-100">For Ethical Innovation</span> | |
</h1> | |
<p class="mt-3 max-w-md mx-auto text-base text-blue-100 sm:text-lg md:mt-5 md:text-xl md:max-w-3xl"> | |
Explore cutting-edge AI models with transparent, responsible development practices. | |
</p> | |
<div class="mt-10 sm:flex sm:justify-center"> | |
<div class="rounded-md shadow"> | |
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-600 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10"> | |
Get Started | |
</a> | |
</div> | |
<div class="mt-3 rounded-md shadow sm:mt-0 sm:ml-3"> | |
<a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10"> | |
Live Demo | |
</a> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Model Showcase --> | |
<div class="py-12 bg-white"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="lg:text-center"> | |
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Models</h2> | |
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
Our Research Models | |
</p> | |
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
Carefully developed AI systems for specialized applications. | |
</p> | |
</div> | |
<div class="mt-10"> | |
<div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3"> | |
<!-- Model Card 1 --> | |
<div class="model-card bg-white overflow-hidden shadow rounded-lg transition duration-300 ease-in-out"> | |
<div class="px-4 py-5 sm:p-6"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 bg-blue-500 rounded-md p-3"> | |
<i class="fas fa-robot text-white text-xl"></i> | |
</div> | |
<div class="ml-5 w-0 flex-1"> | |
<h3 class="text-lg leading-6 font-medium text-gray-900"> | |
Empathicus | |
</h3> | |
<p class="mt-1 text-sm text-gray-500"> | |
Therapeutic AI Assistant | |
</p> | |
</div> | |
</div> | |
<div class="mt-4"> | |
<p class="text-sm text-gray-600"> | |
Specialized in empathic reflection and motivational interviewing techniques for mental health support. | |
</p> | |
</div> | |
<div class="mt-5"> | |
<span class="inline-flex rounded-md shadow-sm"> | |
<button type="button" class="inline-flex items-center px-3 py-2 border border-gray-300 text-sm leading-4 font-medium rounded-md text-gray-700 bg-white hover:text-gray-500 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:text-gray-800 active:bg-gray-50 transition ease-in-out duration-150"> | |
View Details | |
</button> | |
</span> | |
</div> | |
</div> | |
</div> | |
<!-- Model Card 2 --> | |
<div class="model-card bg-white overflow-hidden shadow rounded-lg transition duration-300 ease-in-out"> | |
<div class="px-4 py-5 sm:p-6"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 bg-purple-500 rounded-md p-3"> | |
<i class="fas fa-chart-line text-white text-xl"></i> | |
</div> | |
<div class="ml-5 w-0 flex-1"> | |
<h3 class="text-lg leading-6 font-medium text-gray-900"> | |
DataSage | |
</h3> | |
<p class="mt-1 text-sm text-gray-500"> | |
Analytical Prediction Engine | |
</p> | |
</div> | |
</div> | |
<div class="mt-4"> | |
<p class="text-sm text-gray-600"> | |
Advanced forecasting and pattern recognition for business intelligence and scientific research. | |
</p> | |
</div> | |
<div class="mt-5"> | |
<span class="inline-flex rounded-md shadow-sm"> | |
<button type="button" class="inline-flex items-center px-3 py-2 border border-gray-300 text-sm leading-4 font-medium rounded-md text-gray-700 bg-white hover:text-gray-500 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:text-gray-800 active:bg-gray-50 transition ease-in-out duration-150"> | |
View Details | |
</button> | |
</span> | |
</div> | |
</div> | |
</div> | |
<!-- Model Card 3 --> | |
<div class="model-card bg-white overflow-hidden shadow rounded-lg transition duration-300 ease-in-out"> | |
<div class="px-4 py-5 sm:p-6"> | |
<div class="flex items-center"> | |
<div class="flex-shrink-0 bg-green-500 rounded-md p-3"> | |
<i class="fas fa-language text-white text-xl"></i> | |
</div> | |
<div class="ml-5 w-0 flex-1"> | |
<h3 class="text-lg leading-6 font-medium text-gray-900"> | |
LinguaCore | |
</h3> | |
<p class="mt-1 text-sm text-gray-500"> | |
Multilingual Understanding System | |
</p> | |
</div> | |
</div> | |
<div class="mt-4"> | |
<p class="text-sm text-gray-600"> | |
State-of-the-art natural language processing with deep contextual understanding across 50+ languages. | |
</p> | |
</div> | |
<div class="mt-5"> | |
<span class="inline-flex rounded-md shadow-sm"> | |
<button type="button" class="inline-flex items-center px-3 py-2 border border-gray-300 text-sm leading-4 font-medium rounded-md text-gray-700 bg-white hover:text-gray-500 focus:outline-none focus:border-blue-300 focus:shadow-outline-blue active:text-gray-800 active:bg-gray-50 transition ease-in-out duration-150"> | |
View Details | |
</button> | |
</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Research Section --> | |
<div class="bg-gray-50 py-12"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="lg:text-center"> | |
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Methodology</h2> | |
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
Our Research Approach | |
</p> | |
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
Transparent, ethical development of advanced AI systems. | |
</p> | |
</div> | |
<div class="mt-10"> | |
<div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10"> | |
<!-- Research Item 1 --> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
<i class="fas fa-database"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg leading-6 font-medium text-gray-900">Data Collection</h3> | |
<p class="mt-2 text-base text-gray-500"> | |
Comprehensive datasets from diverse, ethical sources with proper anonymization and consent protocols. | |
</p> | |
</div> | |
</div> | |
<!-- Research Item 2 --> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
<i class="fas fa-brain"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg leading-6 font-medium text-gray-900">Model Architecture</h3> | |
<p class="mt-2 text-base text-gray-500"> | |
Custom transformer-based architectures optimized for specific use cases with explainability features. | |
</p> | |
</div> | |
</div> | |
<!-- Research Item 3 --> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
<i class="fas fa-flask"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg leading-6 font-medium text-gray-900">Testing Framework</h3> | |
<p class="mt-2 text-base text-gray-500"> | |
Rigorous evaluation across multiple dimensions including accuracy, fairness, and robustness. | |
</p> | |
</div> | |
</div> | |
<!-- Research Item 4 --> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white"> | |
<i class="fas fa-shield-alt"></i> | |
</div> | |
</div> | |
<div class="ml-4"> | |
<h3 class="text-lg leading-6 font-medium text-gray-900">Safety Protocols</h3> | |
<p class="mt-2 text-base text-gray-500"> | |
Multiple layers of content filtering and human oversight to ensure responsible deployment. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Demo Section --> | |
<div class="bg-white py-12"> | |
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> | |
<div class="lg:text-center"> | |
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Interactive</h2> | |
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl"> | |
Try Our Models | |
</p> | |
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto"> | |
Experience our AI systems with this safe, limited demo. | |
</p> | |
</div> | |
<div class="mt-10 bg-gray-50 rounded-lg p-6"> | |
<div class="flex flex-col space-y-4"> | |
<div class="flex items-start space-x-4"> | |
<div class="flex-shrink-0"> | |
<div class="h-10 w-10 rounded-full bg-blue-500 flex items-center justify-center text-white"> | |
<i class="fas fa-user"></i> | |
</div> | |
</div> | |
<div class="min-w-0 flex-1"> | |
<div class="bg-white p-4 rounded-lg shadow-sm chat-bubble"> | |
<p class="text-sm text-gray-800">Hello! I'm interested in learning about your Empathicus model. How does it work?</p> | |
</div> | |
</div> | |
</div> | |
<div class="flex items-start space-x-4"> | |
<div class="flex-shrink-0"> | |
<div class="h-10 w-10 rounded-full bg-gray-300 flex items-center justify-center text-gray-700"> | |
<i class="fas fa-robot"></i> | |
</div> | |
</div> | |
<div class="min-w-0 flex-1"> | |
<div class="bg-blue-500 p-4 rounded-lg shadow-sm text-white chat-bubble"> | |
<p class="text-sm typewriter">Empathicus is designed to understand and reflect human emotions using advanced NLP techniques. It's trained on therapeutic dialogue patterns to provide supportive responses while maintaining professional boundaries.</p> | |
</div> | |
</div> | |
</div> | |
<div class="mt-6"> | |
<div class="flex rounded-md shadow-sm"> | |
<div class="relative flex-grow focus-within:z-10"> | |
<input type="text" class="block w-full rounded-none rounded-l-md pl-4 py-3 border-gray-300 focus:border-blue-500 focus:ring-blue-500" placeholder="Type your message..."> | |
</div> | |
<button class="-ml-px relative inline-flex items-center space-x-2 px-4 py-3 border border-gray-300 text-sm font-medium rounded-r-md text-gray-700 bg-gray-50 hover:bg-gray-100 focus:outline-none focus:ring-1 focus:ring-blue-500 focus:border-blue-500"> | |
<i class="fas fa-paper-plane"></i> | |
<span>Send</span> | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<!-- Footer --> | |
<footer class="bg-gray-800"> | |
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8"> | |
<div class="grid grid-cols-2 md:grid-cols-4 gap-8"> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">About</h3> | |
<ul class="mt-4 space-y-4"> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">Company</a></li> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">Team</a></li> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">Careers</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Legal</h3> | |
<ul class="mt-4 space-y-4"> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">Privacy</a></li> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">Terms</a></li> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">Ethics</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Resources</h3> | |
<ul class="mt-4 space-y-4"> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">Documentation</a></li> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">API</a></li> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">Research Papers</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Connect</h3> | |
<ul class="mt-4 space-y-4"> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">Twitter</a></li> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">GitHub</a></li> | |
<li><a href="#" class="text-base text-gray-400 hover:text-white">LinkedIn</a></li> | |
</ul> | |
</div> | |
</div> | |
<div class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between"> | |
<div class="flex space-x-6 md:order-2"> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<span class="sr-only">Facebook</span> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<span class="sr-only">Twitter</span> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white"> | |
<span class="sr-only">GitHub</span> | |
<i class="fab fa-github"></i> | |
</a> | |
</div> | |
<p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1"> | |
© 2023 NeuralScape AI Research. All rights reserved. | |
</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Simple animation for the demo chat | |
document.addEventListener('DOMContentLoaded', function() { | |
setTimeout(function() { | |
document.querySelector('.typewriter').classList.remove('typewriter'); | |
}, 3500); | |
}); | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=aiwhisperer33/relat" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |