Questions tagged [pybrain]

PyBrain is an open source machine-learning library for python. It supports a wide range of optimisation techniques, neural networks, reinforcement learning and more.

PyBrain is a machine learning library that can be used by entry-level students but offers the flexibility and algorithms for state-of-the-art research.

For more information, see the PyBrain homepage

310 questions
0
votes
2 answers

How to Train Single-Object Recognition?

I was thinking of doing a little project that involves recognizing simple two-dimensional objects using some kind of machine learning. I think it's better that I have each network devoted to recognizing only one type of object. So here are my two…
Paul Manta
  • 30,618
  • 31
  • 128
  • 208
0
votes
2 answers

which (machine learning) method to recognize an unsteady moving 3D structure in multivariate time series?

Let's assume I have local measurements of the temperature, wind speed, air pressure, humidity and so on, in the form of time series, and thats all I know from the world. From time to time, a tornado goes over my probe. Because a tornado is not just…
tm8cc
  • 1,111
  • 2
  • 12
  • 26
0
votes
1 answer

Why do I get EOFError error when trying to read MNIST data?

import cPickle, gzip, numpy data = cPickle.load(gzip.open('mnist.pkl.gz', 'rb')) trndata=data['train'] tstdata=data['test'] I was getting this error when I was running this code : Traceback (most recent call last): File…
user57715
  • 9
  • 2
0
votes
1 answer

Word classification in Pybrain: Different number of sequences in input vectors

I'm trying to implement a simple single digit classifier using PyBrain. I have training data of many recorded examples of the digits zero to nine, and have written a script to extract MFCCs for each example. To keep things simple (for now) I'm only…
0
votes
1 answer

Trouble with the scope of variables in a class?

So I'm in the process of making a class in Python that creates a network (with pybrain) using solely the numeric input it's given {just a little process to get my feet wet in Pybrain's API}. My problem is, I'm rather unfamiliar with how scopes work…
Aaron Tp
  • 353
  • 1
  • 3
  • 12
0
votes
1 answer

Matching Binary operators in Tuples to Dictionary Items

So, I'm working on a Pybrain-type project and I'm stuck on part of it. So far the program takes in a tuple and assigns a variable to it using 'one of them fancy vars()['string'] statements. Specifically, it takes in a tuple of numbers and assigns…
Aaron Tp
  • 353
  • 1
  • 3
  • 12
-1
votes
2 answers

Neural Network image processing

I am developing a python app for neural network image processing I am giving a dataset of what image should look like after processing Now I have 50 images of universe in training set. As an input I give blank black image, as a result I give each of…
-1
votes
1 answer

PyBrain RNN prediction failure

I am using a recurrent neural network for time series prediction with LSTM as the activation function. The inputs are sequence datasets, with the output being the next datum after the input sequence. I have hundreds of inputs, one hidden layer of…
mikael
  • 2,097
  • 3
  • 18
  • 24
-2
votes
1 answer

Efficent way to teach neural network pictures

Which representation of .bmp files is effective for pyBrain network to teach it recognising simple images? I am not sure plain feeding of one-dimensional sequence of pixels is good enough.
RomaValcer
  • 2,786
  • 4
  • 19
  • 29
-3
votes
1 answer

Pybrain - Neural Network Accuracy is very low

i=0 noofclasses = 2 alldata = ClassificationDataSet(400, 1, noofclasses) while i
jack
  • 1
  • 6
1 2 3
20
21