This commit is contained in:
Mike J Innes 2017-02-01 20:10:09 +05:30
parent a1e35ea2c8
commit 07433c13bd
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ type TLP
end
function (self::TLP)(x)
l1 = σ(self.first)
l1 = σ(self.first(x))
l2 = softmax(self.second(l1))
end
```