Questions tagged [multiple-input]

74 questions
1
vote
1 answer

Multiple inputs - trying to send several request (http method: PUT)

I want to send different JSONs to an endpoint: {{URL_API}}/products/{sku} I need to update several information related to different products so i need to specify the product within the endpoint, i mean, i.e: If you access this particular endpoint:…
JustToKnow
  • 785
  • 6
  • 23
1
vote
1 answer

Multiple RTSPs receive method

I am trying to code a project which I have at least 20 rtsp CCTV URL going to access at same time. I tried to use ffmpeg to reach out my goal via multiple input method. However, there is a problem. ffmpeg -i URL_1 -i URL_2 - The command above is…
HCCY
  • 91
  • 1
  • 9
1
vote
1 answer

K.function for multiple input model keras

I'm trying to compute the gradients of the output with respect to the input, which can be called the sensitivity analysis of my model. I'm using keras 2.2.4 backed by tensorflow 1.13.1. Here is the code #signal_x shape (88, 50500, 1) #signal_x…
Maystro
  • 2,907
  • 8
  • 36
  • 71
1
vote
1 answer

Data generator in a NN with multiple inputs

I am training a Neural Network (U-net) in Keras with two inputs and one output. The first input is an Array (image) and the second one a single value. input_img = Input(input_size, name='input_image') input_depth = Input((1,),…
asabater
  • 94
  • 1
  • 9
0
votes
0 answers

How to get GRAD-CAM visualization maps for multi-input models?

I am training a model with two inputs (imaging data) and want to plot GRAD-CAM to visualize the activation maps. I tried to do this by following this example in Keras: https://keras.io/examples/vision/grad_cam/ While doing this for the multi-input…
Dushi Fdz
  • 161
  • 3
  • 22
0
votes
0 answers

Data preparation for multiple input Model Tensorflow

I have a project with TensorFlow and I am struggling with the preparation in double input data. I hope I can recieve your assist from this problem. So I will present my code here: #input data import os, cv2 train_path = r"..\Dataset\Train" val_path…
0
votes
0 answers

Wordpress Metabox doesnt save multiple input values

Hi i have a metabox that works when i want to save value as text but when i use input file and make it multiple it doesnt save the values for me to use it in single post . whaats the problem ? this is my code function diwp_custom_metabox(){ …
0
votes
0 answers

Encounter a" ValueError: Exception encountered when calling layer 'model_11' (type Functional)." while training neural network

I am writing a neural network model trained by both categorical parameters and numerical parameters. What i did is using embedding method to categorical parameter than combine the result with numerical parameter before i put them all into the…
0
votes
1 answer

Spring Cloud Data Flow : Sample application to have multiple inputs and outputs

Spring Cloud Data Flow : Sample application to have multiple inputs and outputs. Can anyone have a sample application to demonstrate spring cloud data flow with multiple inputs and outputs support
0
votes
1 answer

Cloning a div tag while also changing id attributes of it elements using JavaScript (Multiple elements )

I am looking to clone a div while also changing id's of the elements inside the mentioned div The code i am using clone the div is
0
votes
1 answer

How can I have multiple duplicate input layers from the first input layer in tensorflow library?

I want multiple duplicate input layers from the first input layer. So that I don't have to send the input to the fit function twice. Image
mohammad
  • 3
  • 6
0
votes
0 answers

R Programming - RNN (trainr()) - How to use two inputs on the model to predict stock prices?

I wrote the following code for prediction of the stock market and it is working properly when I use the Adjusted Close Price as input and try to predict the next day Adjusted Close Price. The file "VALE3.SA.csv" is the historical data from Yahoo…
0
votes
0 answers

Is there a way to train a neuronal network (LSTM model) with multiple datasets in order to do time series forecasting?

I want to do predictions with a LSTM model, but the dataset isn't a single file, it's composed with multiple files (for example 3 Excels). I've already checked that if you want to deal with a time series forecasting problem you have to prepare your…
Duktti
  • 1
0
votes
1 answer

How do I get around "ValueError: not enough values to unpack"?

I'm working on a program that works like so: It asks for 2 inputs at once from the user, both of them are strings. If 2 strings are given, it prints "Yes". If only one string is given, it assumes the other one as "1" and prints "Maybe". If nothing…
0
votes
1 answer

Input a string and an integer on the same line separated by a space

I am trying to make a mini game where you input a command about what to do, and you need to input your since most of my inputs will look like this:atk 1 or:health 1 The input must in one line, but there are commands that don't have a number after…
Jack C
  • 1
  • 1