Tim13ekd commited on
Commit
b645b24
·
verified ·
1 Parent(s): 5216062

es soll nur noch der button train model da sein und lösche den reiter datasets

Browse files
Files changed (1) hide show
  1. word-dataset.html +9 -53
word-dataset.html CHANGED
@@ -12,49 +12,20 @@
12
  <div class="container mx-auto px-4 py-12 mt-20">
13
  <header class="text-center mb-12">
14
  <div class="flex items-center justify-center space-x-3">
15
- <i data-feather="database" class="w-10 h-10 text-purple-600"></i>
16
- <h1 class="text-4xl font-bold bg-gradient-to-r from-purple-600 to-blue-500 bg-clip-text text-transparent">Word Dataset</h1>
17
  </div>
18
- <p class="mt-4 text-lg text-gray-600">Pre-built datasets for quick training</p>
19
  </header>
20
 
21
  <div class="max-w-3xl mx-auto bg-white rounded-xl shadow-md overflow-hidden p-6">
22
- <div class="grid gap-6 md:grid-cols-2">
23
- <div class="dataset-card p-4 rounded-lg border border-gray-200 hover:border-purple-300 transition-colors">
24
- <h3 class="font-semibold text-lg text-purple-700 flex items-center">
25
- <i data-feather="book" class="mr-2"></i>Common Words
26
- </h3>
27
- <p class="text-gray-600 mt-2">500 most common English words from project Gutenberg</p>
28
- <button class="mt-3 text-sm bg-purple-100 text-purple-700 px-3 py-1 rounded-full hover:bg-purple-200 transition-colors" onclick="loadDataset('common')">Load Dataset</button>
29
- </div>
30
-
31
- <div class="dataset-card p-4 rounded-lg border border-gray-200 hover:border-blue-300 transition-colors">
32
- <h3 class="font-semibold text-lg text-blue-700 flex items-center">
33
- <i data-feather="message-square" class="mr-2"></i>Chat Phrases
34
- </h3>
35
- <p class="text-gray-600 mt-2">Common chat and messaging phrases with abbreviations</p>
36
- <button class="mt-3 text-sm bg-blue-100 text-blue-700 px-3 py-1 rounded-full hover:bg-blue-200 transition-colors" onclick="loadDataset('chat')">Load Dataset</button>
37
- </div>
38
-
39
- <div class="dataset-card p-4 rounded-lg border border-gray-200 hover:border-green-300 transition-colors">
40
- <h3 class="font-semibold text-lg text-green-700 flex items-center">
41
- <i data-feather="globe" class="mr-2"></i>Tech Terms
42
- </h3>
43
- <p class="text-gray-600 mt-2">Technical terms and programming language keywords</p>
44
- <button class="mt-3 text-sm bg-green-100 text-green-700 px-3 py-1 rounded-full hover:bg-green-200 transition-colors" onclick="loadDataset('tech')">Load Dataset</button>
45
- </div>
46
-
47
- <div class="dataset-card p-4 rounded-lg border border-gray-200 hover:border-yellow-300 transition-colors">
48
- <h3 class="font-semibold text-lg text-yellow-700 flex items-center">
49
- <i data-feather="map" class="mr-2"></i>Names & Places
50
- </h3>
51
- <p class="text-gray-600 mt-2">Common names and geographical locations</p>
52
- <button class="mt-3 text-sm bg-yellow-100 text-yellow-700 px-3 py-1 rounded-full hover:bg-yellow-200 transition-colors" onclick="loadDataset('names')">Load Dataset</button>
53
- </div>
54
- </div>
55
 
56
  <div class="mt-8 text-center">
57
- <a href="index.html" class="inline-flex items-center text-purple-600 hover:text-purple-800 transition-colors">
58
  <i data-feather="arrow-left" class="mr-2"></i>
59
  Back to main page
60
  </a>
@@ -66,22 +37,7 @@
66
  <script src="script.js"></script>
67
  <custom-footer></custom-footer>
68
  <script>
69
- function loadDataset(type) {
70
- // This would be replaced with actual dataset loading
71
- alert(`Loading ${type} dataset...`);
72
-
73
- // Simulate loading a dataset
74
- const datasets = {
75
- common: "hello world\nhow are you\nwhat is your name\nthis is a test\ngood morning\ngood night\nthank you\nplease wait\nI love coding\nthe quick brown fox\njumps over the lazy dog",
76
- chat: "brb\nlol\nomg\nttyl\nbtw\nidk\nrofl\nasap\nthx\ncya\nnp\ngtg\nhbu\nimo\nfyi",
77
- tech: "javascript\npython\nreact\nnodejs\napi\ndatabase\nfunction\nvariable\narray\nobject\nloop\nconditional\nasync\nawait",
78
- names: "john\nmary\ndavid\nsarah\nmichael\nemma\njames\nolivia\nrobert\nsophia\nnew york\nlondon\nparis\ntokyo\nberlin"
79
- };
80
-
81
- // Redirect to main page with dataset loaded
82
- window.location.href = `index.html?dataset=${type}`;
83
- }
84
- </script>
85
  <script>feather.replace();</script>
86
  </body>
87
  </html>
 
12
  <div class="container mx-auto px-4 py-12 mt-20">
13
  <header class="text-center mb-12">
14
  <div class="flex items-center justify-center space-x-3">
15
+ <i data-feather="cpu" class="w-10 h-10 text-purple-600"></i>
16
+ <h1 class="text-4xl font-bold bg-gradient-to-r from-purple-600 to-blue-500 bg-clip-text text-transparent">Train Model</h1>
17
  </div>
18
+ <p class="mt-4 text-lg text-gray-600">Train your neural network model</p>
19
  </header>
20
 
21
  <div class="max-w-3xl mx-auto bg-white rounded-xl shadow-md overflow-hidden p-6">
22
+ <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">
23
+ <i data-feather="play-circle" class="mr-2"></i>
24
+ Train Model
25
+ </button>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
 
27
  <div class="mt-8 text-center">
28
+ <a href="index.html" class="inline-flex items-center text-purple-600 hover:text-purple-800 transition-colors">
29
  <i data-feather="arrow-left" class="mr-2"></i>
30
  Back to main page
31
  </a>
 
37
  <script src="script.js"></script>
38
  <custom-footer></custom-footer>
39
  <script>
40
+ </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  <script>feather.replace();</script>
42
  </body>
43
  </html>