Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -35,8 +35,8 @@ client_side = Category(
|
|
35 |
category_id="client_side",
|
36 |
title="Client Side Libraries π€",
|
37 |
description="""
|
38 |
-
These are client side libraries to easily interact or run training with models, datasets and Spaces on Hugging Face Hub
|
39 |
-
<br
|
40 |
""",
|
41 |
news=[
|
42 |
News(
|
@@ -57,8 +57,8 @@ documentation = Category(
|
|
57 |
category_id="documentation",
|
58 |
title="Documentation π",
|
59 |
description="""
|
60 |
-
These are our documentation efforts and blogs specifically targeted for software developers to get them started with building machine learning π¦Ύ
|
61 |
-
<br
|
62 |
""",
|
63 |
news=[
|
64 |
News(
|
@@ -91,8 +91,8 @@ use_cases = Category(
|
|
91 |
category_id="use_cases",
|
92 |
title="Use Cases",
|
93 |
description="""
|
94 |
-
These are resources compiled to demonstrate various use cases across different niches in software development.
|
95 |
-
<br
|
96 |
""",
|
97 |
news=[
|
98 |
News(
|
@@ -117,8 +117,8 @@ cloud = Category(
|
|
117 |
category_id="cloud",
|
118 |
title="βοΈ Cloud Deployment",
|
119 |
description="""
|
120 |
-
This category includes resources on how to deploy machine learning models to cloud using various providers βοΈ
|
121 |
-
<br
|
122 |
""",
|
123 |
news=[
|
124 |
News(
|
@@ -167,7 +167,7 @@ def space_card(space):
|
|
167 |
def category_tab(category):
|
168 |
with gr.Tab(label=category.title, elem_id="news-tab"):
|
169 |
with gr.Column():
|
170 |
-
gr.Markdown(
|
171 |
with gr.Column():
|
172 |
[news_card(x) for x in category.news]
|
173 |
# with gr.Tab(label="Hugging Face Projects"):
|
|
|
35 |
category_id="client_side",
|
36 |
title="Client Side Libraries π€",
|
37 |
description="""
|
38 |
+
## These are client side libraries to easily interact or run training with models, datasets and Spaces on Hugging Face Hub
|
39 |
+
<br>
|
40 |
""",
|
41 |
news=[
|
42 |
News(
|
|
|
57 |
category_id="documentation",
|
58 |
title="Documentation π",
|
59 |
description="""
|
60 |
+
## These are our documentation efforts and blogs specifically targeted for software developers to get them started with building machine learning π¦Ύ
|
61 |
+
<br>
|
62 |
""",
|
63 |
news=[
|
64 |
News(
|
|
|
91 |
category_id="use_cases",
|
92 |
title="Use Cases",
|
93 |
description="""
|
94 |
+
## These are resources compiled to demonstrate various use cases across different niches in software development.
|
95 |
+
<br>
|
96 |
""",
|
97 |
news=[
|
98 |
News(
|
|
|
117 |
category_id="cloud",
|
118 |
title="βοΈ Cloud Deployment",
|
119 |
description="""
|
120 |
+
## This category includes resources on how to deploy machine learning models to cloud using various providers βοΈ
|
121 |
+
<br>
|
122 |
""",
|
123 |
news=[
|
124 |
News(
|
|
|
167 |
def category_tab(category):
|
168 |
with gr.Tab(label=category.title, elem_id="news-tab"):
|
169 |
with gr.Column():
|
170 |
+
gr.Markdown(category.description, elem_id="margin-top")
|
171 |
with gr.Column():
|
172 |
[news_card(x) for x in category.news]
|
173 |
# with gr.Tab(label="Hugging Face Projects"):
|