Recently Active Questions
12,769 questions
1
vote
1
answer
778
views
How to scale all positive continuous reward?
My RL project has all positive continuous rewards for every step and the goal is to have the maximum cumulative reward (episodic reward). The problem is that the rewards are too close and all between ...
0
votes
3
answers
307
views
How to encode categorical data for a convolutional model?
Is there a way to encode categorical nominal (no ordered) data to be used in CNN models?
Let's say I need to create a 1D CNN model for categorization of time series but the values are not measurements,...
0
votes
1
answer
60
views
Is knowing the class of probability density function mandatory for explicit density estimation?
In deep learning, models may learn the probability distribution that generated the dataset. Observe the following paragraph from Chapter 5: Machine Learning Basics from the book titled Deep Learning (...
1
vote
2
answers
628
views
ML-based algorithm/software for solving a sudoku puzzle a human way
I am a new contributor and have no experience in ML, so this first question is a general one.
I've developed a sudoku solving app and since then I wonder whether it would be feasible to design a ML-...
0
votes
1
answer
116
views
What would be a good cost function based on both saliency-maps and labels?
I have a number of input samples where: every input sample has both a label and a reference-map. This reference-map gives a score to each location of an input sample. The score defines how much this ...
0
votes
0
answers
14
views
How to train a neural network with a non-differentiable linear program in the loss?
I am currently trying to train a neural network to predict certain input parameters for a linear program based on an input dataset of system measurements related to these parameters. The workflow is ...
0
votes
1
answer
166
views
Can you make Q&A language model stay on topic?
I’m thinking of fine-tuning a pre-trained language model for a Q&A task. More specifically, I’d like to fine-tune the model on a single chapter in a classic college textbook. Afterward, the reader ...
0
votes
0
answers
4
views
Python GraphRag retrieval: Is using the embedded user's question when querying the data from graph good or bad?
I'm following a tutorial about using GraphRAG Python library to answer user's questions about actors who acted in the movies that match some specific description. The approach is to embed the user's ...
1
vote
1
answer
159
views
Kernels on a trained CNN seem random
I saw this question and am having the same issue: kernels on a trained CNN look random.
I am using Pytorch to train a CNN, and based my code on examples that train the MNIST characters: ~50 ...
1
vote
1
answer
307
views
How does Horn–Schunck method for Optical Flow solve the aperture problem?
This is regarding the details stated in Wikipedia.
I am reading optical flow in Computer Vision. I understood the Horn–Schunck method as such, but did not get how it is related to the aperture problem,...
3
votes
1
answer
216
views
What is asymmetric relaxation backpropagation?
In Chapter 8, section 8.5.2, Raul Rojas describes how the weights for a layer of a neural network can be calculated using a pseudoinverse of the sigmoid function in the nodes, he explains this is an ...
2
votes
2
answers
142
views
Why would someone want to simulate emotional desicion-making within an AI?
The Mario Lives! video (and its follow-up video, Mario Becomes Social!) showcases an AI unit that is able to simulate emotional decision-making within a virtual world, and can enter into "emotional ...
0
votes
0
answers
10
views
why aren't my Training and validation losses do not reduce when fine-tuning ViTPose from huggingface
I am trying to fine-tune a transformer/encoder based pose estimation model available here at: https://huggingface.co/docs/transformers/en/model_doc/vitpose
When passing "labels" attribute to ...
0
votes
0
answers
5
views
Synthetic to real image conversion for Pose Estimation
i have synthetic images of poses and that data is being used for trainig a pose estimatioon model, what i want is that i want to convert it to real images, meanig that the people appear real in it, i ...
0
votes
0
answers
14
views
MATLAB implementation of Manifold-PBO algorithm producing different Monte Carlo simulation convergence results than paper
I'm trying to replicate the results from a paper that uses the Manifold-PBO algorithm in a Monte Carlo simulation, but my implementation is producing significantly different convergence curves ...