Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tensorboard/plugins/graph/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ Note: building a Hierarchy modifies the SlimGraph's OpNodes in place!
- Iterate over OpNodes, keep track of device names, XLAClusters,
opHistograms, TPU Compatibility histograms, library function nodes and
their associated function name, etc.
- Assume the node's name's '/' occurences indicate its level from the
- Assume the node's name's '/' occurrences indicate its level from the
root. If node is named 'a/b/c', create metanodes 'a' and 'a/b'.
- Update embedding nodes to point to the OpNode they are embedded to:
`embedding.parentNode = node;`.
Expand Down Expand Up @@ -502,7 +502,7 @@ this terminology comes from
Placeholder=2,Add=9,Pow=1[19]".
- **Level**: distance from the node to the artificial root node. Top-level
`MetaNode`s have level 0, and going deeper increases the level. Can be
determined from counting '/' slash occurences in a node's name.
determined from counting '/' slash occurrences in a node's name.
- **Depth**: distance from the node to its bottom-most leaf descendant. A
`MetaNode`, containing only 1 child `OpNode`, has depth 1.
- **RenderHierarchy / RenderGraphInfo / RenderGraph**: A structure storing
Expand Down
2 changes: 1 addition & 1 deletion tensorboard/plugins/graph/tf_graph_common/proto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ limitations under the License.
* When adding a repeated field to this file, make sure to update the
* GRAPH_REPEATED_FIELDS and METADATA_REPEATED_FIELDS lists within parser.ts.
* Otherwise, the parser has no way of differentiating between a field with a
* certain value and a repeated field that has only 1 occurence, resulting in
* certain value and a repeated field that has only 1 occurrence, resulting in
* subtle bugs.
*/

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export const notificationBellClicked = createAction(
);

/**
* Fires when the response from server is recieved.
* Fires when the response from server is received.
*/
export const fetchNotificationsFailed = createAction(
'[Notification] Fetch Notification Request Failed'
Expand Down