Skip to content

Commit 148120b

Browse files
committed
remove debug logs
1 parent a51f137 commit 148120b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

conditioner.hpp

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1697,15 +1697,15 @@ struct LLMEmbedder : public Conditioner {
16971697
}
16981698
parsed_attention.emplace_back(text.substr(attn_range.second), 1.f);
16991699

1700-
{
1701-
std::stringstream ss;
1702-
ss << '[';
1703-
for (const auto& item : parsed_attention) {
1704-
ss << "['" << item.first << "', " << item.second << "], ";
1705-
}
1706-
ss << ']';
1707-
LOG_DEBUG("parse '%s' to %s", text.c_str(), ss.str().c_str());
1708-
}
1700+
// {
1701+
// std::stringstream ss;
1702+
// ss << '[';
1703+
// for (const auto& item : parsed_attention) {
1704+
// ss << "['" << item.first << "', " << item.second << "], ";
1705+
// }
1706+
// ss << ']';
1707+
// LOG_DEBUG("parse '%s' to %s", text.c_str(), ss.str().c_str());
1708+
// }
17091709

17101710
std::vector<int> tokens;
17111711
std::vector<float> weights;

0 commit comments

Comments
 (0)