MCPcopy Create free account
hub / github.com/LBANN/lbann / update_layers

Method update_layers

src/models/model.cpp:1692–1699  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1690}
1691
1692bool model::update_layers()
1693{
1694 bool finished = true;
1695 for (El::Int i = get_num_layers() - 1; i >= 0; --i) {
1696 finished = get_layer(i).update() && finished;
1697 }
1698 return finished;
1699}
1700
1701void model::reconcile_weight_values()
1702{

Callers 3

kfac.cppFile · 0.80
evaluate_mini_batchMethod · 0.80

Calls 1

updateMethod · 0.45

Tested by

no test coverage detected