Questions tagged [pattern-recognition]

38 questions
3
votes
2 answers

Find repeating patterns in data

I have database of sequential events for multiple animals. The events are represented by integers so it looks something like: Animal A: [1,6,4,2,5,7,8] Animal B: [1,6,5,4,1,6,7] Animal C: [5,4,2,1,6,4,3] I can manually see that for each event 6…
Bram
  • 31
  • 2
3
votes
2 answers

Learn (common) grammar / pattern from set of sample strings?

So I currently have a text pattern detection challenge to solve at work. I am trying to make an outlier detection algorithm for a database, for string columns. For example let's say I have the following list of strings: ["abc123", "jkj577",…
user98969
3
votes
1 answer

Is pattern recognition the same as unsupervised learning? Is machine learning the same as supervised learning?

Firstly, here is the definition of a well-posed learning problem: A computer program is said to learn from experience E with respect to some task T and some performance measure P, if its performance on T, as measured by P, improves with…
2
votes
1 answer

Detecting synchronization cascades in time series

I am researching delayed synchronisation in a system of coupled oscillators. There is a one-way causal connection between the oscillators, which leads to the synchronisation events occurring in a rough sequence. When I plot this data a very clear…
derfred
  • 121
  • 1
2
votes
1 answer

Subsequence parttern matching for time series

I have a set of time series data (just like voice sequence data) with the pattern as shown in the first figure (theoretical data). The measured data is given as presented in the second figure. What I want to do is localizing/finding the subsequent…
2
votes
1 answer

Python dataframe iterate over rows

Dataset **Col1** **Col2** **Col3** dog Z st02 dog,cat Z st02 dog,bat,cat …
omdurg
  • 153
  • 4
2
votes
2 answers

Which algorithm to use to identify clusters with a similar value?

Here, an example of my problem: 10000 observations of people with several features [age, gender, region, number of sons, ...] and a value to predict "income". There is not a general relationship between features and income, therefore a normal…
2
votes
1 answer

Compare importance/data pattern between multivariate time series

I have the simple multivariate time series looks like this, Each column could be plotted in line chart as below, My problem statement is about is there any algorithm or machine learning to prioritize three columns based on data or charts weekly?…
2
votes
2 answers

How to find common patterns in thousands of strings?

I don't want to find "abc" in strings ["kkkabczzz", "shdirabckai"] Not like that. But bigger patterns like this: If I have to _________, then I will ___. ["If I have to do it, then I will do it right.", "Even if I have to make it, I will not make it…
2
votes
0 answers

What algorithms exist for identify repeating patterns in a single image?

I am looking for algorithms or models for detecting and identifying repeated patterns in a single image. For example, an arbitrary smaller image might be pasted at random locations in the image. In the situation at hand, no prior information is…
2
votes
2 answers

Extracting linear trends from a dataset

Consider a sensor measurement f that varies with both temperature T and the properties of the fluid being measured. The temperature changes through each day and the fluid properties can be assumed to vary less frequently. If I cross plot the data in…
1
vote
2 answers

Correlation/Pattern Recognition in Lists

I am looking for algorithms to find pattern or more precise correlations in lists compared to an Output. Let us assume I have a Database like this: Input: [A,C,D,E...], Output: Positive Input: [A,B,C,E,F...], Output: Negative The Problem is that…
1
vote
0 answers

I have a data set of optimal values after simulations, How can I find if this dataset follows a specific pattern or any relation exists?

In the simulation I am conducting, I have a set of triangles and I select the optimal triangle based on my metric. After every simulation, I obtain an optimal triangle and I note down the lengths of its three sides. So I conducted this simulation a…
1
vote
2 answers

How to identify patterns in dataset

I have a dataset that pertains to calls received to a hospital emergency helpline. My task is to identify patterns in the data. How do I approach examining the dataset to identify patterns? Extract from dataset.
1
vote
1 answer

Finding a pattern in reponses in R programming

I did a study in which around 1000 participants took a test (100 questions). In this study participants were asked in each question to choose between two texts (text 1 and text 2) and decide which text is easier for them. Now in R I want to check if…
1
2 3