Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
0 answers
26 views

So, I've been struggling with this problem for a couple of months now. I have a dataset of protein sequences, which I have encoded three target labels across each sequence for, and I am training an ...
Alana Monks's user avatar
3 votes
0 answers
77 views

I'm working on an image captioning project using a simple CNN + LSTM architecture, as required by the course I'm studying. The full code is available here on GitHub (note: some parts are memory-...
Malihe Mahdavi sefat's user avatar
0 votes
0 answers
23 views

I have 3 models and I want to create a hybrid model with these. I put my first models when I want to call the input of this I get an error. This is my code: def memory_model(input_shape, num_class, ...
Haniye amir's user avatar
0 votes
0 answers
62 views

I’ve been building a reinforcement learning trading agent using a synthetic sine wave as the price series — basically the simplest dataset I could imagine to test whether an agent can learn to buy low ...
Oleg Bizin's user avatar
0 votes
0 answers
76 views

I followed the steps for fine-tuning Tesseract for handwriting recognition. I have the character images and the corresponding box files. Then I generated the .lstmf files, followed by the lstm_train....
TestING's user avatar
0 votes
1 answer
37 views

My training set has dimensions [7000, 2], but my output has single number in it. I want to configure the model to understand that "I want one output for each row in X_train", but I don't ...
Baron Yugovich's user avatar
0 votes
0 answers
123 views

I am trying to convert pytorch LSTM model to DLC. The original pytorch model is of 200 MB. I also converted it to traced TorchScript model, scripted TorchScript model and ONNX model. All three are of ...
MnM's user avatar
  • 1
0 votes
1 answer
47 views

I'm trying to make a LSTM model to predict sign language sentence with this format of json file. This json file is containing the coordinates information of 21 hand landmark joints for each frames and ...
daeseng's user avatar
0 votes
0 answers
52 views

I am unclear how an LSTM layer would interface with a fully connected layer and what this would look like visually as per the puthon code below. I am trying to understand and visualize this code. I'm ...
Steven Dascoli's user avatar
1 vote
1 answer
87 views

I'm currently using Flax for neural network implementations. My model takes two inputs: x and θ. It first processes x through an LSTM, then concatenates the LSTM's output with θ — or more precisely, ...
Dan Leonte's user avatar
0 votes
0 answers
74 views

Im training a model and in the first training, no matter how many epochs (10,20,30…) i trained the model, everything looks great! the acc was increasing and the loss was decreasing as well. but when i ...
LOYINuts's user avatar
0 votes
0 answers
98 views

I have built a hybrid model that combines a Vector Autoregressive (VAR) model and a Long Short-Term Memory (LSTM) network. The VAR model is used to capture linear dependencies between macroeconomic ...
Thashikala Mendis's user avatar
0 votes
0 answers
62 views

I'm experiencing some issues with an LSTM model designed to perform "Audio Event Recognition" from a dataset of crime-related audio samples. The overall network seems to be working fine ...
Luca Domeneghetti's user avatar
0 votes
1 answer
124 views

when I add a masking layer in my model, it gives this error. works fine without the masking tho. If anyone can solve this, id be grateful ! been scratching my head for 3 days now. TensorFlow 2.17 def ...
Abdul Basit's user avatar
1 vote
0 answers
32 views

LSTM for the binary classification. Hi all, I am using LSTM to perform binary classification on time series data (normal, abnormal). I trained two models, one using a single LSTM layer and another ...
AI_user's user avatar
  • 11
0 votes
1 answer
40 views

I am working on blockchain transaction anomaly detection system and testing various models. Currently I am stuck on a LSTM autoencoder. I have preprocessed transaction data from ethereum network (used ...
Patryk Rossa's user avatar
0 votes
0 answers
267 views

I am just starting off with Tensorflow.Net (0.150.0) on .Net (8.0). I just created a basic sequential model and saved it successfully. However, I am unable to load it back as a Sequential model. I ...
Bhairav Thakkar's user avatar
0 votes
0 answers
125 views

I am implementing in PyTorch an LSTM model to predict if the closing value of a stock will go up or down in the next 5 and 10 minutes. Specifically, I am using 24 years of 5 minute data with 19 ...
user22615570's user avatar
0 votes
0 answers
31 views

I am working on a project using the Berka dataset, and I want to build a neural network to predict the loan status for accounts. The dataset contains multiple tables, and I want to avoid flattening ...
Dmitrii Ponomarev's user avatar
0 votes
0 answers
39 views

I use LSTM for classifying multi-label movie genres with Word2Vec as feature extraction; the model resulted in metrics as Test Loss: 0.3067, Test Accuracy: 0.5144 as illustrated in the figure. What is ...
Yas's user avatar
  • 29
1 vote
1 answer
402 views

I want to implement a neural network with multiple LSTM gates stacked one after the other.I set the hidden states to 0, as suggested here. When I try to run the code, I get JaxTransformError: Jax ...
Dan Leonte's user avatar
0 votes
0 answers
22 views

I am running a very simple multilayer LSTM network. I have set different transformations for the data, namely StandardScaler(), RobustScaler() and MinMaxScaler(). The code runs smooth and I get no ...
rurjais's user avatar
  • 21
0 votes
0 answers
65 views

I am trying to build a custom LSTM cell. I found many snippets online but none of them produces same result as torch lstm. For testing, I fix input size and number of layers to 1. Is there a known way ...
Al-Farouq's user avatar
0 votes
0 answers
232 views

I try to train my first LSTM regression model based on global average temperature data. The temperature is available for every month since January 1st, 1850. From what I've learned online, I feed 12 ...
binaryBigInt's user avatar
  • 1,724
1 vote
1 answer
138 views

Currently I am working on a timeseries data which looks like this click to see data The data consists of 5 companies, 15 products (each company has 3-5 products) and 6 different regions Goal To build ...
Arvind vasa's user avatar

1
2 3 4 5
123