dr-alberto

Results 5 comments of dr-alberto

The convention in Django is to store all the templates in /template folder, try this and check if works for you

That's because the userName variable is undefined, probably because you don't login. You should create an authentication wall in order to implement this

I'm having the same issue. When I try: `python -m pip install tensorflow-text` Outputs this: `Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple ERROR: Could not find a version that satisfies the requirement...

Same problem as well. In my case I was using keras sub classing for creating the model.

## **SOLUTION FOR THIS ISSUE** In my case I'm subclassing the keras Model class, just as an example: ``` class Basic(tf.keras.Model): def __init__(self): super().__init__() self.dense1 = tf.keras.layers.Dense(32, input_shape=(10,), activation='relu') self.dense2...