Spaces:
Running
Running
Create Read me
Browse files
Read me
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Organization cards
|
| 2 |
+
|
| 3 |
+
You can create an organization card to help users learn more about what your organization is working on and how users can use your libraries, models, datasets, and Spaces.
|
| 4 |
+
|
| 5 |
+
An organization card is displayed on an organization's profile:
|
| 6 |
+
|
| 7 |
+
If you're a member of an organization, you'll see a button to create or edit your organization card on the organization's main page. Organization cards are a `README.md` static file inside a Space repo named `README`. The card can be as simple as Markdown text, or you can create a more customized appearance with HTML.
|
| 8 |
+
|
| 9 |
+
The Space must be set to **Public** visibility. If it is set to Protected or Private, the organization card will not appear on your organization's profile page.
|
| 10 |
+
|
| 11 |
+
The card for the [Hugging Face Course organization](https://huggingface.co/huggingface-course), shown above, [contains the following HTML](https://huggingface.co/spaces/huggingface-course/README/blob/main/README.md):
|
| 12 |
+
|
| 13 |
+
```html
|
| 14 |
+
<p>
|
| 15 |
+
This is the organization grouping all the models and datasets used in the
|
| 16 |
+
<a href="https://huggingface.co/course/chapter1" class="underline">Hugging Face course</a>.
|
| 17 |
+
</p>
|
| 18 |
+
```
|
| 19 |
+
|
| 20 |
+
For more examples, take a look at:
|
| 21 |
+
|
| 22 |
+
- [Amazon's](https://huggingface.co/spaces/amazon/README/blob/main/README.md) organization card source code
|
| 23 |
+
- [spaCy's](https://huggingface.co/spaces/spacy/README/blob/main/README.md) organization card source code.
|
| 24 |
+
|