Skip to content

Commit

Permalink
removed FastLinReg
Browse files Browse the repository at this point in the history
  • Loading branch information
nepslor committed Dec 7, 2023
1 parent fe95359 commit bcbd202
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_nns.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def test_pqicnn(self):
x_tr, x_te, y_tr, y_te = [x.iloc[:n_tr, :].copy(), x.iloc[n_tr:, :].copy(), y.iloc[:n_tr].copy(),
y.iloc[n_tr:].copy()]

savepath_tr_plots = 'tests/results/figs/convexity'
savepath_tr_plots = 'wp3/tests/results/figs/convexity'

# if not there, create directory savepath_tr_plots
if not exists(savepath_tr_plots):
Expand Down Expand Up @@ -175,7 +175,7 @@ def test_pqicnn(self):
plt.figure(layout='tight')
plt.plot(np.tile(x[cc].values.reshape(-1, 1), 96), y_hat.values[:, :96], alpha=0.3)
plt.xlabel(cc)
plt.savefig('wp3/results/figs/convexity/{}.png'.format(cc), dpi=300)
plt.savefig(join(savepath_tr_plots, '{}.png'.format(cc)), dpi=300)

def test_optimization(self):

Expand Down

0 comments on commit bcbd202

Please sign in to comment.