Top new questions this week:
|
I’m building a logistic regression model to predict the credit risk of lending company customers. I’m using dataset from kaggle : www.kaggle.com/datasets/ranadeep/credit-risk-dataset/code …
|
Let’s imagine this list: corpus = [‘cat’,’banana’,’dog’,’horse’,’apple’,’tiger’,’snake’] I am looking for a way to build a vectorizer with dynamic clustering. I’m …
|
I know that for MinMaxScaler we should apply it to train data, then apply it, with the obtained parameters, over test data: …
|
I am solving a video classification problem. There are 9 classes in total. At first I took ResNet as a feature extractor, this gave me 0.74 accuracy. Then I changed ResNet to EVA (I also tried Swin), …
|
I have a software which takes 5 input numbers and outputs a number, deterministically. I want to try and mimic this software precisely with a neural network, but I am finding it very difficult. The …
|
I am having difficulty achieving the same result as in sklearn while implementing linear regression model from scratch. After adjusting the learning rate, I obtained an AUC of 0.694 for this binary …
|
I have been studying about information retrieval and recommender systems. While reading about it I found that accuracy not a useful measure in information retrieval. I understand that, accuracy might …
|
Greatest hits from previous weeks:
|
Suppose I have a 5*3 data frame in which third column contains missing value 1 2 3 4 5 NaN 7 8 9 3 2 NaN 5 6 NaN I hope to generate value for missing value based …
|
I try to visualizing multiple logistic regression but I get the above error. I’m practicing on red wine quality data set from kaggle. Here is a full traceback: …
|
I have noticed that such terms as model hyperparameter and model parameter have been used interchangeably on the web without prior clarification. I think this is incorrect and needs explanation. …
|
I’m starting to learn Machine learning from Tensorflow website. I have developed a very very rudimentary understanding of the flow a deep learning program follows (this method makes me learn fast …
|
I have two data frames df1 and df2 which look something like this. …
|
I have two data frames (Action, Comedy). Action contains two columns (year, rating) ratings columns contains average rating with respect to year. The Comedy data frame contains the same two columns …
|
In the MNIST For ML Beginners they define cross-entropy as $$H_{y’} (y) := – \sum_{i} y_{i}’ \log (y_i)$$ $y_i$ is the predicted probability value for class $i$ and $y_i’$ is the true probability …
|
Can you answer these questions?
|
I want to add punctuation to a long text (youtube transcript) before using a Transformer pipeline for summarization. I have found this answer here: original answer thus I have tried: …
|
I want to build a neural network classifier which has as inputs array of dimension (24, 2, 20001) and as outputs array of dimension …
|
I have the following dataframe: …
|