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)
Using the encoder part only from T5 model
I want to build a classification model that needs only the encoder part of language models. I have tried Bert, Roberta, xlnet, and so far I have been successful.
I now want to test the encoder part on...
ls_grep
Votes: 0
Answers: 1
Does Batch Size matter if I only care about deploying and not training?
Gonna ask a newbie question...
If I finished training my model, or I am using trained model like YOLO. And I want to put the model on a robot that has a 6GB VRAM. In this case, do I need to concern ab...
user3084686
Votes: 0
Answers: 1
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
Joining the output of 2 Keras layers
I am trying to implement a joint model using Keras, and this is the architecture of the model.
However, I have difficulty in the concatenation of inputs from the subnetwork and the main network. The ...
ray
Votes: 0
Answers: 1