Skip to content

Commit

Permalink
faces: add todo in readme to talk about projection plots
Browse files Browse the repository at this point in the history
  • Loading branch information
rcoreilly committed Aug 23, 2024
1 parent 0fb4595 commit 3be03b7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ch3/faces/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,8 @@ At a technical level, the ability of the network to fill in the missing parts of

Also, you might be surprised to know that most of the neural networks currently powering modern AI applications do *not* have this bidirectional connectivity, and thus lack the corresponding flexibilty of human knowledge and memory.

# Weights as a Projection operation

TODO:


1 change: 1 addition & 0 deletions ch3/faces/faces.go
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,7 @@ func (ss *Sim) ProjectionPlot() {
plt.Options.Points = true
// order of params: on, fixMin, min, fixMax, max
plt.SetColumnOptions("TrialName", plotcore.On, plotcore.FloatMin, 0, plotcore.FloatMax, 0)
plt.SetColumnOptions("GendPrjn", plotcore.Off, plotcore.FixMin, -1, plotcore.FixMax, 1)
plt.SetColumnOptions("RndPrjn0", plotcore.Off, plotcore.FixMin, -1, plotcore.FixMax, 1)
plt.SetColumnOptions("RndPrjn1", plotcore.On, plotcore.FixMin, -1, plotcore.FixMax, 1)

Expand Down

0 comments on commit 3be03b7

Please sign in to comment.