From 3f032ad4f4c665837c518e70c9c26b046ecc867c Mon Sep 17 00:00:00 2001 From: linqiaozhi Date: Sat, 27 Oct 2018 20:24:50 -0400 Subject: [PATCH] include version in the output --- src/tsne.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tsne.cpp b/src/tsne.cpp index 29f4703..e8688fc 100644 --- a/src/tsne.cpp +++ b/src/tsne.cpp @@ -1671,7 +1671,7 @@ void TSNE::save_data(const char *result_path, double* data, double* costs, int n int main(int argc, char *argv[]) { - printf("=============== t-SNE ===============\n"); + printf("=============== t-SNE v1.0.0 ===============\n"); // Define some variables int N, D, no_dims, max_iter, stop_lying_iter;