Top new questions this week:
|
Reading the InstructGPT paper(which seems to be what ChatGPT was built off of), I found this equation for the reward function. However, I’m struggling to understand how this equation is used to …
|
Question Description We are performing a lot of timeseries queries, these queries sometimes result in issues, they are usually performed through an API (Python) and sometimes result in complete …
|
I’m developing a binary classification tree and having some touble interpreting my training/validation curves. I used the CART algorithm with information gain as my splitting criterion. The training …
|
Just wanted to know if the value we get by passing, say, random.normal(shape=(3,2)) in the Tensorflow, etc, are normally distributed or if they are randomly chosen …
|
I am a medical doctor trying to make prediction models based on a database of approximately 1500 patients with 60+ parameters each. I am dealing with a classification problem (mortality at 1, 3, 6 and …
|
In this article, the author creates a graph (at the end of the post) from the embeddings of different words found by transformer model. I would like to do a similar thing for a convolutional neural …
|
Some answers given by ChatGPT are just beyond ridiculous, especially in Chinese (I am Chinese so I ask ChatGPT in both Chinese and English). Here is an example, The last answer …
|
Greatest hits from previous weeks:
|
I am trying to understand the key differences between GBM and XGBOOST. I tried to google it, but could not find any good answers explaining the differences between the two algorithms and why xgboost …
|
After I developed my predictive model using Random Forest I get the following metrics: …
|
Which is better for accuracy or are they the same? Of course, if you use categorical_crossentropy you use one hot encoding, and if you use …
|
I was watching Machine Learning A- Z from SuperDataScience but when I was doing below code sample: …
|
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 …
|
Validation-split in Keras Sequential model fit function is documented as following on keras.io/models/sequential/ : validation_split: Float between 0 and 1. Fraction of the training data …
|
Can anyone give me some examples where precision is important and some examples where recall is important?
|
Can you answer these questions?
|
I am running a DNN model (YOLOv7) on a GPU (GeForce 3080 TI) to detect objects in a video stream. The memory usage on my task manager shows that I am using up to 2GB of my RAM! The GPU Ram usage is …
|
Twitter, with their API, including the free tier, has been a go-to source for collecting large samples of texts expressing sentiment on various topics of interest. I just started a project in December …
|
We are trying to give a model to collaborators but would like to protect the IP. What are some ways to encrypt/hide/compile the definition when sharing a trained model?
|