CoolFace
Apppublic

awacke1/SpacesoftheWeekReview

sourceHugging Faceapache-2.0updated 3y agoView on Hugging Face
2likes
notes.html75 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en">3<head>4  <meta charset="UTF-8">5  <meta name="viewport" content="width=device-width, initial-scale=1.0">6  <title>ASOTW : All Spaces Of The Week</title>7  <link rel="stylesheet" href="styles.css">8  <link rel="preconnect" href="https://fonts.googleapis.com">9  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>10  <link href="https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">11  <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">12</head>13<body>14  <!--<div class="hflogo">15      <a href="https://www.huggingface.co" target="_blank" rel="noopener"><img alt="Hugging Face logo" height="40" src="img/logo_hf.png"></a>16  </div>--> 17 18  <header>19    <h1><img width="150" height="150" src="img/logo_asotw.png" alt="X logo"></h1>20    <h1>All Spaces Of The Week</h1>21    <p>Explore the history of Hugging Face featured ML demos: <a href="https://huggingface.co/spaces" target="_blank" rel="noopener"> <u>Spaces Of The Week</u></a></p>22  </header>23  <main>24    <div class="tabs">25      <a href="index.html" class="tab-link">26        <label class="tab-label">27          <img width="14" height="14" src="img/ico_year.png" alt="2021 spaces"> 202128        </label>29      </a>30      <a href="2022.html" class="tab-link">31        <label class="tab-label">32          <img width="14" height="14" src="img/ico_year.png" alt="2022 spaces"> 202233        </label>34      </a>35      <a href="2023.html" class="tab-link">36        <label class="tab-label">37          <img width="14" height="14" src="img/ico_year.png" alt="2023 spaces"> 202338        </label>39      </a>40      <a href="2024.html" class="tab-link">41        <label class="tab-label">42          <img width="14" height="14" src="img/ico_year.png" alt="2024 spaces"> 202443        </label>44      </a>45      <a href="authors.html" class="tab-link">46        <label class="tab-label">47          <img width="14" height="14" src="img/ico_leaderboard.png" alt="leaderboard"> Authors48        </label>49      </a>50      <a href="notes.html" class="tab-link">51        <label class="tab-label">52          <img width="14" height="14" src="img/ico_notes.png" alt="notes"> Notes53        </label>54      </a>55    </div>56    57 58    <button onclick="topFunction()" id="myBtn" title="Go to top"><img width="14" height="14" src="img/ico_top.png" alt="Back to top"> Top</button>    59 60 61    <section class="tab-content-active">      62    </section>63 64    <section class="notes">65      <h2>Notes</h2>66      67      ⏳ <span class="last-updated"></span>. Like counts, states, titles and background colors may not be current.<br>68      🎯 Data sourced from <a class="small-link" href="https://huggingface.co/spaces" target=”_blank” rel="noopener"><u>https://huggingface.co/spaces</u></a> via a scraping of <a class="small-link" href="https://web.archive.org/web/20211021140400/https://huggingface.co/spaces" target=”_blank” rel="noopener"><u>https://web.archive.org</u></a>.<br>69      🏗️ Suggestions are welcome :) Feel free to ❤️ this Space and find me on <a class="small-link" href="https://huggingface.co/mvaloatto" target=”_blank” rel="noopener"><u><img width="14" height="14" src="img/ico_hf.png" alt="HuggingFace logo">mvaloatto</u></a> or <a class="small-link" href="https://x.com/mvaloatto" target=”_blank” rel="noopener"><u><img width="14" height="14" src="img/ico_x.png" alt="X logo">mvaloatto</u></a>70      71    </section>72  </main>73  <script src="scripts.js"></script>74</body>75</html>