Skip to content
This repository was archived by the owner on Aug 5, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion samples/credit_card_fraud/credit_card_fraud.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,7 @@ int main(int argc,char** argv){
nn=numBatches;
for(int i=0; i<nn; ++i){

cout << endl << "*** Performing inference on batch " << i+1 << "/" << numBatches << " ***" << endl;
cout << endl << "*** Performing inference on batch " << i+1 << "/" << nn << " ***" << endl;
HELIB_NTIMER_START(time_for_single_batch);
// define names of files to be used to save encrypted batch of samples and their correspondent predictions
const string encryptedSamplesFile = outDir + "/encrypted_batch_samples_" + to_string(i) + ".bin";
Expand Down