IRC logs of #shogun for Monday, 2012-11-12

--- Log opened Mon Nov 12 00:00:17 2012
-!- zxtx [~zv@cpe-75-83-151-252.socal.res.rr.com] has quit [Ping timeout: 256 seconds]01:30
-!- ptizoom [~christian@85.210.94.175] has quit [Quit: Ex-Chat]02:15
-!- ptizoom [~christian@85.210.94.175] has joined #shogun02:16
shogun-buildbotbuild #167 of nightly_default is complete: Failure [failed test]  Build details are at http://www.shogun-toolbox.org/buildbot/builders/nightly_default/builds/16703:52
-!- ptizoom [~christian@85.210.94.175] has quit [Quit: Ex-Chat]06:04
-!- ptizoom [~christian@85.210.94.175] has joined #shogun06:05
-!- zxtx [~zv@cpe-76-169-228-195.socal.res.rr.com] has joined #shogun07:17
-!- blackburn [~blackburn@188.168.128.121] has quit [Quit: Leaving.]09:08
-!- blackburn [5bdfb203@gateway/web/freenode/ip.91.223.178.3] has joined #shogun12:27
-!- blackburn [5bdfb203@gateway/web/freenode/ip.91.223.178.3] has quit [Quit: Page closed]15:34
-!- nickp_ [836fb85a@gateway/web/freenode/ip.131.111.184.90] has joined #shogun15:53
nickp_Hello16:00
nickp_Is this the right place to ask dev questions about Shogun?16:00
nickp_I'm trying to add the obtain_from_generic method to the GaussianARDKernel16:05
nickp_I pretty much copies the code from GaussianKernel::obtain_from_generic16:05
nickp_*copied16:05
nickp_Getting this error from python16:06
nickp_Traceback (most recent call last):   File "main.py", line 23, in <module>     from shogun.Features import *   File "/path/local/lib/python2.7/dist-packages/shogun/Features/__init__.py", line 1, in <module>     from modshogun import *   File "/path/local/lib/python2.7/dist-packages/modshogun.py", line 30, in <module>     _modshogun = swig_import_helper()   File "/path/local/lib/python2.7/dist-packages/modshogun.py", line 26, in swig_i16:06
nickp_module('_modshogun', fp, pathname, description) ImportError: /path/local/lib/python2.7/dist-packages/_modshogun.so: undefined symbol: _ZN6shogun18CGaussianARDKernel19obtain_from_genericEPNS_7CKernelE16:07
nickp_Anyone know what is wrong?16:07
-!- audy [~audy@unaffiliated/audy] has joined #shogun18:02
wikingmmmm18:06
wikingnickp_: if u are still here: that's what actually happen... it should typecast the kernel to gaussianARDkernel as in python you cannot do this...18:20
wikingbut what is interesting18:21
nickp_yeah I'm here18:21
wikingah shit18:21
wikingsorry i've mixed up18:21
wikingok18:21
wikinghave you defined K_GAUSSIANARD in Kernel.h?18:21
wikingbut i guess18:22
wikingthere must be some other problem.... if u managed to recompile shogun library with that new code18:22
wikinghave u for sure (110%) overwritten the library with the new .so and .a?18:23
wikingsince if u have this new function in the code18:23
wikingthen it should be able to find it18:23
nickp_Yeah I've defined it: K_GAUSSIANARD = 510,18:23
wikingok18:23
nickp_Yeah I'm pretty sure I've over written it.18:24
wikingu use linux?18:24
nickp_I manually deleted the shogun .so I previously had18:24
nickp_Yeah I'm on ubuntu18:24
wikingok18:24
nickp_I was working with virtualenv for the python environment18:26
nickp_so I'm trying deleting the whole virtualevn directory18:26
nickp_and trying again18:26
nickp_to see if that works18:26
wikingmmm18:26
wikingyou should be able to find the symbol in libshogun.13.so18:27
wiking_ZN6shogun18CGaussianARDKernel19obtain_from_genericEPNS_7CKernelE18:27
wikingbut i just cannot remember atm what is the disasm command in linux18:28
wikingah ok18:30
wikingobjdump -d <the path to your shogun>/libshogun.13.so|grep _ZN6shogun18CGaussianARDKernel19obtain_from_genericEPNS_7CKernelE18:31
wikingthis should have an ouptut ;18:31
wikingoutput18:31
wikingif not then you should try first18:31
wikingobjdump -d src/shogun/libshogun.13.so|grep _ZN6shogun18CGaussianARDKernel19obtain_from_genericEPNS_7CKernelE18:31
wikingthat should have an output for sure18:31
wikingnickp_: let me know what are your ouptuts :D18:33
nickp_ok will try that now18:34
nickp_just wainting for compilation18:34
wikingno worries18:35
nickp_Ouput is:18:48
nickp_$ objdump -d libshogun.so.13.0 |grep _ZN6shogun18CGaussianARDKernel19obtain_from_genericEPNS_7CKernelE 0000000000b28b60 <_ZN6shogun18CGaussianARDKernel19obtain_from_genericEPNS_7CKernelE>:   b28b72:74 29                je     b28b9d <_ZN6shogun18CGaussianARDKernel19obtain_from_genericEPNS_7CKernelE+0x3d>18:48
wikingok18:52
wikingso it's there18:52
wikingmake install18:53
wikingand then try the python code18:53
-!- blackburn1 [~blackburn@188.168.2.38] has joined #shogun19:13
nickp_hmm19:14
nickp_so I tried the same command and get the same output19:14
nickp_but then from a python console19:14
nickp_>>> import shogun >>> from shogun.Kernel import GaussianKernel Traceback (most recent call last):   File "<stdin>", line 1, in <module>   File "/home/nickp/Dropbox/Repos/mkl/mklenv/local/lib/python2.7/dist-packages/shogun/Kernel/__init__.py", line 1, in <module>     from modshogun import *   File "/home/nickp/Dropbox/Repos/mkl/mklenv/local/lib/python2.7/dist-packages/modshogun.py", line 30, in <module>     _modshogun = swig_import_he19:14
nickp_>>> from shogun.Kernel import GaussianARDKernel Segmentation fault19:14
nickp_So gives unresolved import for GaussianARDKernel when importing GaussianKernel19:14
wikinglol19:14
nickp_and then a segfault when importing GaussianARDKernel19:14
blackburn1nickp_: I just read your mail19:15
blackburn1and I thinkyou missed static word in .cpp19:15
blackburn1I do not remember if it is relevant here19:15
blackburn1probably not19:15
nickp_I have static CGaussianARDKernel* obtain_from_generic(CKernel* kernel); in GaussianARDKernel.h19:16
nickp_Is that correct ^19:16
nickp_It's the same as for GaussianKernel19:17
wikingthat should be alright19:19
wikingdo you use the latest commit of the shogun repo19:20
wiking?19:20
wikingbecause it looks like as if you dont have that interfaces patch i've done the other time19:23
blackburn1wiking: did you get your paper done?19:24
wikinglol19:25
wikingno19:25
wiking:)19:25
wikingran out of time19:25
blackburn1argh19:25
wikingyeah shit happens19:25
nickp_Yeah I've got those changes:19:26
nickp_%rename(LinearARDKernel) CLinearARDKernel; %rename(GaussianARDKernel) CGaussianARDKernel;19:26
nickp_in Kernel.i and Kernel_includes.i19:26
wikingnickp_: i'll try your patch on my machine19:26
wikingjust to be safe19:26
wikingbut i'm 100% that that should work alright19:26
nickp_ok cool thanks so much19:30
nickp_If you're works, I'll just grab that instead.19:30
nickp_No idea what I'm doing wrong.19:30
wikingme neither19:30
wikingbut i'm defenetly sure that somewhere it tries to use a wrong library19:31
wikingand older version of it19:31
-!- audy [~audy@unaffiliated/audy] has quit [Excess Flood]19:34
-!- zxtx [~zv@cpe-76-169-228-195.socal.res.rr.com] has quit [Ping timeout: 240 seconds]20:40
@sonney2knickp_, what does ldd  /path/local/lib/python2.7/dist-packages/_modshogun.so say?20:51
@sonney2kI second wiking - you have the wrong lib lying around somewhere20:52
nickp_I'll check20:52
nickp_sec20:52
nickp_libshogun.so.13 => /usr/local/lib/libshogun.so.13 (0x00007fdb15dc4000)20:54
nickp_so that's the problem ^ ?20:55
nickp_because I thought I had shogun installed in a virtualenv20:55
@sonney2kis that the correct one?20:55
nickp_but seems to be linking to system wide one I installed earlier.20:55
@sonney2kor do you expect the lib somewhere else?20:55
nickp_I expect it to be in /path/ ...20:55
nickp_not /usr/local20:55
nickp_When I ran ./configure20:55
@sonney2kyeah then it is clear20:56
nickp_I passed --interfaces=python_modular --prefix=/home/nickp/path/...20:56
@sonney2kwhat were your configure options?20:56
@sonney2kthen it will install into /home/nickp/path/20:56
nickp_Won't  it put everything in that directory when I run make install20:56
nickp_Yeah that's what I want20:56
@sonney2kbut you need to give it LD_LIBRARY_PATH=/home/nickp/path/... too20:56
@sonney2kwhen running python etc20:56
@sonney2kand PYTHON_PATH etc etc20:56
nickp_to why does _modshogun link to /usr/local/lib/...20:57
nickp_ooooh20:57
nickp_ok20:57
nickp_cool thats20:57
nickp_*thanks20:57
nickp_Will recompile now and give it a try, but that sounds like it should fix things.20:57
nickp_are ld_library_path and python_path the only other args I need to add.20:58
@sonney2kI am not 100% sure but I think so20:58
nickp_Working22:07
nickp_thanks chaps!22:07
-!- nickp_ [836fb85a@gateway/web/freenode/ip.131.111.184.90] has quit [Ping timeout: 245 seconds]22:12
-!- zxtx [~zv@cpe-75-83-151-252.socal.res.rr.com] has joined #shogun22:38
-!- n4nd0 [~nando@s83-179-44-135.cust.tele2.se] has joined #shogun22:41
--- Log closed Tue Nov 13 00:00:17 2012

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