Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ML-290] Add logger to improve messages output #297

Closed
wants to merge 48 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
e72fe9f
First commit
argentea May 26, 2023
1531964
Logger tmp
argentea Jun 5, 2023
8aede57
ALS done
argentea Jun 24, 2023
8d9e900
Correlation tmp
argentea Jun 26, 2023
8f6c6a4
Add table output
argentea Jul 3, 2023
b382d2b
Use looger function to print table
argentea Jul 4, 2023
f132289
Correlation done
argentea Jul 4, 2023
a72496e
Add println
argentea Jul 4, 2023
7fd2032
Fix typo
argentea Jul 4, 2023
b4d64e8
HomogenTable done
argentea Jul 4, 2023
97ae54a
Summarizer done
argentea Jul 4, 2023
3f30bd5
Kmeans done
argentea Jul 4, 2023
ae47e71
KMeans done
argentea Jul 4, 2023
78fe30f
error_handling done
argentea Jul 4, 2023
a39911e
DFR and NB
argentea Jul 4, 2023
f84cfdf
GPU done
argentea Jul 5, 2023
a424d7d
LR done
argentea Jul 5, 2023
badf354
PCA and DF classifier done
argentea Jul 5, 2023
4ac5e55
table
argentea Jul 5, 2023
2c7afcf
Format cpp
argentea Jul 5, 2023
8076a48
All done
argentea Jul 7, 2023
2934766
Format
argentea Jul 7, 2023
696db11
Replace print()
argentea Jul 20, 2023
d270f98
Move print(table to service
argentea Jul 20, 2023
a0b88d8
Format
argentea Jul 21, 2023
540680d
Change pringf
argentea Jul 21, 2023
da72f39
Remove spaces
argentea Aug 10, 2023
9c5fa2b
Make all error print in stderr
argentea Aug 10, 2023
f3c909d
Add switch
argentea Aug 10, 2023
14bc53d
Code style
argentea Aug 10, 2023
5dca00b
Recover
argentea Aug 10, 2023
96c05e9
Add environment control
argentea Aug 10, 2023
1684abe
Format
argentea Aug 10, 2023
73ce1a5
Clean up
argentea Aug 10, 2023
ea983b9
Fix other printf, fix new line bug
argentea Aug 10, 2023
8bac817
Format
argentea Aug 10, 2023
e900874
Recover pom
argentea Aug 10, 2023
c215128
Update run-gpu.sh
xwu99 Aug 11, 2023
af87e65
Add level
argentea Aug 11, 2023
139c0d6
Format
argentea Aug 11, 2023
9a4ac84
Remove variable
argentea Aug 11, 2023
3c736b1
Fix typo
argentea Aug 16, 2023
435503e
Add flush
argentea Aug 17, 2023
ff1b955
Fix device call host function
argentea Aug 23, 2023
fa3cda7
Format
argentea Aug 23, 2023
f832381
OneDAL rename
argentea Aug 30, 2023
b8d30fd
fix typo
argentea Aug 31, 2023
cc4fd70
Fix typo
argentea Aug 31, 2023
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
Prev Previous commit
Next Next commit
fix typo
argentea committed Aug 31, 2023
commit b8d30fdcd006f9aed2a43374a9e26dee2c8c079b
2 changes: 1 addition & 1 deletion mllib-dal/src/main/native/Logger.cpp
Original file line number Diff line number Diff line change
@@ -131,7 +131,7 @@ int println(MessageType message_type, const char *format, ...) {
}

int printerr(MessageType message_type, const std::string &msg) {
int ret = print2stream(message_type, stdout, msg.c_str());
int ret = print2stream(message_type, stderr, msg.c_str());
return ret;
}