Skip to content

Commit

Permalink
Update nn.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dsman1823 authored Apr 10, 2024
1 parent 85bbedc commit 207ab70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepdowmine/nn.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def forward(self, x):
)
x_cov = x_cov.reshape(n_samples, 20, 5)

covmat = self.covariance_layer(x_cov, shrinkage_strategy="diagonal")
covmat = self.covariance_layer(x_cov)

exp_rets = torch.tanh(
self.linear(x_exp_rets)
Expand Down

0 comments on commit 207ab70

Please sign in to comment.