openfree commited on
Commit
2d4a3da
โ€ข
1 Parent(s): ba159ad

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -3
app.py CHANGED
@@ -166,6 +166,8 @@ def get_card(item: dict, index: int, card_type: str = "space") -> str:
166
  type_icon = "๐Ÿ“Š"
167
  type_label = "DATASET"
168
 
 
 
169
  # ํ•˜๋“œ์›จ์–ด ์ •๋ณด HTML
170
  hardware_info = f"""
171
  <div style='
@@ -179,13 +181,15 @@ def get_card(item: dict, index: int, card_type: str = "space") -> str:
179
  grid-template-columns: repeat(3, 1fr);
180
  gap: 10px;'>
181
  <div style='color: #444;'>
182
- <span style='margin-right: 5px;'>๐Ÿ’ป</span> {cpu_info}
 
183
  </div>
184
  <div style='color: #444;'>
185
- <span style='margin-right: 5px;'>๐ŸŽฎ</span> {gpu_info}
 
186
  </div>
187
  <div style='color: #444;'>
188
- <span style='margin-right: 5px;'>๐Ÿ› ๏ธ</span> {sdk}
189
  </div>
190
  </div>
191
  </div>
 
166
  type_icon = "๐Ÿ“Š"
167
  type_label = "DATASET"
168
 
169
+
170
+
171
  # ํ•˜๋“œ์›จ์–ด ์ •๋ณด HTML
172
  hardware_info = f"""
173
  <div style='
 
181
  grid-template-columns: repeat(3, 1fr);
182
  gap: 10px;'>
183
  <div style='color: #444;'>
184
+ <span style='margin-right: 5px;'>๐Ÿ’ป</span> CPU: {cpu_info}
185
+
186
  </div>
187
  <div style='color: #444;'>
188
+ <span style='margin-right: 5px;'>๐ŸŽฎ</span> GPU: {gpu_info}
189
+
190
  </div>
191
  <div style='color: #444;'>
192
+ <span style='margin-right: 5px;'>๐Ÿ› ๏ธ</span> SDK: {sdk}
193
  </div>
194
  </div>
195
  </div>