jeffboudier HF Staff commited on
Commit
7630ce9
Β·
1 Parent(s): 9d0b14d

fixes and cosmetic updates

Browse files
Files changed (3) hide show
  1. README.md +1 -1
  2. src/fragments/enterprisebanner.html +31 -3
  3. src/index.html +52 -45
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: All about Enterprise Hub
3
  emoji: 🌌
4
  colorFrom: yellow
5
  colorTo: purple
 
1
  ---
2
+ title: Enterprise Hub
3
  emoji: 🌌
4
  colorFrom: yellow
5
  colorTo: purple
src/fragments/enterprisebanner.html CHANGED
@@ -1,5 +1,7 @@
1
- <div style="height: 200px; width: 100%; overflow: hidden; background: linear-gradient(270deg, red, orange, yellow, green, blue, indigo, violet); background-size: 1400% 1400%; animation: rainbow 10s ease infinite;">
2
-
 
 
3
  </div>
4
 
5
  <style>
@@ -8,4 +10,30 @@
8
  50% { background-position: 100% 50%; }
9
  100% { background-position: 0% 50%; }
10
  }
11
- </style>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div style="position: relative; height: 120px; width: 100%; overflow: hidden; background: linear-gradient(270deg, #FFEBEE, #FFF3E0, #FFFDE7, #E8F5E9, #E3F2FD, #F3E5F5); background-size: 1400% 1400%; animation: rainbow 10s ease infinite;">
2
+ <div id="banner-text" style="position: absolute; white-space: nowrap; font-size: 24px; font-weight: bold; color: black; animation: text-pan 10s linear infinite;">
3
+ Collaboration
4
+ </div>
5
  </div>
6
 
7
  <style>
 
10
  50% { background-position: 100% 50%; }
11
  100% { background-position: 0% 50%; }
12
  }
13
+
14
+ @keyframes text-pan {
15
+ 0% { left: -100%; }
16
+ 16.66% { left: 100%; }
17
+ 16.67% { left: -100%; content: "Compute"; }
18
+ 33.33% { left: 100%; }
19
+ 33.34% { left: -100%; content: "Security"; }
20
+ 50% { left: 100%; }
21
+ 50.01% { left: -100%; content: "Governance"; }
22
+ 66.66% { left: 100%; }
23
+ 66.67% { left: -100%; content: "Compliance"; }
24
+ 83.33% { left: 100%; }
25
+ 83.34% { left: -100%; content: "Support"; }
26
+ 100% { left: 100%; }
27
+ }
28
+ </style>
29
+
30
+ <script>
31
+ const bannerText = document.getElementById('banner-text');
32
+ const textSequence = ["Collaboration", "Compute", "Security", "Governance", "Compliance", "Support"];
33
+ let currentIndex = 0;
34
+
35
+ setInterval(() => {
36
+ bannerText.textContent = textSequence[currentIndex];
37
+ currentIndex = (currentIndex + 1) % textSequence.length;
38
+ }, 1666); // 10s / 6 colors = ~1666ms per color
39
+ </script>
src/index.html CHANGED
@@ -10,6 +10,11 @@
10
  <base target="_blank">
11
  <title>Enterprise Hub - Why you need it, how to get it</title>
12
  <link rel="stylesheet" href="style.css">
 
 
 
 
 
13
  </head>
14
 
15
  <body>
@@ -48,7 +53,7 @@
48
  <d-contents>
49
  </d-contents>
50
 
51
- <p>Welcome! <br/>In this article, you will learn all about the Enterprise features of Hugging Face, and how to get them.</p>
52
 
53
  <aside>Reading time: 10-15 minutes.</aside>
54
 
@@ -67,64 +72,66 @@
67
  <table>
68
  <thead>
69
  <tr>
70
- <th></th>
71
- <th><strong>Free Organizations</strong></th>
72
- <th><strong>Enterprise Hub</strong></th>
73
- <th><strong>Enterprise Plus</strong></th>
74
  </tr>
