1
vote
1answer
54 views

Optimizing K (ideal # of clusters) Using PyCluster

I'm using PyCluster's kMeans to cluster some data -- largely because SciPy's kMeans2() produced an insuperable error. Mentioned here. Anyhow the PyCluster kMeans worked well, and I am now attempting ...
2
votes
2answers
68 views

How many features can scikit-learn handle?

I have a csv file of [66k, 56k] size (rows, columns). Its a sparse matrix. I know that numpy can handle that size a matrix. I would like to know based on everyone's experience, how many features ...
0
votes
2answers
61 views

In scikit, can dbscan use sparse matrix?

I got Memory Error when I was running dbscan algorithm of scikit. My data is about 20000*10000, it's a binary matrix. (Maybe it's not suitable to use DBSCAN with such a matrix. I'm a beginner of ...
0
votes
1answer
110 views

Multinomial Naive Bayes with scikit-learn for continuous and categorical data

I'm new to scikit-learn, I'm trying to create a Multinomial Bayes model to predict movies box office. Below is just a toy example, I'm not sure if it is logically correct (suggestions are welcome!). ...
5
votes
2answers
102 views

Dealing with Memory Problems in Network with Many Weights

I have a neural network with the architecture 1024, 512, 256, 1 (the input layer has 1024 units, the output layer has 1 unit, etc). I would like to train this network using one of the optimization ...
1
vote
3answers
438 views

Python Scikit Random Forest Regressor Error

I am trying to load training and test data from a csv, run the random forest regressor in scikit/sklearn, and then predict the output from the test file. The TrainLoanData.csv file contains 5 ...
2
votes
2answers
548 views

Logistic regression using SciPy

I am trying to code up logistic regression in Python using the SciPy fmin_bfgs function, but am running into some issues. I wrote functions for the logistic (sigmoid) transformation function, and the ...
-2
votes
2answers
150 views

Scipy fmin_bfgs Error: Divide-by-zero encountered: rhok assumed large

I'm getting the following error when using fmin_bfgs (in SciPy) to optimize an unregularized logistic cost function: Divide-by-zero encountered: rhok assumed large ...
1
vote
1answer
113 views

Computing generalized eigen values for sparse matrices in python

I am using scipy.sparse.linalg.eigsh to solve the generalized eigen value problem for a very sparse matrix and running into memory problems. The matrix is a square matrix with 1 million rows/columns, ...
0
votes
2answers
252 views

Validating Output From a Clustering Algorithm

Is there an objective way to validate the output of an clustering algorithm? Context: I'm leveraging sci-kit learn's affinity propagation clustering against a data-set composed of objects with ...
2
votes
2answers
488 views

Integer step size in scipy optimize minimize

I have a computer vision algorithm I want to tune up using scipy.optimize.minimize. Right now I only want to tune up two parameters but the number of parameters might eventually grow so I would like ...
3
votes
2answers
804 views

Visualizing a decision tree ( example from scikit-learn )

I'm a noob in using sciki-learn so please bare with me. I was going through the example: http://scikit-learn.org/stable/modules/tree.html#tree >>> from sklearn.datasets import load_iris ...
0
votes
1answer
78 views

Numpy __array_prepare__ error

I'm trying to get a recipe working that I found online for doing expectation maximization (http://code.activestate.com/recipes/577735-expectation-maximization/). I run into the following error: ...
8
votes
2answers
2k views

Library in python for neural networks to plot ROC, AUC, DET [closed]

I am new to machine learning in python, therefore forgive my naive question. Is there a library in python for implementing neural networks, such that it gives me the ROC and AUC curves also. I know ...
0
votes
1answer
156 views

scipy.sparse.csc_matrix format for mlpy

I was wondering if there's any way to have a scipy.sparse.csc_matrix format for mlpy in python. I have worked with mlpy before and have always dealt with non sparse matrices. For instance if I have 5 ...
1
vote
4answers
881 views

Uniformly distributed data in d dimensions

How can I generate a uniformly distributed [-1,1]^d data in Python? E.g. d is a dimension like 10. I know how to generate uniformly distributed data like np.random.randn(N) but dimension thing is ...
1
vote
2answers
1k views

computing z-scores for 2D matrices in scipy/numpy in Python

How can I compute the z-score for matrices in Python? Suppose I have the array: a = array([[ 1, 2, 3], [ 30, 35, 36], [2000, 6000, 8000]]) and I want to compute ...
13
votes
1answer
4k views

plotting results of hierarchical clustering ontop of a matrix of data in python

How can I plot a dendrogram right on top of a matrix of values, reordered appropriately to reflect the clustering, in Python? An example is in the bottom of the following figure: ...
2
votes
4answers
2k views

hierarchical clustering with gene expression matrix in python

how can I do a hierarchical clustering (in this case for gene expression data) in Python in a way that shows the matrix of gene expression values along with the dendrogram? What I mean is like the ...
7
votes
1answer
589 views

problem with hierarchical clustering in Python

I am doing a hierarchical clustering a 2 dimensional matrix by correlation distance metric (i.e. 1 - Pearson correlation). My code is the following (the data is in a variable called "data"): from ...
3
votes
1answer
1k views

hierarchical clustering on correlations in Python scipy/numpy?

How can I run hierarchical clustering on a correlation matrix in scipy/numpy? I have a matrix of 100 rows by 9 columns, and I'd like to hierarchically clustering by correlations of each entry across ...
3
votes
5answers
600 views

How do you make this code more pythonic?

Could you guys please tell me how I can make the following code more pythonic? The code is correct. Full disclosure - it's problem 1b in Handout #4 of this machine learning course. I'm supposed to ...