PyBrain is an open source machine-learning library for python. It supports a wide range of optimisation techniques, neural networks, reinforcement learning and more.
-5
votes
0answers
30 views
Neural Network to predict currency - Python [closed]
From matlab, it's possible to predict currency exchange rate as such: http://library.wolfram.com/examples/exchangerate/
How do I use python neural network libraries like pybrain ...
0
votes
0answers
17 views
fill missing values of sequence with neural networks
I want to make a little project and I want to use neural networks with python. I found that pybrain is the best solution. But until now, all the examples and questions I have found, cannot help me.
I ...
0
votes
1answer
31 views
PyBrain - how to validate my trained network against a test data?
So I have a ClassificationDataSet in PyBrain which I have trained with the appropriate data. Namely, the input is the following:
trainSet.addSample([0,0,0,0],[1])
trainSet.addSample([0,0,0,1],[0])
...
-2
votes
0answers
32 views
AI - Classification vs regression
I am given a training set and I need to answer the following questions.
(e) Train the network on the even-numbered patterns (P = 2, 4,..., 16) in trainSet for a 200 epochs. Use patterns 1, 5, 9 ...
0
votes
1answer
30 views
Unexpected LSTM layer output in PyBrain
I am using an LSTM layer to multiplex among several memory cells. That said, having several input options, I want to feed only one of them to the hidden layer. I arranged the input to LSTM in such a ...
0
votes
0answers
39 views
benchmarking agents using pybrain
I have recently started coding my own agents in python(not using pybrain library) and it has come to the point where I would like to start running some proper benchmarking. I would like to run on a ...
2
votes
1answer
77 views
Getting output of pybrain prediction as array
I am making use of pybrain to build a network that has 6 input dimensions and one real valued output dimension. The code I use is shown below:
network = buildNetwork(train.indim, 4, train.outdim)
...
4
votes
1answer
308 views
How to train a neural network to supervised data set using pybrain black-box optimization?
I have played around a bit with pybrain and understand how to generate neural networks with custom architectures and train them to supervised data sets using backpropagation algorithm.
However I am ...
2
votes
0answers
63 views
Outputs always equal in a network trained with pybrain to approximate a function
Using the code below:
tf = open('defl_07h.csv','r')
for line in tf.readlines():
data = [float(x) for x in line.strip().split(';') if x != '']
indata = tuple(data[:1])
outdata = ...
0
votes
2answers
86 views
Disable certain output nodes in PyBrain
I'm creating a simple feed-forward neural network in PyBrain to classify characters (26 lower case, 26 upper case and 10 numbers)
There are two different documents - one has only upper case letters ...
1
vote
0answers
63 views
PyBrain Predicting Error
I am trying to predict the sale price of a given set of goods. I am using RecurrentNetwork and BackpropTrainer in pybrain. Here is my code,
def nnet(train, target, valid):
ds = ...
1
vote
1answer
73 views
Install pybrain on python 3.2
I'm trying to install pybrain on python 3.2. It says here: https://github.com/pybrain/pybrain/pull/85 that it should work. However it does not for me.
I tried:
$export ...
2
votes
0answers
169 views
How to do supervised deepbelief training in PyBrain?
I have trouble getting the DeepBeliefTrainer to work on my data in PyBrain/Python. Since I can't find any examples other than unsupervised on how to use the deep learning in PyBrain, I hope that ...
0
votes
0answers
134 views
How to use PyBrain to input an image into a neural network? [closed]
PyBrain makes it easy to build Artificial Neural Networks and train them.
How can we use OpenCV or PIL along with PyBrain to input an image to a Neural Network built with PyBrain?
A piece of code ...
0
votes
0answers
67 views
libsvm on PyBrain on OSX for an SVM
For almost all day now I have been trying to make an SVM on PyBrain but it gives "Cannot find LIBSVM installation. Make sure svm.py and svmc.* are in the PYTHONPATH!"
I have OSX 10.7.5 and python ...
1
vote
1answer
329 views
Pybrain Feedforward neural network training error completely stuck
Hey guys I need a bit of help with my pybrain code. Everything loads fine, but after it trains the first time the training error doesn't go down. In fact, it just stays stuck there at exactly ...
0
votes
2answers
178 views
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 ...
0
votes
0answers
105 views
Pybrain - input range dependence?
I have been following the tutorial provided on the website and I have had some trouble getting my data to classify. After a bit of debugging, I traced the problem back to the code below. If I ...
1
vote
1answer
178 views
pybrain activate() output representation
I build this example using pybrain:
from pybrain.tools.shortcuts import buildNetwork
from pybrain.datasets import SupervisedDataSet
from pybrain.supervised.trainers import BackpropTrainer
net = ...
0
votes
0answers
84 views
Python 2.7.2, deepcopy, TypeError…object.new(Class) is not safe, use Class.__new__()
I'm using PyBrain, a ML library for Python. In that library a function I need to use is not runnable since a deepcopy call is throwing an exception:
File ...
0
votes
1answer
96 views
Pybrain multi dimensional data input
I have some data that has a dimension of 8x128 for each record. I wanted to train a Neural Network for this data.
Does anyone have any examples of using Multi-Dimensional Data as Input to a Pybrain ...
1
vote
1answer
147 views
Creating shared weight connections in Pybrain
I am trying to create a neural network in PyBrain which utilizes shared weight connections, but am having trouble doing so. I haven't found too many examples which use these type of connections, but ...
0
votes
2answers
124 views
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 ...
0
votes
2answers
287 views
installing pybrain
I am trying to install pybrain using :
git clone git://github.com/pybrain/pybrain.git
I installed git and then used windows command prompt to execute the above command. Everything goes well but ...
1
vote
1answer
129 views
Pybrain neural network step transfer function
can someone show me how to implement a step activation function in pybrain ?
eg.
def stepActivationFunction(n):
if n > 0.5: return 1.
else: return 0.
I can't seem to find any ...
10
votes
0answers
421 views
pybrain neural network not learning [closed]
I'm using pybrain to build an agent that learns chemotaxis (moving toward food based on a chemical signal). The agent is represented by a neural network, which should adjust its weights based on its ...
3
votes
1answer
279 views
how to give input to a trained and tested PyBrain network and how to get the result
I am predicting a value, I have 2 input layer and an output layer. Here is my code in which I have trained a PyBrain network and then tested it, I am missing how should I give a set of input to the ...
1
vote
1answer
467 views
pybrain poor results
I am wondering if I am doing something wrong or if results are really that poor. Lets assume the simplest NN examples as shown in documentation:
>>>net = buildNetwork(2, 3, 1, bias=True)
...
1
vote
0answers
169 views
i was trying to read data from mnist data set but i was getting this error
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 ...
2
votes
1answer
160 views
Neural network reporting the same response for different activations
I wrote this simple test of Pybrain neural networks, but it doesn't act like I expect it to. The idea is to train it on a dataset of numbers up to 4095, with a class for prime and non-prime.
...
8
votes
1answer
802 views
No. of hidden layers, units in hidden layers and epochs till Neural Network starts behaving acceptable on Training data
I am trying to solve this Kaggle Problem using Neural Networks. I am using Pybrain Python Library.
It's a classical supervised Learning Problem. In following code: 'data' variable is numpy ...
0
votes
1answer
229 views
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 ...
2
votes
1answer
320 views
activation values for all nodes in a PyBrain network
I feel like this should be trivial, but I've struggled to find anything useful in the PyBrain documentation, on here, or elsewhere.
The problem is this :
I have a three layer (input, hidden, output) ...
1
vote
0answers
193 views
neural network to train a image so as to get its unicode as output- python
I have an image of a character. I wanted to make a neural network so that it takes the linear array of pixels as input and generate the Unicode of character so that i can compare it with the actual ...
6
votes
1answer
878 views
Neural Network training with PyBrain won't converge
I have the following code, from the PyBrain tutorial:
from pybrain.datasets import SupervisedDataSet
from pybrain.supervised.trainers import BackpropTrainer
from pybrain.tools.shortcuts import ...
1
vote
0answers
230 views
PyBrain Reinforcement Learning - Maze and Graph
I was trying to implement in PyBrain something similar to a Maze problem. However, it's more similar to a room with an emergency exit, where you leave an agent in one of the rooms to find the exit.
To ...
1
vote
2answers
169 views
Weighted inputs of a neural network
how can I make a NN such that some input variables are "more important" than others. For example lets say my input layer has 2 neurons and I want to stress that input one is 70% important and other ...
3
votes
1answer
375 views
PyBrain neuron manipulation
Is there a good way to add/remove a neuron and its associated connections into/from a fully connected PyBrain network? Say I start with:
from pybrain.tools.shortcuts import buildNetwork
net = ...
0
votes
1answer
51 views
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 ...
0
votes
1answer
84 views
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. ...
6
votes
0answers
713 views
Are there any decent PyBrain tutorials out there? [closed]
So, PyBrain definitely seems like it has a lot of great tools and functionality(s) to be used. Sadly, it's documentation/'tutorial' is....very........weaK? And it is very hard to determine how to do ...
1
vote
2answers
63 views
PyBrain cannot access function listed in API/Index
So, I'll make it simple.
Pybrain's API shows that they have, as an example, a function called buildNetwork(). It says it's in the pybrain.tools.shortcut.buildNetwork, if that makes sense?
The ...
0
votes
1answer
252 views
What is the data structure of Pybrain's network architecture?
Suppose we have built a feed forward network using Pybrain's SupervisedDataSet and buildNetwork functions. The architecture could be 10, 5, 2: 10 input nodes, 5 hidden nodes in a single hidden layer, ...
0
votes
0answers
109 views
What can valfunc be set to in PyBrain?
When using the CrossValidator class, what functions (preferably built-in) may we supply for valfunc? In PyBrain docs we see:
class pybrain.tools.validation.CrossValidator(trainer, dataset, n_folds=5, ...
0
votes
1answer
279 views
PyBrain:How can I speed up the training of a network using my GPU?
I was wondering if there is a way to use my GPU to speed up the training of a network in PyBrain.Any ideas?Thanks.
1
vote
1answer
651 views
PyBrain how to interpret the results from net.activate?
I've trained a network on PyBrain for purpose of classification and am ready to fire away with specific input. However, when I do
classes = ['apple', 'orange', 'peach', 'banana']
data = ...
1
vote
0answers
186 views
Pybrain implementation throwing error
I am trying to generate a grid for my dataset of 10 dimensions, while doing so I am following the code from http://pybrain.org/docs/tutorial/fnn.html. The code which I am implementing and throwing ...
1
vote
1answer
467 views
how to fit a function using PyBrain networks?
there is a function like:
y = sin(x)
I want to use PyBrain networks to fit the functions, here are what i did:
when you run it you will get what i get, the data obtained is far from what it should be.
...
2
votes
1answer
2k views
PyBrain: Loading data with numpy.loadtxt?
I have some working code which correctly loads data from a csv file into a PyBrain Dataset:
def old_get_dataset():
reader = csv.reader(open('test.csv', 'rb'))
header = reader.next()
...
1
vote
1answer
508 views
PyBrain: When creating network from ground up how and where do you create a bias?
Following the PyBrain documentation, Building Networks with Modules and Connections, I'm building a neural network piecewise (in contrast to using the buildNetwork shortcut). I'm constructing a ...

