NeuPy is a Python library for Artificial Neural Networks and Deep Learning that uses Theano as a backend.
Questions tagged [neupy]
22 questions
0
votes
2 answers
Import Error: can't import algorithms from neupy
I'm trying to import a library in anaconda
from neupy import algorithms
ImportError: cannot import name 'gcd' from 'fractions'
0
votes
0 answers
Install neupy with python3.8.3?
I got the following error. How to install neupy with python3.8.3? Is it not available on python3.8.3? I have a version 2.2.0rc3 of tensorflow
pip install neupy
ERROR: Could not find a version that satisfies the requirement…

mervedev
- 11
- 2
0
votes
1 answer
It´s possible to apply cross_val_score() form sklearn to neupy NN that has an addon like Weigth Elimination?
I´m trying to apply cross_val_score() to the following algorithm:
cgnet = algorithms.LevenbergMarquardt(
connection=[
layers.Input(XTrain.shape[1]),
layers.Linear(6),
layers.Linear(1)],
mu_update_factor=2,
…

Manuel Almeida
- 183
- 2
- 9
0
votes
1 answer
How to make integers output layer?
I have network like this, I want to make last layer to return integers (target data is integers)
connection=[
layers.Input(4),
layers.Sigmoid(50),layers.Sigmoid(50),
layers.Sigmoid(1),
],

Bartłomiej Bartnicki
- 1,067
- 2
- 14
- 30
0
votes
0 answers
Batch Product AND Layer Theano Neupy / Theano
How do I implement product AND in Theano? Mathematically that is the equivalent of multiply all of the previous layer (no weights). I think my code works for a batch size of 1 but I want it to work for batches.
Here is what I have tried. Note, I…

10donovanr
- 93
- 12
0
votes
1 answer
line 880, in load_eof raise EOFError EOFError when trying to load using dill
I am fairly new to python and machine learning. I have been using the neupy library to create neural networks successfully. However, now that I have a decent network, I want to save it. The documentation shows how to use the dill library to do this.…

paperstsoap
- 335
- 4
- 13
-1
votes
1 answer
How to fix "IndexError" on python?
I am a beginner who studies machine learning and tries to train neural networks. but there is a problem when I run my code. error saying "
IndexError: index 114 outside the limit for 0 axis with size 93 ". how this can happen dan how to fix it?…

ApriNL
- 1
- 2