This commit is contained in:
Ed Addario 2026-02-14 17:31:24 +00:00
parent 6029c6ea17
commit fb2af3353d
No known key found for this signature in database
GPG Key ID: E7875815A3230993
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,7 @@ static int prepare_imatrix(const std::string & imatrix_file,
for (auto st = statistics_data.begin(); st != statistics_data.end();) {
auto pos = st->first.find(name);
if (pos != std::string::npos) {
st = activations_data.erase(st);
st = statistics_data.erase(st);
} else {
++st;
}