Displaying 13 results from an estimated 13 matches for "scikits".
Did you mean:
scikit
2018 Apr 06
9
Semi-OT: install python package in userspace
CentOS 7 box. As there's no package in any of the repos, we're trying to
install scikit-learn in the user's space. It refuses. My late try was,
after d/l a .whl from last year, hoping that would work with the numpy
package in the regular repos, I did a pip install --user scikit-learn...,
and it still seems to want to write to system space: OSError: [Errno 13]
Permission denied:
2018 Apr 06
3
Semi-OT: install python package in userspace
On 04/06/18 13:51, Ulf Volmer wrote:
> On 06.04.2018 18:25, m.roth at 5-cent.us wrote:
>> CentOS 7 box. As there's no package in any of the repos, we're trying to
>> install scikit-learn in the user's space. It refuses. My late try was,
>> after d/l a .whl from last year, hoping that would work with the numpy
>> package in the regular repos, I did a pip
2018 Apr 10
2
Semi-OT: install python package in userspace
Just had a look at scikit-learn. An issue you have with the current
version of this package is that is depends on NumPy (>= 1.8.2). The
version of NumPy in CentOS 7 base is 1.7.1. You may need to look at
building a Python virtual environment. You can google that ;)
On Tue, Apr 10, 2018 at 9:43 AM, Richard Grainger <grainger at gmail.com> wrote:
> I created the epypel (Extra Extra
2018 Apr 06
0
Semi-OT: install python package in userspace
On 06.04.2018 18:25, m.roth at 5-cent.us wrote:
> CentOS 7 box. As there's no package in any of the repos, we're trying to
> install scikit-learn in the user's space. It refuses. My late try was,
> after d/l a .whl from last year, hoping that would work with the numpy
> package in the regular repos, I did a pip install --user scikit-learn...,
> and it still seems to want
2018 Apr 06
0
Semi-OT: install python package in userspace
python has nothing to do with snakes. it was named after a television show..
On Fri, Apr 6, 2018 at 7:53 PM, Valeri Galtsev <galtsev at kicp.uchicago.edu>
wrote:
>
>
> On 04/06/18 13:51, Ulf Volmer wrote:
>
>> On 06.04.2018 18:25, m.roth at 5-cent.us wrote:
>>
>>> CentOS 7 box. As there's no package in any of the repos, we're trying to
>>>
2018 Apr 06
2
Semi-OT: install python package in userspace
Richard Demeny wrote:
> Just sudo it
>
> On Fri, 6 Apr 2018 17:25 , <m.roth at 5-cent.us> wrote:
>
>> CentOS 7 box. As there's no package in any of the repos, we're trying to
>> install scikit-learn in the user's space. It refuses. My late try was,
>> after d/l a .whl from last year, hoping that would work with the numpy
>> package in the
2018 Apr 10
0
Semi-OT: install python package in userspace
If you can use python3 rather than python2, it looks like the
dependencies in the standard repos are new enough. Do you want me to
have a go at packaging scikit-learn for python3 and adding it to the
repo?
On Tue, Apr 10, 2018 at 9:51 AM, Richard Grainger <grainger at gmail.com> wrote:
> Just had a look at scikit-learn. An issue you have with the current
> version of this package is
2018 Apr 06
0
Semi-OT: install python package in userspace
On 04/06/18 11:53, m.roth at 5-cent.us wrote:
> Richard Demeny wrote:
>> Just sudo it
>>
>> On Fri, 6 Apr 2018 17:25 , <m.roth at 5-cent.us> wrote:
>>
>>> CentOS 7 box. As there's no package in any of the repos, we're trying to
>>> install scikit-learn in the user's space. It refuses. My late try was,
>>> after d/l a .whl from
2018 Apr 06
4
Semi-OT: install python package in userspace
Valeri Galtsev wrote:
<snip>
>>> On Fri, 6 Apr 2018 17:25 , <m.roth at 5-cent.us> wrote:
>>>
>>>> CentOS 7 box. As there's no package in any of the repos, we're trying
>>>> to install scikit-learn in the user's space. It refuses. My late try
was,
>>>> after d/l a .whl from last year, hoping that would work with the numpy
2018 Apr 06
0
Semi-OT: install python package in userspace
Just sudo it
On Fri, 6 Apr 2018 17:25 , <m.roth at 5-cent.us> wrote:
> CentOS 7 box. As there's no package in any of the repos, we're trying to
> install scikit-learn in the user's space. It refuses. My late try was,
> after d/l a .whl from last year, hoping that would work with the numpy
> package in the regular repos, I did a pip install --user scikit-learn...,
2018 Apr 10
0
Semi-OT: install python package in userspace
I created the epypel (Extra Extra Python Packages for Enterprise
Linux) yum repo for exactly this reason:
https://harbottle.gitlab.io/epypel/
There are a bunch of additional Python 2 and Python 3 packages there
and if you want any added, please put in a request here:
https://gitlab.com/harbottle/epypel/issues/new
The repo does not upgrade any packages in base or EPEL, so should be
safe to use on
2018 Apr 06
2
Semi-OT: install python package in userspace
On Fri, April 6, 2018 11:42 am, Richard Demeny wrote:
> Just sudo it
This is exactly why I have big reservation in giving users sudo
permissions. If they need sudo on UNIX or Linux for small thing like this,
then they have no idea what they are doing and can easily screw the system
up. Not to mention regular user should not hahe these permissions on
multi-user system. If they know enough to
2018 Sep 09
2
Confusion about linear prediction within flac
...x is composed of. I found sources using samples from
within the time series to construct a linear system:
http://practicalcryptography.com/miscellaneous/machine-learning/linear-prediction-tutorial/
However, talkbox, a scikit for signal proccessing (
https://github.com/cournape/talkbox/tree/master/scikits/talkbox/linpred
), first autocorrolates the signal using discrete inverse Fourier
transforms which then passes it to the levinson durbin algorithm.
I would really appriciate an explanation or information on a good
resource to learn more about how the prediction coefficients are solved
for.
Once t...