MCPcopy Create free account
hub / github.com/0xShug0/audio.cpp / conv_weight_name

Function conv_weight_name

src/framework/audio/flashsr.cpp:74–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72}
73
74std::string conv_weight_name(const std::string & block_id, int group, int index) {
75 return "resblocks." + block_id + ".convs" + std::to_string(group) + "." +
76 std::to_string(index) + ".weight";
77}
78
79std::string conv_bias_name(const std::string & block_id, int group, int index) {
80 return "resblocks." + block_id + ".convs" + std::to_string(group) + "." +

Callers 1

load_resblockFunction · 0.85

Calls 1

to_stringFunction · 0.50

Tested by

no test coverage detected