75
  </thead>
76
  <tbody>
77
- <tr>
78
- <td>Collaboration</td>
79
- <td>DIY Admin</td>
80
- <td>Resource Groups<br/>
81
  Private Datasets Viewer<br/>
82
  Download Analytics<br/>
83
  Extended Private Storage</td>
84
- <td>Resource Groups<br/>
85
  Private Datasets Viewer<br/>
86
  Download Analytics<br/>
87
  Extended Private Storage</td>
88
  </tr>
89
- <tr>
90
- <td>Compute</td>
91
- <td></td>
92
- <td>Inference Providers<br/>
93
  Inference Endpoints GPU Quotas<br/>
94
- Spaces ZeroGPU, Dev Mode</td>
95
- <td>Inference Providers<br/>
 
96
  Inference Endpoints GPU Quotas<br/>
97
- Spaces ZeroGPU, Dev Mode</td>
 
98
  </tr>
99
- <tr>
100
- <td>Security</td>
101
- <td></td>
102
- <td>Standard SSO<br/>
103
  2 Factor Authentification<br/>
104
  Access Token Management</td>
105
- <td><strong>Advanced SSO</strong><br/>
106
  2 Factor Authentification<br/>
107
  Access Token Management</td>
108
  </tr>
109
- <tr>
110
- <td>Governance</td>
111
- <td></td>
112
- <td>Audit Logs</td>
113
- <td>Audit Logs<br/>
114
  <strong>HF Model Gateway (preview)</strong></td>
115
  </tr>
116
- <tr>
117
- <td>Compliance</td>
118
- <td></td>
119
- <td>Storage Regions</td>
120
- <td>Storage Regions</br/>
121
  <strong>Network Security</strong></td>
122
  </tr>
123
- <tr>
124
- <td>Support</td>
125
- <td>Community Support (Forum)</td>
126
- <td>Email Support</td>
127
- <td><strong>Direct Expert Support (Slack)</strong></td>
128
  </tr>
129
  </tbody>
130
  </table>
@@ -136,7 +143,7 @@
136
 
137
  <h2>Why upgrade to an Enterprise organization</h2>
138
 
139
- <h3>Advanced Collaboration</h3>
140
 
141
  <p>Enterprise Hub and Enterprise Plus organizations allow their members to privately host and share unlimited models, datasets and Spaces repositories. Members of Enterprise organizations benefit from <strong>higher rate limits</strong> accessing all Hugging Face services from the Hub and the Hugging Face open source libraries.</p>
142
 
@@ -153,7 +160,7 @@
153
  <aside>Learn more about <a href="https://huggingface.co/docs/hub/en/enterprise-hub-analytics">Download Analytics</a>.<br/><br/>
154
  Learn more about <a href="https://huggingface.co/docs/hub/en/enterprise-hub-gating-group-collections">Gating Group Collections</a>.</aside>
155
 
156
- <h3>Advanced Compute</h3>
157
 
158
  <p>When upgrading their organization to Enterprise, companies provide their employees with powerful compute options to build and host AI applications.</p>
159
 
@@ -172,7 +179,7 @@
172
  </ul>
173
  </p>
174
 
175
- <h3>Advanced Security</h3>
176
 
177
  <p>Free organizations are designed for minimum friction adding collaborators, students, professionals to foster transparent collaboration. For companies that require security processes, Enterprise organizations offer many features to enforce security rules and make sure appropriate access controls and rules are in place.</p>
178
 
@@ -202,7 +209,7 @@
202
  </ul>
203
  </p>
204
 
205
- <h3>Advanced Governance and Compliance</h3>
206
 
207
  <p>Enterprises need traceability and auditability of their confidential information. Enterprise organization admins on Hugging Face have access to <strong>Audit Logs</strong> to inspect and retrieve all changes made to their organization, such as new users, access tokens or repositories, changes to resource groups, access controls and more. Each log entry includes information about the user, their location, the action, change and time. Lots can be easily downloaded as JSON files for analysis.</p>
