Skip to content

Commit

Permalink
Add project cells for AI projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel-B-Tufvesson committed Jan 13, 2024
1 parent 3dbb021 commit 67dc9bb
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 15 deletions.
Binary file added POS Perceptron.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added embeddings.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 18 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -127,29 +127,35 @@ <h2>GAME PROJECTS</h2>

<!-- AI projects table. -->
<div class="project-table">
<h2>AI PROJECTS</h2>
<h2>AI & NLP PROJECTS</h2>
<div class="project-table-content">

<!-- Project 1 -->
<project-cell heading="Bonebreaker" image="unearthed-cell.jpeg" tags="JavaScript HTML CSS Web">
<!-- Project 1: Perceptron POS-tagger -->
<project-cell heading="Perceptron POS Tagger" image="POS Perceptron.png"
url="https://github.com/Daniel-B-Tufvesson/perceptron-pos-tagger"
tags="Python Perceptron NLP Part-of-speech">
<p>
A variant of the classic Breakout game.
A reimplentation of a multi-class perceptron for part-of-speech
tagging words in Swedish sentences.
</p>
</project-cell>

<!-- Project 2 -->
<project-cell heading="Bonebreaker" image="unearthed-cell.jpeg" tags="JavaScript HTML CSS Web">
<!-- Project 2: LSA Coh-Metrix SBERT -->
<project-cell heading="LSA Coh-Metrix with SBERT" image="embeddings.png"
url="https://github.com/Daniel-B-Tufvesson/lsa-coh-metrix"
tags="Python BERT NLP Embeddings">
<p>
A variant of the classic Breakout game.
Latent Semantic Analysis using a Swedish Sentence-BERT
model.
</p>
</project-cell>

<!-- Project 3 -->
<project-cell heading="Bonebreaker" image="unearthed-cell.jpeg" tags="JavaScript HTML CSS Web">
<p>
A variant of the classic Breakout game.
This was part of a larger research project for a course
in applied cognitive science.
</p>
</project-cell>

<!-- A hidden project cell to fill empty space. -->
<div class="project-cell hidden"></div>
</div>
</div>

Expand Down
4 changes: 4 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ li {
padding-bottom: 6px;
}

.hidden {
visibility: hidden;
}

header > a, project-cell > a {
color: inherit; /* blue colors for links too */
text-decoration: inherit; /* no underline */
Expand Down
3 changes: 0 additions & 3 deletions volume-space-program/rsp-style.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,4 @@
gap: 20px;
}

.game-info > h2 {

}

0 comments on commit 67dc9bb

Please sign in to comment.