Skip to content
Merged
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
14 changes: 8 additions & 6 deletions tensorboard/uploader/proto/export_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,14 @@ message StreamExperimentDataRequest {
}

// Streams scalars from all the runs and tags in an experiment. Each stream
// result contains data for a single tag from a single run. For example if there
// are five runs and each run had two tags, the RPC will return a stream of ten
// `StreamExperimentDataResponse`s, each one having all the scalars for one tag.
// Users need to aggregate information from entire stream to get data for the
// entire experiment. Empty experiments will have zero stream results. Empty
// runs that doesn't have any tags need not be supported by TensorBoard.dev.
// result only contains data for a single tag from a single run. For example if
// there are five runs and each run had two tags, the RPC will return a stream
// of at least ten `StreamExperimentDataResponse`s, each one having the
// scalars for one tag. The values from a single tag may be split among multiple
// responses. Users need to aggregate information from entire stream to get
// data for the entire experiment. Empty experiments will have zero stream
// results. Empty runs that doesn't have any tags need not be supported by a
// hosted service.
message StreamExperimentDataResponse {
// Name of the tag whose data is contained in this response.
string tag_name = 1;
Expand Down