Skip to content

Commit

Permalink
More appeasement\
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewdalpino committed Feb 12, 2022
1 parent 90e5f15 commit 51f6f02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion benchmarks/Transformers/StopWordFilterBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function setUp() : void
$samples = [];

for ($i = 0; $i < self::DATASET_SIZE; ++$i) {
$samples[] = str_split(self::SAMPLE_TEXT, $k) ?: [];
$samples[] = str_split(self::SAMPLE_TEXT, $k);
}

$this->dataset = new Unlabeled($samples);
Expand Down
2 changes: 1 addition & 1 deletion benchmarks/Transformers/TextNormalizerBench.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function setUp() : void
$samples = [];

for ($i = 0; $i < self::DATASET_SIZE; ++$i) {
$samples[] = str_split(self::SAMPLE_TEXT, $k) ?: [];
$samples[] = str_split(self::SAMPLE_TEXT, $k);
}

$this->dataset = new Unlabeled($samples);
Expand Down

0 comments on commit 51f6f02

Please sign in to comment.