Skip to content
Advertisement

Tag: tensorflow

CuDNN crash in TF 2.x after many epochs of training

I’m currently becoming more and more desperate concerning my tensorflow project. It took many hours installing tensorflow until I figured out that PyCharm, Python 3.7 and TF 2.x are somehow not compatible. Now it is running, but I get a really unspecific CuDNN error after many epochs of training. Do you know if my code is wrong or if there

Can CNN do better than pretrained CNN?

With all I know. pretrained CNN can do way better than CNN. I have a dataset of 855 images. I have applied CNN and got 94% accuracy.Then I applied Pretrained model (VGG16, ResNet50, Inception_V3, MobileNet)also with fine tuning but still i got highest 60% and two of them are doing very bad on classification. Can CNN really do better than

How to reproduce the Bottleneck Blocks in Mobilenet V3 with Keras API?

Using Keras API, I am trying to write the MobilenetV3 as explained in this article: https://arxiv.org/pdf/1905.02244.pdf with the architecture as described in this picture: For that, I need to implement the bottloneck_blocks from the previous article https://arxiv.org/pdf/1801.04381.pdf. See image for architecture: I managed to glue together the Initial and final Conv layers: Where the bottleneck_block is given in the next

coursera assignment python file compiling error

i have a coursera assignment in jupyter notebook the problem is that in jupyter it runs correctly but when i submit it fail and shows this error : Can’t compile the student’s code. invalid syntax (student_solution.py, line 23) the task is : In this exercise you’ll try to build a neural network that predicts the price of a house according

Implementing a minimal LSTMCell in Keras using RNN and Layer classes

I am trying to implement a simple LSTMCell without the “fancy kwargs” defaultly implemented in the tf.keras.layers.LSTMCell class, following a schematic model like this. It doesn’t really have a direct purpose, I would just like to practice implementing a more complex RNNCell than the one described here in the Examples section. My code is the following: However, when I tried

Can’t pip install Tensorflow ‘msvcp140_1.dll’ missing

I am currently trying to pip install tensorflow, which works but after I install it, and then import it into my python module via import tensorflow as tf I get following error message: I installed the msvcp140_1.dll and put it into C:UsersUserAppDataLocalProgramsPythonPython37 which is contained in my path environment variable. As you can see I am using Python 3.7 as

Advertisement