Skip to content

Commit

Permalink
added related work table to webpage
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekhao committed Apr 23, 2024
1 parent 72ebf7c commit 24ac04a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
9 changes: 6 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ <h1>Wake Vision</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#access">Access the Dataset</a></li>
<li><a href="#about">About the Dataset</a></li>
<li><a href="#access">Access</a></li>
<li><a href="#about">About</a></li>
<li><a href="#sponsors">Sponsors</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
Expand Down Expand Up @@ -43,7 +43,10 @@ <h2>About</h2>
conditions, and depictions. Hosted on Harvard Dataverse, it provides images, CSV files, and code to generate
a Wake Vision TensorFlow Dataset. Annotations are published under a CC BY 4.0 license, and all images are
sourced from the Open Images v7 dataset under a CC BY 2.0 license.</p>
<!-- Example image to visually represent the dataset -->
<section id="featured-image">
<img src="related_work_table.png"
alt="Table summarizing related datasets. Important takeaways are that Wake Vision is larger and includes more features than other datasets meant for tinyML">
</section>
<h3>Examples</h3>
<div class="image-grid">
<div class="image-item">
Expand Down
Binary file added related_work_table.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,15 @@ footer {
margin: 0;
}

#featured-image img {
width: 100%;
/* Makes the image responsive and full width */
height: auto;
/* Maintains the aspect ratio of the image */
display: block;
/* Removes any default margin/padding */
}

@media (max-width: 768px) {
.image-grid {
grid-template-columns: 1fr;
Expand Down

0 comments on commit 24ac04a

Please sign in to comment.