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

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +14 -92
README.md CHANGED
@@ -7,96 +7,18 @@ sdk: static
7
  pinned: false
8
  ---
9
 
10
- <!doctype html>
11
- <html lang="en">
12
- <head>
13
- <meta charset="utf-8">
14
- <meta name="viewport" content="width=device-width, initial-scale=1">
15
- <title>kerasformers</title>
16
- <style>
17
- :root { color-scheme: light dark; }
18
- * { box-sizing: border-box; }
19
- html, body {
20
- min-height: 100vh;
21
- margin: 0;
22
- }
23
- body {
24
- display: grid;
25
- place-items: center;
26
- width: 100%;
27
- font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
28
- background: #ffffff;
29
- color: #111318;
30
- }
31
- @media (prefers-color-scheme: dark) {
32
- body { background: #0b0b0d; color: #e8e8ea; }
33
- }
34
- .card {
35
- text-align: center;
36
- padding: 2rem 1.25rem;
37
- max-width: 440px;
38
- }
39
- .card img {
40
- width: 78px;
41
- height: 78px;
42
- border-radius: 18px;
43
- display: block;
44
- margin: 0 auto;
45
- }
46
- h1 {
47
- font-size: 1.55rem;
48
- font-weight: 700;
49
- margin: 0.85rem 0 0.35rem;
50
- letter-spacing: -0.01em;
51
- }
52
- p {
53
- margin: 0 0 1.35rem;
54
- opacity: 0.72;
55
- line-height: 1.55;
56
- font-size: 0.95rem;
57
- }
58
- code {
59
- font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
60
- font-size: 0.86em;
61
- padding: 0.05em 0.35em;
62
- border-radius: 6px;
63
- background: rgba(128,128,128,0.16);
64
- }
65
- .links {
66
- display: flex;
67
- gap: 0.5rem;
68
- justify-content: center;
69
- flex-wrap: wrap;
70
- }
71
- .links a {
72
- text-decoration: none;
73
- font-size: 0.85rem;
74
- font-weight: 600;
75
- color: inherit;
76
- padding: 0.42rem 0.85rem;
77
- border-radius: 999px;
78
- border: 1px solid rgba(128,128,128,0.35);
79
- transition: all 0.15s ease;
80
- }
81
- .links a:hover {
82
- border-color: #f5a623;
83
- color: #f5a623;
84
- }
85
- </style>
86
- </head>
87
 
88
- <body>
89
- <main class="card">
90
- <img src="https://cdn-uploads.huggingface.co/production/uploads/629631215de6e0eb3292ae91/klgAvDJagwTHD2Bxliz8U.png" alt="kerasformers logo">
91
- <h1>kerasformers</h1>
92
- <p>
93
- KerasFormers: Open-source Keras 3 collection of pretrained models across Vision, LLM, VLM, Depth, Speech, and more
94
- </p>
95
- <nav class="links">
96
- <a href="https://github.com/IMvision12/KerasFormers">GitHub</a>
97
- <a href="https://imvision12.github.io/KerasFormers/">Docs</a>
98
- <a href="https://pypi.org/project/kerasformers/">PyPI</a>
99
- </nav>
100
- </main>
101
- </body>
102
- </html>
 
7
  pinned: false
8
  ---
9
 
10
+ # kerasformers
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
 
12
+ KerasFormers: Open-source Keras 3 collection of pretrained models across Vision, LLM, VLM, Depth, Speech, and more.
13
+
14
+ - [GitHub](https://github.com/IMvision12/KerasFormers)
15
+ - [Docs](https://imvision12.github.io/KerasFormers/)
16
+ - [PyPI](https://pypi.org/project/kerasformers/)
17
+
18
+ > 🚧 **Active development**
19
+ kerasformers is under active development. We are currently migrating from GitHub-release-hosted weights to the Hugging Face Hub, with proper typed config files and weights for each model. During this transition we recommend installing directly from the main branch on GitHub rather than from PyPI:
20
+
21
+ >
22
+ > ```bash
23
+ > pip install git+https://github.com/IMvision12/KerasFormers.git
24
+ > ```