IMvision12 commited on
Commit
8322ceb
·
verified ·
1 Parent(s): ef4f052

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +67 -0
index.html ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1">
6
+ <title>kerasformers</title>
7
+ <style>
8
+ :root { color-scheme: light dark; }
9
+ * { box-sizing: border-box; }
10
+ html, body { min-height: 100vh; margin: 0; }
11
+ body {
12
+ display: grid; place-items: center; width: 100%;
13
+ font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
14
+ background: #ffffff; color: #111318;
15
+ }
16
+ @media (prefers-color-scheme: dark) {
17
+ body { background: #0b0b0d; color: #e8e8ea; }
18
+ }
19
+ .card { text-align: center; padding: 2rem 1.25rem; max-width: 600px; }
20
+ .card img { width: 78px; height: 78px; border-radius: 18px; display: block; margin: 0 auto; }
21
+ h1 { font-size: 1.55rem; font-weight: 700; margin: 0.85rem 0 0.35rem; letter-spacing: -0.01em; }
22
+ p { margin: 0 0 1.35rem; opacity: 0.72; line-height: 1.55; font-size: 0.95rem; }
23
+ code {
24
+ font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.86em;
25
+ padding: 0.05em 0.35em; border-radius: 6px; background: rgba(128,128,128,0.16);
26
+ }
27
+ .links { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; }
28
+ .links a {
29
+ text-decoration: none; font-size: 0.85rem; font-weight: 600; color: inherit;
30
+ padding: 0.42rem 0.85rem; border-radius: 999px; border: 1px solid rgba(128,128,128,0.35);
31
+ transition: all 0.15s ease;
32
+ }
33
+ .links a:hover { border-color: #f5a623; color: #f5a623; }
34
+ .notice {
35
+ margin-top: 1.5rem; padding: 0.9rem 1rem; text-align: left;
36
+ border-left: 3px solid #f5a623; border-radius: 6px; background: rgba(128,128,128,0.08);
37
+ font-size: 0.82rem; line-height: 1.5;
38
+ }
39
+ .notice strong { display: block; margin-bottom: 0.25rem; }
40
+ .notice p { margin: 0; font-size: 0.82rem; }
41
+ .install {
42
+ margin-top: 0.65rem; padding: 0.55rem 0.7rem; border-radius: 6px;
43
+ background: rgba(128,128,128,0.12); overflow-x: auto;
44
+ }
45
+ .install code { padding: 0; background: transparent; white-space: nowrap; }
46
+ </style>
47
+ </head>
48
+ <body>
49
+ <main class="card">
50
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/629631215de6e0eb3292ae91/klgAvDJagwTHD2Bxliz8U.png" alt="kerasformers logo">
51
+ <h1>kerasformers</h1>
52
+ <p>KerasFormers: Open-source Keras 3 collection of pretrained models across Vision, LLM, VLM, Depth, Speech, and more</p>
53
+ <nav class="links">
54
+ <a href="https://github.com/IMvision12/KerasFormers">GitHub</a>
55
+ <a href="https://imvision12.github.io/KerasFormers/">Docs</a>
56
+ <a href="https://pypi.org/project/kerasformers/">PyPI</a>
57
+ </nav>
58
+ <section class="notice">
59
+ <strong>🚧 Active development</strong>
60
+ <p>The PyPI package can lag behind the latest models, fixes, and APIs. For the most up-to-date version, we recommend installing directly from the <code>main</code> branch on GitHub:</p>
61
+ <div class="install">
62
+ <code>pip install git+https://github.com/IMvision12/KerasFormers.git</code>
63
+ </div>
64
+ </section>
65
+ </main>
66
+ </body>
67
+ </html>