python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Pytorch-> LSTM-> RuntimeError: input must have 3 dimensions, got 2
I'm facing error in LSTM input dimensions with following model code:
class Model(nn.Module):
def __init__(self, input_size, hidden_size, num_layers, num_keys):
super(Model, self).__init__()
se...
annonyos
Votes: 0
Answers: 1
Vision transformer binary classifier is only predicting one class
I wrote a code for a vision transformer to classify mammograms into benign and malignant. After training for 30 epochs, the model is, however, predicting only one class(benign). All the final predicti...

James Albert
Votes: 0
Answers: 0
huggingface transformers classification using num_labels 1 vs 2
question 1)
The answer to this question suggested that for a binary classification problem I could use num_labels as 1 (positive or not) or 2 (positive and negative). Is there any guideline regarding ...
user2543622
Votes: 0
Answers: 2
Plot Legends in a Classification Graph
I've plotted a 3-D graph in python, showing 3 features (say A, B, C)each coloured by the target variable "y_train", I want to add a legend to the graph to show related categories for each co...
Ali Ghadimi
Votes: 0
Answers: 1