Skip to content

Commit

Permalink
updated supervised
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJDen committed Sep 18, 2023
1 parent d472590 commit c324c0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ Demonstrate original approach to interpretable Decrypto Guessing agent
Use word2vec embeddings to create heuristics that make our unsupervised guesser prototype competent

# word2vec supervised guessing
Explore more traditional approach to Guesser using neural nets. May lead to proof that game-ification may inspire attention-based/Transformer architecture.
Explore more traditional approach to Guesser using neural nets. May lead to proof that game-ification may inspire attention-based architecture.

2 changes: 1 addition & 1 deletion word2vec_supervised_guesser.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@
"\n",
"```\n",
"\n",
"This encodes the input as keyword-clue pairs that the classifier may have an easier time learning associations for. The matrix is also relatively small (although we have many channels for embedding features), so it may make sense to opt for a more fully-connected architecture."
"This encodes the input as keyword-clue pairs that the classifier may have an easier time learning associations for, because it implicitly establishes the keywords and clues as orthogonal. If we can build features for each keyword-clue pair, then we can take each row of the matrix above and similarly set them as orthogonal axes in a larger tensor, just like we took the keywords and clues as orthogonal axes to make the matrix. This would allow us to build features representing 2 keyword-clue pairings, and if we repeated this operation one more time we would have features representing 3 keyword-clue pairings, which is exactly what our model should be learning to classify."
]
}
],
Expand Down

0 comments on commit c324c0b

Please sign in to comment.