This commit is contained in:
Alejandro Moreo Fernandez 2021-02-16 09:42:39 +01:00
parent 1ff1f17039
commit c8a0b725fc
2 changed files with 5 additions and 3 deletions

View File

@ -135,8 +135,8 @@ def main(opt):
yte_ = cls.predict(Xte)
print('end-to-end-finetuning network prediction')
acc, macrof1, microf1 = evaluation(yte, yte_)
foo.write(
f'end-to-end-finetuning network prediction: acc={acc:.3f} macrof1={macrof1:.3f} microf1={microf1:.3f}\n')
foo.write(f'end-to-end-finetuning network prediction: '
f'acc={acc:.3f} macrof1={macrof1:.3f} microf1={microf1:.3f}\n')
print('training end-to-end without self-supervision init')
cls, phi = instantiate_model(A, index, pad_index, device)
@ -150,6 +150,8 @@ def main(opt):
yte_ = cls.predict(Xte)
print('end-to-end (w/o self-supervised initialization) network prediction')
acc, macrof1, microf1 = evaluation(yte, yte_)
foo.write(f'end-to-end (w/o self-supervised initialization) '
f'network prediction: acc={acc:.3f} macrof1={macrof1:.3f} microf1={microf1:.3f}\n')
svm_experiment(Xtr_svm, ytr, Xte_svm, yte, foo, 'svm-kernel')

View File

@ -133,7 +133,7 @@ class AuthorshipAttributionClassifier(nn.Module):
early_stop = EarlyStop(patience, lower_is_better=True)
criterion = SupConLoss1View().to(self.device)
optim = torch.optim.Adam(self.parameters(), lr=lr)
optim = torch.optim.Adam(self.parameters(), lr=lr) # take only phi's parameters
tr_data = IndexedDataset(X, y, self.pad_length, self.pad_index, self.device)
val_data = IndexedDataset(Xval, yval, self.pad_length, self.pad_index, self.device)