Bnava13 commited on
Commit
a1eeb05
·
verified ·
1 Parent(s): d37e92f

Updated Max Rows

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ import difflib
8
  import numpy as np
9
 
10
  # Load dataset with proper error handling
11
- def load_data(file_path='steam.csv', max_rows=10000):
12
  try:
13
  data = pd.read_csv(file_path, quotechar='"', on_bad_lines='skip', nrows=max_rows)
14
  print(f"Successfully loaded {len(data)} games from {file_path}")
 
8
  import numpy as np
9
 
10
  # Load dataset with proper error handling
11
+ def load_data(file_path='steam.csv', max_rows=20000):
12
  try:
13
  data = pd.read_csv(file_path, quotechar='"', on_bad_lines='skip', nrows=max_rows)
14
  print(f"Successfully loaded {len(data)} games from {file_path}")