Top new questions this week:
|
I am trying to build a text classifier with 47893 classes and 1.3 billion (1,302,687,947) data samples. What would be the best classifier to build with such kind of data? Each data label will contain …
|
In an experiment involving the comparison of classification algorithms, how can I assess whether there are statistically significant differences between the analyzed models? For example, the following …
|
I’m trying to recreate this paper with code but without image data. My data is about users. I expected a simpler SKLearn type of usage but it is not. Can someone please provide a simpler example …
|
Typically the definition I see for the $Q$ and value functions is $$ Q^\pi(s_t, a_t) = \mathbb{E}_\tau\left[\sum_{t’=t}^T\gamma^{t’-t}r(s_{t’}, a_{t’})\ |\ s_t, a_t\right] \\ V^\pi(s_t) = \mathbb{E}_\…
|
As part of a statistical learning research paper I am collaborating on, I am running/fitting two hundred sixty thousand different LASSO Regressions on the same number of different randomly generated …
|
I have fit n LASSO Regressions on n different data sets (the ‘datasets’ object is an R list of length n where each element is a data.table which is a light and fast data frame from the data.table …
|
I’m CS student. I’m just getting started in data science and machine learning. Can i use laptops with integrated graphics card in the data science and machine learning projects? Will pytorch and …
|
Greatest hits from previous weeks:
|
I am new to pytorch and started with this github code. I do not understand the comment in line 60-61 in the code …
|
I am trying to convert a list of lists which looks like the following into a Pandas Dataframe …
|
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 am trying to run SVR using scikit-learn (python) on a training dataset that has 595605 rows and 5 columns (features) while the test dataset has 397070 rows. The data has been pre-processed and …
|
I have written the following code for a neural network to perform regression on a dataset, but I am getting a ValueError. I have looked up to different answers and …
|
I want to compute the precision, recall and F1-score for my binary KerasClassifier model, but don’t find any solution. Here’s my actual code: …
|
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 wonder whether there are any differences between using text-davinci-003 with the Azure API vs. with the OpenAI API.
|
I am facing reproducibility issues on my DNN (Tensorflow, Keras) models when using different GPU cards. For example, when I use two a100 cards, I would be able to reproduce my results. If I use one …
|