Skip to content

Commit 507035a

Browse files
authored
Apply suggestion from @stephentoub
1 parent 93697d0 commit 507035a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.ML.Tokenizers/Utils/BytePairEncoder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ private static (int Id, int TokenIndex, int TokenLength)[] BytePairEncodeLarge(R
170170
CurRank = int.MaxValue
171171
};
172172

173-
var heap = new PriorityQueue<MergeEntry>(0);
173+
var heap = new PriorityQueue<MergeEntry>();
174174

175175
for (int i = 0; i < mergingBytes.Length - 1; i++)
176176
{

0 commit comments

Comments
 (0)