208
  <aside>Learn more about <a href="https://huggingface.co/docs/hub/audit-logs">Audit Logs</a>.</aside>
@@ -228,7 +235,7 @@
228
  </ul>
229
  <p>Model Gateway is a new feature currently in preview for select Enterprise Plus organizations.</p>
230
 
231
- <h3>Advanced Support</h3>
232
 
233
  <p>Enterprise Hub organization members enjoy priority support covering their usage of Hugging Face via email requests.</p>
234
  <p>Enterprise Plus organization members enjoy direct expert support from the Hugging Face team via a dedicated, private Slack channel hosted by Hugging Face.</p>
@@ -247,7 +254,7 @@
247
  <p>Enterprise organizations can purchase <strong>Compute Credits</strong> toward usage of premium features by their members, such as Inference Providers, Inference Endpoints and Spaces premium hardware. Compute Credits can be purchased upon request via an Order Form, are applied to the organization upon payment, and are valid for one year. Compute Credits purchases of $200k or higher qualify for volume discounts.</p>
248
  <aside>See <a href="https://huggingface.co/pricing">pricing</a> for Hub premium usage-based features</aside>
249
 
250
- <p>To contact the Hugging Face sales team, please email <a href=mailto:enterprise-contracts@huggingface.co>enterprise-contracts@huggingface.co</a></p>
251
 
252
  <h3>Contracting</h3>
253
 
@@ -262,10 +269,10 @@
262
  Enterprise Hub features can be tested for as little as $20 with a credit card, and we do not offer free trials.</p>
263
 
264
  <p><strong><i>How do I follow my internal new vendor onboarding processes?</i></strong><br/>
265
- Any vendor, security or legal review process requires to purchase Enterprise Hub or Enterprise Plus via a contract. Our team will be happy to follow your new vendor onboarding process requirements at <a href=mailto:enterprise-contracts@huggingface.co>enterprise-contracts@huggingface.co</a></p>
266
 
267
  <p><strong><i>How do I set up a security review of Hugging Face prior to purchase?</i></strong><br/>
268
- Security reviews are only possible when purchasing Enterprise Hub or Enterprise Plus via a contract. Please contact our team at <a href=mailto:enterprise-contracts@huggingface.co>enterprise-contracts@huggingface.co</a>, upon signing a unilateral NDA, Hugging Face will share our SOC2 Type2 report detailing all the information required in security reviews. Our security team can accommodate custom security questionnaires for contract values above $120k.</p>
269
 
270
  <p><strong><i>Can the standard contract terms be modified after my legal team reviews them?</i></strong><br/>
271
  We only allow legal review for contract values above $120k, the Hugging Face legal team can review change requests to be added to the Order Form, which includes all contract legal terms. </p>
 
10
  <base target="_blank">
11
  <title>Enterprise Hub - Why you need it, how to get it</title>
12
  <link rel="stylesheet" href="style.css">
13
+ <style>
14
+ html {
15
+ scroll-behavior: smooth;
16
+ }
17
+ </style>
18
  </head>
19
 
20
  <body>
 
53
  <d-contents>
54
  </d-contents>
55
 
56
+ <p>In this article, you will learn all about the Enterprise features of Hugging Face, and how to get them.</p>
57
 
58
  <aside>Reading time: 10-15 minutes.</aside>
59
 
 
72
  <table>
73
  <thead>
74
  <tr>
75
+ <th style="vertical-align: top;"></th>
76
+ <th style="vertical-align: top;"><strong>Free Orgs</strong></th>
77
+ <th style="vertical-align: top;"><strong>Enterprise Hub</strong></th>
78
+ <th style="vertical-align: top;"><strong>Enterprise Plus</strong></th>
79
  </tr>
80
  </thead>
81
  <tbody>
