Submitted by Optoplasm t3_10wffmg in MachineLearning
I have had a lot of fun and success using YOLO and other image object detection models on 2D or 3D image data for personal projects.
I am now working on some projects where I need to scan long periods of timeseries data and find specific waveforms that are variable durations.
Are there techniques or models that function like YOLO that can scan large amounts of data and only highlight specific segments of interest as specific classes?
If it doesn’t exist, I wonder how well the underlying CNN architecture of YOLO would translate to 1 dimensional CNN architectures.
Any info is appreciated, thanks!
vannak139 t1_j7puon5 wrote
How you would approach this really depends on a few things. The most important question is, do you have the target data you want to get out of the network? It is possible, in some cases, to highlight regions of interest using only sample-level classification data. However, this usually is very context specific. If you have target data where these regions are already specified, a normal supervised learning method for wave forms should be perfectly workable, and will likely use 1D CNNs.