Questions tagged [multi-output]
The multi-output tag has no summary.
39 questions
2 votes
1 answer
50 views
Multilabel Classification with fixed number of outcomes
In multiclass classification, typically we have a dataframe that looks like ...
0 votes
1 answer
218 views
Keras multiple inputs not working when passing a dictionary in model.fit
I am working on a model with multiple inputs and outputs. Passing the outputs as dictionary in model.fit works fine, but if I want to do the same with the inputs, I always get the following error: <...
1 vote
1 answer
526 views
Whats the advantage of single target neural network over multi target neural network?
So right now I have made 2 neural networks to predict x and y coordinates separately. One for x, and one for y. I'm looking for a reason to backup my assignment. I have search for this and most of the ...
0 votes
1 answer
82 views
using forecast values from a univariate model as Input to linear regression?
I have weekly time series data for the last 2 years with variables "week", "marketing_spend", "web_traffic", and "revenue" ...
1 vote
1 answer
999 views
Grid-search for a multi-output regression task using Scikit-learn's API
I'm trying to make a model for a multi-output regression task where $y=(y_1, y_2,..., y_n)$ is a vector rather than a single scalar. I am using Scikit-learn's ...
0 votes
1 answer
132 views
Can ML or DL Predict output vector target?
I have output data as follows: Then I encode into : Then I convert into vector: The input of model is word embedding of sentence. My question is that: Can ML or DL return a vector output above? If ...
-1 votes
1 answer
175 views
How to show combined overall accuracy for a multi-ouput model in Keras?
I have a model of the following structure. It has 6 outputs. Given an image, the model predicts classes of 6 different components from the image. The metrics I used are: As you can see it outputs an ...
1 vote
1 answer
2k views
How to calculate a single accuracy for a model with multiple outputs in Keras?
Consider the following, rather simple, model: ...