mebubo commited on
Commit
2d12d3d
·
1 Parent(s): cefa0ab

Chunk size 16 -> 64

Browse files
Files changed (1) hide show
  1. expand_llm.py +1 -1
expand_llm.py CHANGED
@@ -39,7 +39,7 @@ class LLMBatchExpander(BatchExpander):
39
  model: PreTrainedModel
40
  tokenizer: Tokenizer
41
  threshold: float
42
- chunk_size: int = 16 # Default chunk size, can be adjusted as needed
43
 
44
  def expand(self, batch: Batch) -> BatchCandidates:
45
  start_time = time.time()
 
39
  model: PreTrainedModel
40
  tokenizer: Tokenizer
41
  threshold: float
42
+ chunk_size: int = 64
43
 
44
  def expand(self, batch: Batch) -> BatchCandidates:
45
  start_time = time.time()