I want to create two different collection for summaries. One is for training summary and one is for validation summary.
So i can use two different merge_all operation to store the value
merge_all(key=tf.GraphKeys.SUMMARIES)
The function scalar can be added to a collection.
tf.summary.scalar(
name,
tensor,
collections=None,
family=None
)
how to create a new collection for summaries?