Vishwas1 commited on
Commit
41b7476
·
verified ·
1 Parent(s): a57fafb

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -23,7 +23,7 @@ class SimpleActiveReader:
23
  Simplified Active Reading implementation for demo purposes
24
  """
25
 
26
- def __init__(self, model_name: str = "meta-llama/Llama-3.2-1B-Instruct"):
27
  """Initialize with a smaller model suitable for HF Spaces"""
28
  self.model_name = model_name
29
  self.device = "cuda" if torch.cuda.is_available() else "cpu"
 
23
  Simplified Active Reading implementation for demo purposes
24
  """
25
 
26
+ def __init__(self, model_name: str = "microsoft/DialoGPT-small"):
27
  """Initialize with a smaller model suitable for HF Spaces"""
28
  self.model_name = model_name
29
  self.device = "cuda" if torch.cuda.is_available() else "cpu"