Visitas: 10
Shogun es una biblioteca de software de machine learning de código abierto escrita en C++. Se puede utilizar en una gran cantidad de lenguajes como Python, C#, R, Ruby, Java, etc.
Obs:
- Utilizo Debian Buster de 64 bits.
- Se instala shogun para python con las versión 3.2.0
Entramos a la terminal y tecleamos lo siguiente:
sudo apt update sudo apt install python-shogun shogun-cmdline-static sudo apt clean && sudo apt autoclean
Para probar que funciona shogun con python:
python
Agregamos en la terminal:
import shogun as sg
Si no sale ningún error es porque tenes la libreria shogun para python para que puedas utilizarla.
Otra forma de utilizar shogun es utilizar su propia interfaz:
shogun
Sale por pantalla:
libshogun (x86_64/v3.2.0_2014-2-17_18:46197120) Copyright (C) 1999-2009 Fraunhofer Institute FIRST Copyright (C) 1999-2011 Max Planck Society Copyright (C) 2009-2011 Berlin Institute of Technology Copyright (C) 2012-2014 Soeren Sonnenburg, Sergey Lisitsyn, Heiko Strathmann, Viktor Gal, Fernando Iglesias et al Written (W) 1999-2012 Soeren Sonnenburg, Gunnar Raetsch et al. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ( configure options: "TODO" compile flags: "-std=c++11 -Wall -Wno-unused-parameter -Wformat -Wformat-security -Wparentheses -Wshadow -Wno-unknown-pragmas -Wno-deprecated -g -g -O2 -fdebug-prefix-map=/build/shogun-uBO0ka/shogun-3.2.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fopenmp" link flags: "-lpthread;/usr/lib/x86_64-linux-gnu/liblapack_atlas.so;/usr/lib/x86_64-linux-gnu/libcblas.so;/usr/lib/x86_64-linux-gnu/libf77blas.so;/usr/lib/x86_64-linux-gnu/libatlas.so;/usr/lib/x86_64-linux-gnu/liblapack.so;/usr/lib/x86_64-linux-gnu/libglpk.so;/usr/lib/x86_64-linux-gnu/libarpack.so;/usr/lib/x86_64-linux-gnu/libnlopt.so;/usr/lib/x86_64-linux-gnu/libColPack.so;-ljson-c;/usr/lib/x86_64-linux-gnu/libxml2.so;/usr/lib/x86_64-linux-gnu/hdf5/serial/libhdf5.so;/usr/lib/x86_64-linux-gnu/libpthread.so;/usr/lib/x86_64-linux-gnu/libsz.so;/usr/lib/x86_64-linux-gnu/libz.so;/usr/lib/x86_64-linux-gnu/libdl.so;/usr/lib/x86_64-linux-gnu/libm.so;/usr/lib/x86_64-linux-gnu/libcurl.so;/usr/lib/x86_64-linux-gnu/libz.so;/usr/lib/x86_64-linux-gnu/libbz2.so;/usr/lib/x86_64-linux-gnu/liblzma.so;/usr/lib/x86_64-linux-gnu/libsnappy.so;/usr/lib/x86_64-linux-gnu/liblzo2.so;/usr/lib/x86_64-linux-gnu/libprotobuf.so;-lpthread" ) ( seeding random number generator with 0 (seed size 256)) determined range for x in log(1+exp(-x)) is:37 ) shogun >>
Sitio oficial: Shogun toolbox