IMvision12 commited on
Commit
ebaf154
·
verified ·
1 Parent(s): 7fddb9e

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +51 -11
index.html CHANGED
@@ -31,16 +31,47 @@
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>
@@ -50,14 +81,23 @@
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>[!IMPORTANT]</strong>
60
- <p>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:</p>
 
 
 
 
 
 
 
 
61
  <div class="install">
62
  <code>pip install git+https://github.com/IMvision12/KerasFormers.git</code>
63
  </div>
 
31
  transition: all 0.15s ease;
32
  }
33
  .links a:hover { border-color: #f5a623; color: #f5a623; }
34
+
35
+ /* ── Important Callout ── */
36
+ .callout {
37
+ margin-top: 1.5rem;
38
+ padding: 0.9rem 1rem;
39
+ text-align: left;
40
+ border-left: 3px solid #8b5cf6;
41
+ border-radius: 6px;
42
+ background: rgba(139, 92, 246, 0.08);
43
+ font-size: 0.82rem;
44
+ line-height: 1.5;
45
+ }
46
+ .callout__header {
47
+ display: flex;
48
+ align-items: center;
49
+ gap: 0.55rem;
50
+ margin-bottom: 0.35rem;
51
+ }
52
+ .callout__icon {
53
+ width: 18px;
54
+ height: 18px;
55
+ color: #a78bfa;
56
+ flex-shrink: 0;
57
+ }
58
+ .callout__title {
59
+ color: #a78bfa;
60
+ font-weight: 600;
61
+ font-size: 0.9rem;
62
+ letter-spacing: -0.01em;
63
+ }
64
+ .callout p {
65
+ margin: 0;
66
+ font-size: 0.82rem;
67
+ opacity: 0.9;
68
  }
 
 
69
  .install {
70
+ margin-top: 0.65rem;
71
+ padding: 0.55rem 0.7rem;
72
+ border-radius: 6px;
73
+ background: rgba(128,128,128,0.12);
74
+ overflow-x: auto;
75
  }
76
  .install code { padding: 0; background: transparent; white-space: nowrap; }
77
  </style>
 
81
  <img src="https://cdn-uploads.huggingface.co/production/uploads/629631215de6e0eb3292ae91/klgAvDJagwTHD2Bxliz8U.png" alt="kerasformers logo">
82
  <h1>kerasformers</h1>
83
  <p>KerasFormers: Open-source Keras 3 collection of pretrained models across Vision, LLM, VLM, Depth, Speech, and more</p>
84
+
85
  <nav class="links">
86
  <a href="https://github.com/IMvision12/KerasFormers">GitHub</a>
87
  <a href="https://imvision12.github.io/KerasFormers/">Docs</a>
88
  <a href="https://pypi.org/project/kerasformers/">PyPI</a>
89
  </nav>
90
+
91
+ <section class="callout">
92
+ <div class="callout__header">
93
+ <svg class="callout__icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
94
+ <path d="M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z"/>
95
+ <line x1="12" y1="8" x2="12" y2="12"/>
96
+ <line x1="12" y1="16" x2="12.01" y2="16"/>
97
+ </svg>
98
+ <span class="callout__title">Important</span>
99
+ </div>
100
+ <p>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 <code>main</code> branch on GitHub rather than from PyPI:</p>
101
  <div class="install">
102
  <code>pip install git+https://github.com/IMvision12/KerasFormers.git</code>
103
  </div>