Top new questions this week:
|
Ok, this might seem a trivial question for some and it’s not even a question, more like a discussion. I read the rules and I believe it’s everything fine, so I’m gonna take my chances… Here’s the …
|
Say I have 1.000.000 user-ids and I choose to use the (signed) hashing-trick with a hash-vector length of 500.000. Wouldn’t that effectively just mean that half of the time, we would have two …
|
When dealing with classification for multiple classes present in the same sample, can the output layer have the form of one-hot encoding, but instead of only one hot, have multiple? That is, in case …
|
I am training a MLP on a tabular dataset, the pendigits dataset. Problem is that training loss and accuracy are more or less stable, while validation and test loss and accuracy are completely constant….
|
In Q-learning, Q is an array of expected rewards for (state, action) combinations. It seems to me the same result could be achieved while slightly simplifying the algorithm, if instead of associating …
|
I have a list of words and phrases (~3k items). What are my options to extract them from documents (~3M of job descriptions) with NLP? I do not have labeled data. For example my list of words and …
|
I have a basic sequential neural network built with TensorFlow. …
|
Greatest hits from previous weeks:
|
I am starting to learn CNNs using Keras. I am using the theano backend. I don’t understand how to set values to: batch_size …
|
I have a pandas data frame with several entries, and I want to calculate the correlation between the income of some type of stores. There are a number of stores with income data, classification of …
|
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 …
|
I got ValueError when predicting test data using a RandomForest model. My code: …
|
I am trying to perform k-means clustering on multiple columns. My data set is composed of 4 numerical columns and 1 categorical column. I already researched previous questions but the answers are not …
|
I am building a regression model and I need to calculate the below to check for correlations Correlation between 2 Multi level categorical variables Correlation between a Multi level categorical …
|
I do not understand the difference between the fit and fit_transform methods in scikit-learn. Can anybody explain simply why we …
|
Can you answer these questions?
|
I have a project to make a long term prediction (like 5 years) of electricity production by types of power plants (solor, wind, coal, nuclear etc.). I have access to time series data in MW [megawatts] …
|
I am using BERT to do multiclass text classification. The number of output classes I have to predict from is: 116 and there is high degree of class imbalance that I see. We have the following kind of …
|
Question: Why is my predictor value (continuous) perfectly correlated with my logit value (when testing logistic regression model assumptions)? Code: …
|