Chunk size 16 -> 64
Browse files- 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 =
|
| 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()
|