Skip to content

Commit

Permalink
debug result
Browse files Browse the repository at this point in the history
  • Loading branch information
hahahannes committed Jun 25, 2024
1 parent 45db005 commit fce90cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions algo/curve_anomaly/cont_det/cont_detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ def create_debug_result(self):
def random_df():
start = pd.to_datetime('2015-01-01')
end = pd.to_datetime('2015-01-03')
n = 50
n = 100
ts = random_dates(start, end, n)
data = pd.DataFrame({"value": np.random.rand(100,), "time": ts, "reconstr": np.random.rand(100,)})
data = pd.DataFrame({"value": np.random.rand(n,), "time": ts, "reconstr": np.random.rand(n,)})
return data

def random_dates(start, end, n=10):
Expand Down

0 comments on commit fce90cf

Please sign in to comment.