Unanswered Questions
4,040 questions with no upvoted or accepted answers
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
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 ...
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 ...
0
votes
0
answers
4
views
How to use my neo4j KG in Dify?
I am trying to build a RAG with Dify, and as it is expected to handle hopping questions.
As a POC, I try to use Illama to parse my documents and build a knowledge graph (KG) in my local neo4j ...
0
votes
0
answers
8
views
Machine Learning model best design setup
I'm looking for the best design based on the following requirements. I'd appreciate an explanation of a possible high level route I can follow.
I need to deploy an Image classifier that takes in an ...
0
votes
0
answers
9
views
Why is DecisionTree using same feature and same condition twice
When trying to fit scikit-learn DecisionTreeClassifier on my data, I am observing some weird behavior.
x[54] (a boolan feature) ...
0
votes
0
answers
23
views
Model or LLM that is fast enough to describe an image in detail
The heading might be little weird, but let's get on the point.
I made an chat-bot like application where user can upload video and cant chat/ask anything about the video content, just like we talk to ...
0
votes
0
answers
9
views
Forward chaining proves D but backward chaining does not – is my solution correct?
I came across this logic exercise, and I would like to confirm if my solutions are valid.
Here is the setup:
Fact base: {A}
Rule base:
R1: A → B
R2: B → C
R3: E → D
Goal:
Add one rule such that D can ...
0
votes
0
answers
18
views
Best neural network algorithms/architectures for generating synthetic sequences of tuples of words
I would like to generate sequences of tuples using a neural network algorithm such that the model trains on a dataset of sequences of tuples and generates synthetic sequences of tuples. Each tuple <...
0
votes
0
answers
8
views
How can I integrate LangSmith for observability in a multi-agent Autogen (AG2) GroupChat setup?
I'm working on a document analysis service using Autogen (AG2). The service has two main agents: a reader and an analyzer. The reader splits the document into chunks and sends them to the analyzer, ...
0
votes
0
answers
6
views
Seeking advice for MLP architectures and training strategies for texture reconstruction (mipmap upscaling) focused on residual compression
I am working on a project involving texture compression and reconstruction, specifically targeting mipmap upscaling for game development assets. I'm encountering challenges in achieving the desired ...
1
vote
0
answers
20
views
Why does MARL require full history while single-agent RL (Sutton \& Barto) uses state-based returns?
In single-agent RL (as in Sutton & Barto's framework), the expected return is defined from the current state $s_t$:
$$
G_t = R_t + R_{t+1} + ....
$$
In the Bellman equation, $V(s_t)$ depends only ...
1
vote
0
answers
20
views
Clear instructions on how to convert a model from huggingface to gguf format. The internet will love it!
Since many hours Im not able to convert the pytorch_model-00001-of-00003.bin to GGUF.
I want to convert this LLM https://huggingface.co/LeoLM/leo-hessianai-13b-chat/tree/main
Please help me. All the ...