Most voted "deep-learning" questions
20 questions
Sort by count of
-
20
votes2
answers390
viewsWhat is deep learning?
Reading one of the answers, about Algorithm to detect nudity with good accuracy, I have seen that a term that is much quoted and referred to is Deep Learning. For me, translating Deep Learning…
-
8
votes1
answer158
viewsHow to use deep-Learning to parse forms with addresses?
I have an app I need to import personal data into. I often receive excel or csv/txt files with fields such as name, address, email, phone, etc... File formatting varies, order also, and sometimes…
-
2
votes1
answer53
viewsHow to calculate the amount of connections on a Deep Network?
I have exactly this scenario and I need to know how many connections this set has. I’ve looked in several places and I’m not sure of the answer. I mean, I don’t know how to calculate the number of…
-
2
votes1
answer150
viewsWeak AI, concept and example in software development
Weak AI is about building software in a certain intelligent way. Can all computer-processed logic be considered weak AI? or only falls within this category those structures that we see or hear about…
-
2
votes1
answer1199
viewsProblem with arrays in Python 3.6
I started a small course on deep learning with Python, but I ended up having a problem with arrays... I usually take the code from the class and modify it a lot before creating an original, but this…
-
2
votes1
answer863
viewsAre Keras and Tensorflow the same thing?
I walked vulture some tutorials of Tensorflow lately and I realized that the error reduction models, the interleaved mapping and normalization models and the layers models themselves of a neural…
-
2
votes2
answers93
viewsRuntimeexception when using colorbar() Spyder IDE
I am a code to show the use of self-organizing maps and error appears when using colorbar function. Error happens on line colorbar(). Before that the way out was: So when I run the line colorbar().…
-
2
votes1
answer69
viewsimage processing (KNN classifier) - python
When using Kneighborsclassifier, I am getting the following error: /Feature Extraction (Python)/KNNpy:58: DataConversionWarning: A column-vector y was passed when a 1d array was expected. Please…
-
1
votes1
answer67
viewsWhat to do after preparing a Model?
I would like to understand how I can put into practice in some system, the model I create with Deep Learning or machine Learning. I see several tutorials teaching to create a very simple structure…
-
1
votes1
answer761
viewsHow to create a dataset to work with Keras classification
I have a series of images (12500 in total) in rgb format and I want to create a dataset to work on Keras. I want to leave them in a format similar to the Mnist dataset...with Shape (12500,50,50).…
-
1
votes2
answers66
viewsWhat is the basic format of a convolutional network in Keras?
Currently I study about neural networks in Keras and I can not understand how it mounts the basic structure of the network, how I am in high school gets very difficult I learn advanced without any…
-
1
votes0
answers23
viewsHow to use TSNE for plotting?
I am now beginning my quest for data science. I created a code in the notebook jupyter to work with CBOW and Skip-Gram and I need to plot a similarity graph. Many with whom I talked indicated me the…
-
0
votes2
answers48
viewsmultivariate regression in Keras
I have two models created in Keras to solve a multivariate regression problem. The first one has 1 input and 5 outputs. The second has an additional entrance, that is, it has two entrances and the…
-
0
votes1
answer68
viewsProblem compiling code in Keras
I was creating a simple classifier in Keras in Python3, but its getting the same error message: Runtimeerror: You must Compile your model before using it. Follows the code: import keras from…
-
0
votes1
answer117
viewsKeras Model for Tensorflow
I am learning Tensorflow and am trying to pass a Deep Learning model in Keras to Tensorflow, however, I am having difficulties. Model Keras: model = Sequential()…
-
0
votes1
answer235
viewsMaking Predictions using LSTM with Keras
Good morning, group. I’m doing some tests with predictive models using lstm with the keras. In the test that I did, I trained the model with some random data that I found on the internet. Only I’m…
-
0
votes0
answers57
viewsWhy Deep Learning technique are divided into three, known as CCN, DBN and Autoencoders?
I read in several review articles that deep leaning methods are divided into groups of Convolutional Networks, Boltzman Machines and Autoencoders. But none of these works justify why the division.…
-
0
votes0
answers10
viewsNeural Networks in Colab - Runtimeerror: CUDA error
I’m training a simple neural network for database classification Internet Firewall Data Data Set from the UCI Machine Learning site, but in the execution of the training occurs the following error…
-
-1
votes1
answer24
viewsVGG16: how to use Dense_2 layer as output - python
I am using vgg16 model for feature extraction https://github.com/fchollet/deep-learning-models/blob/master/vgg16.py call the same through function: model = VGG16(include_top=True,…
python classification image-processing model deep-learningasked 4 years, 8 months ago David Jordão 21 -
-1
votes1
answer64
viewsValueerror: Classification Metrics can’t Handle a mix of multilabel-Indicator and Binary targets
Hello. I’m creating a neural network to categorize some data. Basically the neural network will tell me which molecule is. This is my code: import pandas as pd from keras.utils import np_utils from…