* Get the current namescope as a flat, concatenated string.
()
| 58 | * Get the current namescope as a flat, concatenated string. |
| 59 | */ |
| 60 | function currentNameScopePrefix(): string { |
| 61 | if (_nameScopeStack.length === 0) { |
| 62 | return ''; |
| 63 | } else { |
| 64 | return _nameScopeStack.join(_nameScopeDivider) + _nameScopeDivider; |
| 65 | } |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Get the name a Tensor (or Variable) would have if not uniqueified. |
no test coverage detected
searching dependent graphs…