IRC logs of #shogun for Tuesday, 2019-02-05

--- Log opened Tue Feb 05 00:00:57 2019
-!- feriglegarc [50fe9643@gateway/web/freenode/ip.80.254.150.67] has joined #shogun09:35
-!- gf712 [905208f7@gateway/web/freenode/ip.144.82.8.247] has joined #shogun09:37
-!- feriglegarc [50fe9643@gateway/web/freenode/ip.80.254.150.67] has quit [Ping timeout: 256 seconds]10:36
-!- shubham808 [~atom@14.139.240.247] has joined #shogun12:50
-!- Lefteris [~lefteris@2a05:b400:100:100:e966:c6b5:2179:5cee] has joined #shogun12:53
-!- gf712 [905208f7@gateway/web/freenode/ip.144.82.8.247] has quit [Ping timeout: 256 seconds]13:05
-shogun-buildbot:#shogun- Build deb1 - libshogun #565 is complete: Success [build successful] - http://buildbot.shogun-toolbox.org:8080/#builders/10/builds/56514:12
-!- Lefteris [~lefteris@2a05:b400:100:100:e966:c6b5:2179:5cee] has quit [Quit: Leaving]14:17
-!- heytitle [~heytitle@ip5b4171a6.dynamic.kabel-deutschland.de] has joined #shogun14:24
heytitlehi, I have a question related to running shogun's webpages locally.14:52
-!- gf712 [560fc4e5@gateway/web/freenode/ip.86.15.196.229] has joined #shogun14:52
heytitleat the moment, I can generate api and cookbook but not regular pages, i.e. mission or install pages.14:53
-!- test [5aae0450@gateway/web/freenode/ip.90.174.4.80] has joined #shogun15:08
-!- HeikoS [5aae0450@gateway/web/cgi-irc/kiwiirc.com/ip.90.174.4.80] has joined #shogun15:08
-!- mode/#shogun [+o HeikoS] by ChanServ15:09
-!- test is now known as Guest8541215:09
@HeikoSgf712 yo15:09
-!- Guest85412 [5aae0450@gateway/web/freenode/ip.90.174.4.80] has quit [Client Quit]15:10
gf712HeikoS hey!15:17
@HeikoSgf712 how are things?15:20
gf712yea they're fine. What about you?15:21
gf712just got your email15:21
gf712I'll read the application now :)15:22
gf712also sent a PR to avoid the weird get behaviour I told you about last week15:22
gf712I found out what was causing the issue, but I don't think there is much we can do about it right now15:23
-!- Lefteris [~lefteris@2a05:b400:100:100:e966:c6b5:2179:5cee] has joined #shogun15:27
@HeikoSgf712 so what caused the error in a nutshel?15:37
wuwei[m]HeikoS: hey15:37
@HeikoSwuwei[m] yo15:40
@HeikoScheck email :)15:40
wuwei[m]yes I got it15:40
gf712HeikoS it comes down to printing the errors15:40
wuwei[m]what is shogun-publicity?15:40
@HeikoSI see15:41
@HeikoSwuwei[m] there is another mail15:41
gf712what is weird is that the errors go to the stdout so I am not sure why python detects there is an error15:41
gf712I would understand if they went to stderr15:41
@HeikoSwuwei[m] it is a github repo where we keep documents such as the applcation. If you have edits you wanna make, I can add you as a contributor15:41
@HeikoSgf712 mystery15:41
gf712yup...15:41
gf712but should probably overhaul the exception system at some point15:42
wuwei[m]HeikoS: another email?15:42
gf712mostly as we move to c++17/2015:42
@HeikoSwuwei[m] yes, to the mailing list15:42
@HeikoSare you subscribed to the mailing list? :D15:42
@HeikoSif not, time to do that now :)15:42
wuwei[m]shogun-list ?15:43
wuwei[m]yes but I don't get the email15:43
@HeikoSmmh15:43
@HeikoSlet me check15:43
@HeikoSok, nevermind :)  you will get it at some point15:44
@HeikoSwuwei[m] so what do we do with get_variance_vector?15:44
@HeikoSI see multiple options, but I am not sure what the best one is15:44
wuwei[m]there will be more cases like this one :)15:45
@HeikoSyes15:49
@HeikoSso we better come up with a general solution15:49
@HeikoSso one way might be to say15:49
@HeikoSGPs are Bayesian algorithms15:49
@HeikoSso they return predictions with confidences15:49
@HeikoSi.e. a different type of Labels15:50
@HeikoSBayesianRegressionLabels15:50
@HeikoSwhich have both the predictive mean and the predictive variance15:50
@HeikoSand then the user can do15:50
@HeikoSlabels.get("confidences")15:50
@HeikoSbut actually15:50
@HeikoSRegressionLabels already have this type of mechanism15:50
@HeikoS"score" or something15:50
@HeikoSso what I would do is to15:51
@HeikoS1. have a boolean flag whether or not to compute confidences when calling "apply"15:51
@HeikoS2. if true, use the "scores" field in RegressionLabels to store the confidences, computed for the features that were passed to "apply"15:51
@HeikoS3. examples then just do labels.get("labels") for mean, and labels.get("scores") for the confidences15:52
wuwei[m]yes this should work15:53
wuwei[m]for the other cases (those not gp), we still need new solution for them15:55
wuwei[m]because they have methods other than train/apply that need to exposed15:55
@HeikoSyes15:57
@HeikoSlet's discuss those when they appear15:57
@HeikoSas I think many things can be solved properly, using a nice API that exists already, such as the labels with their scores15:58
wuwei[m]sure15:58
wuwei[m]btw how's ws15:59
@HeikoSyes that is top of my list15:59
LefterisI have to subscribe to the mail list :P16:01
@HeikoSLefteris yeah do it :)16:16
LefterisI sent and email. It is automatic or someone has to approve it?16:19
@HeikoSautomatic iirc16:21
@HeikoSLefteris try posting something ... and you should get a response when subscribing imo16:22
@HeikoSwuwei[m] Lefteris oh and check spam folder, sometimes old school mailing lists get marked as spam16:22
@HeikoSgf712 Lefteris gf712 just sent another email re the workshop.... :(16:24
Lefterisyeah I read it :(16:24
wuwei[m]HeikoS: neither in the spam folder16:25
@HeikoSwuwei[m] ^16:25
@HeikoSwuwei[m] ok I will check with the mail list admin16:25
LefterisOk, I got subscribed. It seems that my mail client mailspring just ignores the spam folder. I had to login to gmail web to check it16:28
-!- HeikoS [5aae0450@gateway/web/cgi-irc/kiwiirc.com/ip.90.174.4.80] has quit [Ping timeout: 240 seconds]16:32
-!- gf712 [560fc4e5@gateway/web/freenode/ip.86.15.196.229] has quit [Ping timeout: 256 seconds]16:52
-!- besser82 [~besser82@fedora/besser82] has quit [Quit: Freedom, Friends, Features, First [fedoraproject.org]]17:05
-!- besser82 [~besser82@fedora/besser82] has joined #shogun17:06
-!- mode/#shogun [+o besser82] by ChanServ17:06
-!- besser82 [~besser82@fedora/besser82] has quit [Read error: Connection reset by peer]17:49
-!- besser82 [~besser82@fedora/besser82] has joined #shogun17:50
-!- mode/#shogun [+o besser82] by ChanServ17:50
-!- HeikoS [5284e5ac@gateway/web/cgi-irc/kiwiirc.com/ip.82.132.229.172] has joined #shogun18:06
HeikoSLefteris that is annoying18:06
-!- HeikoS [5284e5ac@gateway/web/cgi-irc/kiwiirc.com/ip.82.132.229.172] has quit [Remote host closed the connection]18:34
-!- HeikoS [5284e5ac@gateway/web/cgi-irc/kiwiirc.com/ip.82.132.229.172] has joined #shogun19:16
-!- heytitle [~heytitle@ip5b4171a6.dynamic.kabel-deutschland.de] has quit [Remote host closed the connection]19:22
-!- glitch [0e8bd103@gateway/web/freenode/ip.14.139.209.3] has joined #shogun19:26
glitchhi ! its glitch again19:26
glitchits been 1 day almost ,me trying to successsfully run 'cmake ..'19:26
glitchbut the following dependencies are still not solved19:27
-!- glitch [0e8bd103@gateway/web/freenode/ip.14.139.209.3] has quit [Ping timeout: 256 seconds]19:36
-!- glitch [0e8bd103@gateway/web/freenode/ip.14.139.209.3] has joined #shogun19:41
glitchis there a direct solution to resolve the depencencies ?19:42
glitchcant even get ways to install19:42
glitchTFLogger19:42
-!- heytitle [~heytitle@ip5b4171a6.dynamic.kabel-deutschland.de] has joined #shogun19:57
-!- div [9d288ac9@gateway/web/freenode/ip.157.40.138.201] has joined #shogun19:59
-!- div [9d288ac9@gateway/web/freenode/ip.157.40.138.201] has quit [Client Quit]19:59
-!- heytitle [~heytitle@ip5b4171a6.dynamic.kabel-deutschland.de] has quit [Remote host closed the connection]20:03
-!- heytitle [~heytitle@ip5b4171a6.dynamic.kabel-deutschland.de] has joined #shogun20:03
-!- heytitle [~heytitle@ip5b4171a6.dynamic.kabel-deutschland.de] has quit [Client Quit]20:03
HeikoSglitch hi20:18
glitchhi , i guess i need some sleep , i was ignoring the slightest things ,20:19
glitch:( sorry for the mess i have caused !20:19
HeikoSno worries glitch20:19
HeikoSjust in general, make sure to check the readmes and read a bit on the tools that are used to build shogun, they are all standard developer c++ tools20:20
HeikoSmost answers will be in there20:20
HeikoSwe have put a lot of effort into writing the readmes20:20
HeikoSgood luck!20:20
-!- HeikoS [5284e5ac@gateway/web/cgi-irc/kiwiirc.com/ip.82.132.229.172] has quit [Remote host closed the connection]20:20
glitchbelive me i really liked the readme of this repo especially, like how it clearley explain the different approaches to getting statted with the setup20:22
glitchsorry :(20:22
glitchwont happen next time20:22
-!- glitch is now known as glitch40420:40
-!- glitch404 [0e8bd103@gateway/web/freenode/ip.14.139.209.3] has quit [Ping timeout: 256 seconds]20:50
-!- shubham808 [~atom@14.139.240.247] has quit [Quit: Leaving.]21:36
--- Log closed Wed Feb 06 00:00:59 2019

Generated by irclog2html.py 2.10.0 by Marius Gedminas - find it at mg.pov.lt!