Update index.html
Browse files- index.html +15 -6
index.html
CHANGED
@@ -10,13 +10,15 @@
|
|
10 |
font-family: Arial, sans-serif;
|
11 |
margin: 0;
|
12 |
padding: 20px;
|
13 |
-
background-color: #
|
|
|
14 |
}
|
15 |
header {
|
16 |
-
background: #4B0082;
|
17 |
color: white;
|
18 |
padding: 10px 20px;
|
19 |
text-align: center;
|
|
|
20 |
}
|
21 |
h1 {
|
22 |
margin: 0;
|
@@ -24,17 +26,19 @@
|
|
24 |
section {
|
25 |
margin: 20px 0;
|
26 |
padding: 20px;
|
27 |
-
background:
|
28 |
border-radius: 8px;
|
29 |
-
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.
|
30 |
}
|
31 |
code {
|
32 |
-
background-color: #
|
|
|
33 |
padding: 2px 4px;
|
34 |
border-radius: 4px;
|
35 |
}
|
36 |
pre {
|
37 |
-
background-color: #
|
|
|
38 |
padding: 10px;
|
39 |
border-radius: 4px;
|
40 |
overflow-x: auto;
|
@@ -44,6 +48,9 @@
|
|
44 |
margin-top: 20px;
|
45 |
font-size: small;
|
46 |
}
|
|
|
|
|
|
|
47 |
</style>
|
48 |
</head>
|
49 |
<body>
|
@@ -65,6 +72,8 @@
|
|
65 |
<pre><code>$ huggingface-cli download google/<TAB></code></pre>
|
66 |
<p>This will suggest available models:</p>
|
67 |
<pre><code>google/codegemma-7b google/flan-t5-xl
|
|
|
|
|
68 |
google/gemma-2-9b-it google/paligemma-3b-pt-224
|
69 |
google/gemma-2b google/pegasus-cnn_dailymail
|
70 |
google/gemma-2b-it google/siglip-so400m-patch14-384
|
|
|
10 |
font-family: Arial, sans-serif;
|
11 |
margin: 0;
|
12 |
padding: 20px;
|
13 |
+
background-color: #1e1e1e; /* Dark background */
|
14 |
+
color: #f5f5f5; /* Light text color */
|
15 |
}
|
16 |
header {
|
17 |
+
background: #4B0082; /* Dark purple */
|
18 |
color: white;
|
19 |
padding: 10px 20px;
|
20 |
text-align: center;
|
21 |
+
border-radius: 8px;
|
22 |
}
|
23 |
h1 {
|
24 |
margin: 0;
|
|
|
26 |
section {
|
27 |
margin: 20px 0;
|
28 |
padding: 20px;
|
29 |
+
background: #2a2a2a; /* Darker section background */
|
30 |
border-radius: 8px;
|
31 |
+
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
|
32 |
}
|
33 |
code {
|
34 |
+
background-color: #333; /* Code background */
|
35 |
+
color: #f8f8f2; /* Code text color */
|
36 |
padding: 2px 4px;
|
37 |
border-radius: 4px;
|
38 |
}
|
39 |
pre {
|
40 |
+
background-color: #333; /* Preformatted text background */
|
41 |
+
color: #f8f8f2; /* Preformatted text color */
|
42 |
padding: 10px;
|
43 |
border-radius: 4px;
|
44 |
overflow-x: auto;
|
|
|
48 |
margin-top: 20px;
|
49 |
font-size: small;
|
50 |
}
|
51 |
+
a {
|
52 |
+
color: #66d9ef; /* Link color */
|
53 |
+
}
|
54 |
</style>
|
55 |
</head>
|
56 |
<body>
|
|
|
72 |
<pre><code>$ huggingface-cli download google/<TAB></code></pre>
|
73 |
<p>This will suggest available models:</p>
|
74 |
<pre><code>google/codegemma-7b google/flan-t5-xl
|
75 |
+
google/gemma-2-2b-jpn-it-pytorch google/matcha-plotqa-v2
|
76 |
+
google/gemma-2-9b google/owlvit-base-patch32
|
77 |
google/gemma-2-9b-it google/paligemma-3b-pt-224
|
78 |
google/gemma-2b google/pegasus-cnn_dailymail
|
79 |
google/gemma-2b-it google/siglip-so400m-patch14-384
|