frankjosh commited on
Commit
c9bea94
·
verified ·
1 Parent(s): e688e26

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ if 'feedback' not in st.session_state:
24
  st.session_state.feedback = {}
25
 
26
  # Define subset size
27
- SUBSET_SIZE = 1000 # Starting with 500 items for quick testing
28
 
29
  class TextDataset(Dataset):
30
  def __init__(self, texts: List[str], tokenizer, max_length: int = 512):
 
24
  st.session_state.feedback = {}
25
 
26
  # Define subset size
27
+ SUBSET_SIZE = 500 # Starting with 500 items for quick testing
28
 
29
  class TextDataset(Dataset):
30
  def __init__(self, texts: List[str], tokenizer, max_length: int = 512):