Skip to content Skip to sidebar Skip to footer
Showing posts with the label Neural Network

Performing 1d Convolution Using 2d Kernel In Keras

I am currently working on a CNN network, in which i want to apply a 2d kernel on a image, but it on… Read more Performing 1d Convolution Using 2d Kernel In Keras

Tensorflow Crash With Cudnn_status_alloc_failed

Been searching the web for hours with no results, so figured I'd ask here. I'm trying to ma… Read more Tensorflow Crash With Cudnn_status_alloc_failed

Cost Function Outputs 'nan' In Tensorflow

While studying the tensorflow, I faced a problem. The cost function output 'nan'. And, if… Read more Cost Function Outputs 'nan' In Tensorflow

Patch Based Image Training And Combine Their Probability From An Image

Firstly, I have implemented a simple VGG16 network for image classification. model = keras.applicat… Read more Patch Based Image Training And Combine Their Probability From An Image

Scikit-neural_network Has Trouble With Input Data

I'm trying to train some neural network using sknn. I have preprocessed my data through a panda… Read more Scikit-neural_network Has Trouble With Input Data

Adding A Constant To Loss Function In Tensorflow

I have asked a similar question but no response. So I try it again, I am reading a paper which sugg… Read more Adding A Constant To Loss Function In Tensorflow

Problems While Using Scikitlearn's Neural Network Implementation

I am trying to implement image processing using Neural Network implementation given by Scikit Learn… Read more Problems While Using Scikitlearn's Neural Network Implementation

Neural Network Backpropagation Algorithm Not Working In Python

I am writing a neural network in Python, following the example here. It seems that the backpropagat… Read more Neural Network Backpropagation Algorithm Not Working In Python

Tensorflow: _variable_with_weight_decay(...) Explanation

at the moment I'm looking at the cifar10 example and I noticed the function _variable_with_weig… Read more Tensorflow: _variable_with_weight_decay(...) Explanation

Mnist Data Classification Not Working On Google Colab

I am trying to train the MNIST digit dataset using deep MLP on Google colab. I have reshaped the in… Read more Mnist Data Classification Not Working On Google Colab

Transformer Model Not Able To Be Saved

I'm trying to follow this tutrial https://colab.research.google.com/github/tensorflow/examples/… Read more Transformer Model Not Able To Be Saved

How To Set Up Lstm Network For Predict Multi-sequence?

I am learning how to set up the RNN-LSTM network for prediction. I have created the dataset with on… Read more How To Set Up Lstm Network For Predict Multi-sequence?

Deep Autoencoder In Keras Converting One Dimension To Another I

I am doing an image captioning task using vectors for representing both images and captions. The c… Read more Deep Autoencoder In Keras Converting One Dimension To Another I

Keras Masking For Rnn With Varying Time Steps

I'm trying to fit an RNN in Keras using sequences that have varying time lengths. My data is in… Read more Keras Masking For Rnn With Varying Time Steps

Is It Possible To Save A Trained Layer To Use Layer On Keras?

I haven't used Keras and I'm thinking whether to use it or not. I want to save a trained la… Read more Is It Possible To Save A Trained Layer To Use Layer On Keras?

Keras' Sequential Vs Functional Api For Multi-task Learning Neural Network

I would like to design a neural network for a multi-task deep learning task. Within the Keras API w… Read more Keras' Sequential Vs Functional Api For Multi-task Learning Neural Network

Dropout Entire Input Layer

Suppose I have two inputs (each with a number of features), that I want to feed into a Dropout laye… Read more Dropout Entire Input Layer

Pytorch: Different Forward Methods For Train And Test/validation

I'm currently trying to extend a model that is based on FairSeq/PyTorch. During training I need… Read more Pytorch: Different Forward Methods For Train And Test/validation

How To Use Model After Trained In Tensorflow (save/load Graph)

My tensorflow version is 0.11. I want to save a graph after training or save something else which … Read more How To Use Model After Trained In Tensorflow (save/load Graph)

Raising To A Square With Tensorflow With A Dataset Class

I want to write a neural network which look for a x^2 distribution without a predefined model. Prec… Read more Raising To A Square With Tensorflow With A Dataset Class