Top new questions this week:
|
Would it be necessary to retrain the entire model if we were to perform fine-tuning? Let’s say we somehow got the GPT-3 model from OpenAI (I know GPT-3 is closed source). Would anyone with access to a …
|
I am building an NLP model which uses MEMM in order to tag parts of speech. My model uses history of two previous words and tags, and of the next word, alongside the current word and tag. I used those …
|
Every time I print the model summary it prints out the convlstm first and then batchnormalization at the end. …
|
I am working on a binary classification problem and am using sklearn’s logistic regression model and decision tree classifier. Somehow I am getting the exact same results and accuracy score on both. I …
|
In multi-Linear regression where we have a model of $y=X_1+X_2$ it’s a common practice (as I studied in my Master’s) to increase the dimensionality and try to use a model of $y=X_1+X_2+X_1 X_2$. Can …
|
I have 2 questions regarding the whole subject of the data set in machine learning and I would be happy to receive an answer 🙂 1.Why it would be improper to compute and use test set means ? 2.Why we …
|
Is there a general approach that the ROC curve can be used for to validate a model? My understanding is that we can use it to compare different threshold values to determine the best, or even see how …
|
Greatest hits from previous weeks:
|
I have 10 data frames pyspark.sql.dataframe.DataFrame, obtained from randomSplit as …
|
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 …
|
How many parameters does a single stacked LSTM have? The number of parameters imposes a lower bound on the number of training examples required and also influences the training time. Hence knowing the …
|
I am currently trying to open a file with pandas and python for machine learning purposes it would be ideal for me to have them all in a DataFrame. Now The file is 18GB large and my RAM is 32 GB but I …
|
I would like to compare one column of a df with other df’s. The columns are names and last names. I’d like to check if a person in one data frame is in another one.
|
What is the difference between Gradient Descent and Stochastic Gradient Descent? I am not very familiar with these, can you describe the difference with a short example?
|
I have a table in R. It just has two columns and many rows. Each element is a string that contains some characters and some numbers. I need number part of the element. How can I have number part? For …
|
Can you answer these questions?
|
I have scaled an original matrix A with sklearn‘s StandardScaler, resulting to a matrix S. I then partitioned the result into …
|
www.cnblogs.com/guo-xiang/p/8044624.html explains with a nice example the mechanics of Nested Cross Validation. In the picture, the example shows how to use Nested CV for hyperparameter …
|