| 157 | type_string() == "ResourceSparseApplyAdagrad"; |
| 158 | } |
| 159 | bool IsApplyAdamOps() const { |
| 160 | return type_string() == "ApplyAdam" || |
| 161 | type_string() == "ResourceApplyAdam"; |
| 162 | } |
| 163 | bool IsApplySparseAdamOps() const { |
| 164 | return type_string() == "SparseAdam" || |
| 165 | type_string() == "SparseApplyAdam" || |
no outgoing calls
no test coverage detected