python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Changing RGB channel intensities using Keras ImageDataGenerator
I have been trying to augment my around 360 images while training a model. This is how the code looks like
img_data_gen_args = dict(rotation_range=90,
width_shift_range=0.3,
...
Dan Py
Votes: 0
Answers: 1
How to do k-Fold Cross Validation with tf.data.Dataset API?
It easy to do k-Fold Cross Validation by using scikit-learn package. There we separately use data and labels. However, here combine data and labels before feeding into model. like:
tf.data.Dataset.fr...
Ahmad
Votes: 0
Answers: 0
Fixing memory leak in tensorflow2 during loading the model
I am new to tensorflow-2 and I am experiencing a memory leak in my object detection application. I was able to track the section which causes the issue.
class TensorflowObjectDetector:
def __init...
Priyamal
Votes: 0
Answers: 1
WHY tf.keras.layers.Conv2D gives different results at each run
I am trying to reproduce my code from online Jupyter Notebook (COURSERA) to my own local environment (Anaconda 3 Jupyter with CUDA installed)
All Codes are exactly same, and was working fine online
I ...
Lingxiao Gao
Votes: 0
Answers: 1