Skip to content

Commit

Permalink
fix: Removed sampling
Browse files Browse the repository at this point in the history
  • Loading branch information
da-the-dev committed Jul 17, 2024
1 parent a3b3cd6 commit fb814cb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,6 @@ def preprocess_data(
for tf in cfg["time_features"]:
df = dtf.encode_cyclic_time_data(df, tf[0], tf[1])

df = df.sample(n=10_000)

# 5. Split the dataset into X and y
X = df.drop(["Cancelled"], axis=1)
y = df[["Cancelled"]]
Expand Down

0 comments on commit fb814cb

Please sign in to comment.