82
+ <tr style="background-color: #FFEBEE;"> <!-- Light pastel red -->
83
+ <td style="vertical-align: top;"><strong><a href="#advanced_collaboration">Collaboration</a></strong></td>
84
+ <td style="vertical-align: top;">DIY Admin</td>
85
+ <td style="vertical-align: top;">Resource Groups<br/>
86
  Private Datasets Viewer<br/>
87
  Download Analytics<br/>
88
  Extended Private Storage</td>
89
+ <td style="vertical-align: top;">Resource Groups<br/>
90
  Private Datasets Viewer<br/>
91
  Download Analytics<br/>
92
  Extended Private Storage</td>
93
  </tr>
94
+ <tr style="background-color: #FFF3E0;"> <!-- Light pastel orange -->
95
+ <td style="vertical-align: top;"><strong><a href="#advanced_compute">Compute</a></strong></td>
96
+ <td style="vertical-align: top;"></td>
97
+ <td style="vertical-align: top;">Inference Providers<br/>
98
  Inference Endpoints GPU Quotas<br/>
99
+ Spaces ZeroGPU<br/>
100
+ Spaces Dev Mode</td>
101
+ <td style="vertical-align: top;">Inference Providers<br/>
102
  Inference Endpoints GPU Quotas<br/>
103
+ Spaces ZeroGPU<br/>
104
+ Spaces Dev Mode</td>
105
  </tr>
106
+ <tr style="background-color: #FFFDE7;"> <!-- Light pastel yellow -->
107
+ <td style="vertical-align: top;"><strong><a href="#advanced_security">Security</a></strong></td>
108
+ <td style="vertical-align: top;"></td>
109
+ <td style="vertical-align: top;">Standard SSO<br/>
110
  2 Factor Authentification<br/>
111
  Access Token Management</td>
112
+ <td style="vertical-align: top;"><strong>Advanced SSO</strong><br/>
113
  2 Factor Authentification<br/>
114
  Access Token Management</td>
115
  </tr>
116
+ <tr style="background-color: #E8F5E9;"> <!-- Light pastel green -->
117
+ <td style="vertical-align: top;"><strong><a href="#advanced_governance_and_compliance">Governance</a></strong></td>
118
+ <td style="vertical-align: top;"></td>
119
+ <td style="vertical-align: top;">Audit Logs</td>
120
+ <td style="vertical-align: top;">Audit Logs<br/>
121
  <strong>HF Model Gateway (preview)</strong></td>
122
  </tr>
123
+ <tr style="background-color: #E3F2FD;"> <!-- Light pastel blue -->
124
+ <td style="vertical-align: top;"><strong><a href="#advanced_governance_and_compliance">Compliance</a></strong></td>
125
+ <td style="vertical-align: top;"></td>
126
+ <td style="vertical-align: top;">Storage Regions</td>
127
+ <td style="vertical-align: top;">Storage Regions</br/>
128
  <strong>Network Security</strong></td>
129
  </tr>
130
+ <tr style="background-color: #F3E5F5;"> <!-- Light pastel purple -->
131
+ <td style="vertical-align: top;"><strong><a href="#advanced_support">Support</a></strong></td>
132
+ <td style="vertical-align: top;">Forum</td>
133
+ <td style="vertical-align: top;">Email </td>
134
+ <td style="vertical-align: top;"><strong>Slack</strong></td>
135
  </tr>
136
  </tbody>
137
  </table>
 
143
 
144
  <h2>Why upgrade to an Enterprise organization</h2>
145
 
146
+ <h3 style="background-color: #FFEBEE;">Advanced Collaboration</h3>
147
 
148
  <p>Enterprise Hub and Enterprise Plus organizations allow their members to privately host and share unlimited models, datasets and Spaces repositories. Members of Enterprise organizations benefit from <strong>higher rate limits</strong> accessing all Hugging Face services from the Hub and the Hugging Face open source libraries.</p>
149
 
 
160
  <aside>Learn more about <a href="https://huggingface.co/docs/hub/en/enterprise-hub-analytics">Download Analytics</a>.<br/><br/>
