1,716 questions
Tooling
0
votes
0
replies
40
views
Fast keypoint annotation tool
I’m currently working on annotating a human pose dataset (specifically of people swimming) and I’m struggling to find a tool that fits my workflow.
I’m looking for a click‑based labeling workflow, ...
Advice
0
votes
1
replies
56
views
SLEAP model training question and communicate
I am currently working on a project focused on automated computer vision-based behavior recognition for captive dolphins. I would like to ask about your experience using SLEAP for model training—...
Advice
0
votes
2
replies
80
views
How to train a text datasets?
Everyone!!
I'm a BSIT student and currently in a development of a capstone project which is a translation app which focuses on the 2 major languages in the Philippines which is Cebuano and Tagalog
I ...
2
votes
1
answer
94
views
skforecast insample predictions
Using skforecast, it's straightforward to perform out-of-sample predictions starting from the dates in the last_window_.index of a ForecasterRecursive object. However, I’m unable to find a clear ...
0
votes
1
answer
124
views
AttributeError: 'list' object has no attribute 'to' (samples are actually a Tensor) [closed]
EDIT:
I'm training a model using a custom dataloader. The outcome from the dataloader is a list of tensors which cannot be processed by the main model because I have defined the sampler as samples = ...
2
votes
1
answer
73
views
plot CART tree using a new dataset
I am a first-time CART user, and using the approach outlined in https://rpubs.com/camguild/803096 , I first split my data into two equally-sized training and test datasets. Next, I fit a CART on the ...
0
votes
0
answers
74
views
lstm-unicharset file is unable to be created during tesseract training
I am trying to fine-tune an Optical Character Recognition (OCR) model on Tesseract's provided tesstrain repository for Japanese . I tried encoding the bash commands into Python in VSCode as I wanted ...
0
votes
1
answer
357
views
Validation raises CUDA Out Of Memory Error despite training being fine
I am trying to train a model for spell check errors and corrections using T5-small model in colab notebook using T4 GPU. Initially I started with 10k reviews but gradually reduced it to 2k since I was ...
6
votes
3
answers
6k
views
How to fix the transformer installation issue?
I am trying to train a T5 model based on spellcheck by providing it with a sample csv file in google colab. Initially I ran the code with my personal device (python locally installed) and it executed ...
1
vote
0
answers
101
views
Error When Using Batch Size Greater Than 1 in PyTorch
I'm building a neural network to predict how an image will be partitioned during compression using VVC (Versatile Video Coding). The model takes a single Y-frame from a YUV420 image as input and uses ...
0
votes
1
answer
54
views
Train LSTM for time series with varying lengths
I'm training a LSTM for time series prediction, where data comes from sensors at irregular intervals. I'm using the last 5 min data to predict the next value, but some sequences are larger than others....
-1
votes
1
answer
69
views
Keyboard detection algorithm
I am working on an algorithm for detecting keys and keyboard body from an image. The model of the keyboard is known, so a blender env. has been created to generate images with random lighting, angle, ...
0
votes
0
answers
74
views
How can I get more images after augmenting each image?
I'm new to tensorflow. I want to generate more images after image augmentation but images and labels are (10, None, 400, 400, 3) and (10, None, 1) respectively and I guess it artifically count as 1 ...
1
vote
0
answers
52
views
Low Accuracy on MNLI Validation Set Using Hugging Face DistilBERT Model
I'm encountering low accuracy (7.90) when evaluating my Hugging Face DistilBERT model on the MNLI validation set. I suspect that I might not be training or preparing the model correctly. Could someone ...
2
votes
0
answers
70
views
kernel died when I run : dataset = Dataset.from_dict(data_dict)
I am fine-tuning sam model for my dataset containing train_images and train_masks. I am able to create dict, but when calling last command i.e. to load dataset from dict, kernel dies. It happened ...