I need to link two containers, my main container contains django and the secondary tensorflow, I am creating the two containers with docker-compose, both are created correctly, but I need to enter the container with django and when running pytho...
I am installing tensor flow for python 3.6. I'm installing it with the Anaconda method ( link ) when trying to execute this command:
C:> conda create -n tensorflow python=3.5
I get this error:
"conda" no se reconoce como un comando in...
I wanted to know how I can install nvidia-docker in windows, since in its documentation, it only has support for linux, if there is a guide out there that I have not found.
link
I want to train my own neural network but I can not execute the example. I execute the following command:
python classify_image.py
And I get the following:
Traceback (most recent call last): File "classify_image.py", line
46, in
...
I want to use tensorflowjs in the terminal and I copy the code from the npm page and I get an error:
(function (exports, require, module, __filename, __dirname) { import * as tf from '@tensorflow/tfjs';...
I'm trying to start the tensorflow tensorboard. This based on a simple model. But when executing
tensorboard --logdir output/
I get this error:
The image shows that tf.estimator is not installed, but check that part, and if it is...
I'm trying to run keras of a github code
link
I get problems on the line that matters Sequentials .
from keras.models import Sequential
The error that appears to me:
File "C:\Users\adri_\Anaconda2\lib\site-packages\ke...
I'm trying to do classification but I have this error
import os,cv2
import numpy as np
from sklearn.utils import shuffle
from tensorflow.python.keras.preprocessing.image import ImageDataGenerator
from sklearn.model_selection import train_test_...
I tried to create weights for a CNN automatically using a for loop and a dictionary in python. The problem is that the size of W1 has to be equal to the size of W2 ... But I can not find a way of doing it. The size shape_1 is the output of nod...
I am trying to calculate the gradient with tf.GradientTape.
When I try to do it using as inputs the loss and Model.variables the result that returns me in an array of None.
what am I doing wrong?
The tensorflow version I use is 1.9.
Then I le...