Questions tagged [data-anomalies]
4 questions
0
votes
0 answers
Chatgpt: ValueError: empty vocabulary; perhaps the documents only contain stop words
I am currently running the code and encountering the error mentioned above. Despite searching the internet, I have been unable to find a solution.
Code:
import json
import gensim
import pickle
import pandas as pd
import numpy as np
from tqdm import…

Khawar Islam
- 2,556
- 2
- 34
- 56
0
votes
1 answer
Anomalie detection on Shapelets
I have been using Shapelets recently for my work (mostly the dataapp) and I was wondering how we could use the matrix profile pattern recognition in the dataap for my time series?
If anyone can help me on this, that would be appreciated!
0
votes
2 answers
Bigquery Sql not giving the expected result
it keeps bringing this statement
'SELECT list expression references column stn which is neither grouped nor aggregated'
This is the query
SELECT
stn,
date,
AVG(TEMP),
FROM
'bigquery-public-data.noaa_gsod.gsod2020'
WHERE
stn="725030" OR…

BadassAnalyst
- 1
- 2
0
votes
1 answer
How to more efficiently test if data anomalies occur in transaction (Django)
I want to test if data anomalies such as dirty read, non-repeatable read, phantom read, lost update and so on occur in transaction.
Actually, I used person table which has id and name as shown below.
person…

Super Kai - Kazuya Ito
- 22,221
- 10
- 124
- 129