161
  Learn more about <a href="https://huggingface.co/docs/hub/en/enterprise-hub-gating-group-collections">Gating Group Collections</a>.</aside>
162
 
163
+ <h3 style="background-color: #FFF3E0;">Advanced Compute</h3>
164
 
165
  <p>When upgrading their organization to Enterprise, companies provide their employees with powerful compute options to build and host AI applications.</p>
166
 
 
179
  </ul>
180
  </p>
181
 
182
+ <h3 style="background-color: #FFFDE7;">Advanced Security</h3>
183
 
184
  <p>Free organizations are designed for minimum friction adding collaborators, students, professionals to foster transparent collaboration. For companies that require security processes, Enterprise organizations offer many features to enforce security rules and make sure appropriate access controls and rules are in place.</p>
185
 
 
209
  </ul>
210
  </p>
211
 
212
+ <h3 style="background-color: #E8F5E9;">Advanced Governance and Compliance</h3>
213
 
214
  <p>Enterprises need traceability and auditability of their confidential information. Enterprise organization admins on Hugging Face have access to <strong>Audit Logs</strong> to inspect and retrieve all changes made to their organization, such as new users, access tokens or repositories, changes to resource groups, access controls and more. Each log entry includes information about the user, their location, the action, change and time. Lots can be easily downloaded as JSON files for analysis.</p>
215
  <aside>Learn more about <a href="https://huggingface.co/docs/hub/audit-logs">Audit Logs</a>.</aside>
 
235
  </ul>
236
  <p>Model Gateway is a new feature currently in preview for select Enterprise Plus organizations.</p>
237
 
238
+ <h3 style="background-color: #F3E5F5;">Advanced Support</h3>
239
 
240
  <p>Enterprise Hub organization members enjoy priority support covering their usage of Hugging Face via email requests.</p>
241
  <p>Enterprise Plus organization members enjoy direct expert support from the Hugging Face team via a dedicated, private Slack channel hosted by Hugging Face.</p>
 
254
  <p>Enterprise organizations can purchase <strong>Compute Credits</strong> toward usage of premium features by their members, such as Inference Providers, Inference Endpoints and Spaces premium hardware. Compute Credits can be purchased upon request via an Order Form, are applied to the organization upon payment, and are valid for one year. Compute Credits purchases of $200k or higher qualify for volume discounts.</p>
255
  <aside>See <a href="https://huggingface.co/pricing">pricing</a> for Hub premium usage-based features</aside>
256
 
257
+ <p>To contact the Hugging Face sales team, please email <a href=mailto:enterprise-contract@huggingface.co>enterprise-contract@huggingface.co</a></p>
258
 
259
  <h3>Contracting</h3>
260
 
 
269
  Enterprise Hub features can be tested for as little as $20 with a credit card, and we do not offer free trials.</p>
270
 
271
  <p><strong><i>How do I follow my internal new vendor onboarding processes?</i></strong><br/>
272
+ Any vendor, security or legal review process requires to purchase Enterprise Hub or Enterprise Plus via a contract. Our team will be happy to follow your new vendor onboarding process requirements at <a href=mailto:enterprise-contract@huggingface.co>enterprise-contract@huggingface.co</a></p>
273
 
274
  <p><strong><i>How do I set up a security review of Hugging Face prior to purchase?</i></strong><br/>
275
+ Security reviews are only possible when purchasing Enterprise Hub or Enterprise Plus via a contract. Please contact our team at <a href=mailto:enterprise-contract@huggingface.co>enterprise-contract@huggingface.co</a>, upon signing a unilateral NDA, Hugging Face will share our SOC2 Type2 report detailing all the information required in security reviews. Our security team can accommodate custom security questionnaires for contract values above $120k.</p>
276
 
277
  <p><strong><i>Can the standard contract terms be modified after my legal team reviews them?</i></strong><br/>
278
  We only allow legal review for contract values above $120k, the Hugging Face legal team can review change requests to be added to the Order Form, which includes all contract legal terms. </p>