Problem Formulation #2252
Unanswered
semirelezovikj
asked this question in
Q&A
Replies: 1 comment 1 reply
-
This is indeed a transductive learning scenario, and therefore quite similar to our
I don' think there is any need to use an |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am writing seeking for help in the formulation of a problem.
I am working on a research project, where I have identified that it may benefit greatly to treat the problem as a graph. Namely, for a given scene, I am given information about participating agents in that scene. However, during the training stage I am only allowed to use information about a subset of the available agents in the scene. For validation, the prediction is made on agent-basis, rather than scene-basis.
Example: Let’s say a scene (the graph) has 30 total agents that influence each other. In the training phase, only ground truth for 5 of those agents can be used. Additionally, for the testing phase - a prediction must be made on agent-basis. This means that I cannot have a list of torch_geometric.data object representing the scenes (graphs), but rather must construct a graph every time I am given a single agent. Note: I am not interested to make a prediction for the unlabeled agents at all.
Graph: Entire Scene
Node: Agent
Node Features: Img, 3 dim vector
Possible way of formulating this:
The nn.module:
Passes img through resnet50 - output 2048 features`
The 3 dimensional vector agent_state_vector: Use the information for the current agent and all surrounding agent to construct a grpah. Pass an entire graph where node_features are agent_state_vector. Pass this through, let’s say SageConv. I am only interested in the result features of just one node (the current agent node).
Specify the labels in data.y for the 5 agents. For the unlabeled 25 agents, how would I go about omitting them from
data.y
? Is there an index property that states I am only interested and want to train against my subset of nodes?Beta Was this translation helpful? Give feedback.
All reactions