Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Word Dataset | Neural Word Wizard</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| </head> | |
| <body class="bg-gray-100 min-h-screen"> | |
| <div class="container mx-auto px-4 py-12 mt-20"> | |
| <header class="text-center mb-12"> | |
| <div class="flex items-center justify-center space-x-3"> | |
| <i data-feather="cpu" class="w-10 h-10 text-purple-600"></i> | |
| <h1 class="text-4xl font-bold bg-gradient-to-r from-purple-600 to-blue-500 bg-clip-text text-transparent">Train Model</h1> | |
| </div> | |
| <p class="mt-4 text-lg text-gray-600">Train your neural network model</p> | |
| </header> | |
| <div class="max-w-3xl mx-auto bg-white rounded-xl shadow-md overflow-hidden p-6"> | |
| <div class="bg-green-50 border-l-4 border-green-500 p-4 mb-6"> | |
| <div class="flex"> | |
| <div class="flex-shrink-0"> | |
| <i data-feather="check-circle" class="h-5 w-5 text-green-500"></i> | |
| </div> | |
| <div class="ml-3"> | |
| <p class="text-sm text-green-700"> | |
| Word dataset has been successfully uploaded. | |
| </p> | |
| </div> | |
| </div> | |
| </div> | |
| <button class="w-full py-3 px-4 bg-purple-600 hover:bg-purple-700 text-white font-medium rounded-lg transition-colors flex items-center justify-center"> | |
| <i data-feather="play-circle" class="mr-2"></i> | |
| Train Model | |
| </button> | |
| <div class="mt-8 text-center"> | |
| <a href="index.html" class="inline-flex items-center text-purple-600 hover:text-purple-800 transition-colors"> | |
| <i data-feather="arrow-left" class="mr-2"></i> | |
| Back to main page | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <script src="components/navbar.js"></script> | |
| <script src="components/footer.js"></script> | |
| <script src="script.js"></script> | |
| <custom-footer></custom-footer> | |
| <script> | |
| </script> | |
| <script>feather.replace();</script> | |
| </body> | |
| </html> |