MCPcopy Create free account
hub / github.com/andrewkchan/deepseek.cpp / YALMData

Method YALMData

src/codec.cpp:255–260  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

253}
254
255YALMData::YALMData(const std::string& dirname, bool lock_model_weights) {
256 if (from_directory(dirname, lock_model_weights) != 0) {
257 std::cerr << "failed to load YALMData from directory" << std::endl;
258 assert(false);
259 }
260}
261
262int YALMData::update_from_file(const std::string& filename, bool read_metadata, bool lock_model_weights) {
263 std::cout << "loading data from file: " << filename << std::endl;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected