MCPcopy
hub / github.com/lutzroeder/netron / get_record

Method get_record

source/python.js:9792–9797  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

9790 return this._records.has(name);
9791 }
9792 get_record(name) {
9793 if (!this.has_record(name)) {
9794 throw new python.Error(`Record '${name}' not found.`);
9795 }
9796 return this._records.get(name);
9797 }
9798 get_all_records() {
9799 return Array.from(this._records.keys());
9800 }

Callers 9

initMethod · 0.80
constructorMethod · 0.80
deserializeMethod · 0.80
LEGACY_deserializeMethod · 0.80
LEGACY_convertModuleMethod · 0.80
readArchiveAndTensorsMethod · 0.80
read_recordMethod · 0.80
load_pickleMethod · 0.80
readMethod · 0.80

Calls 2

has_recordMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected