-1

I am new to tensorflow and I want to create

Tensor("batch:0",shape=(?, 299, 299, 3), dtype=float32)
  • How can I can create This?
  • What is the meaning of "?" in it.

Thanks

Akhilesh_IN
  • 1,217
  • 1
  • 13
  • 19

1 Answers1

2

It means that this dimension is not fixed in the graph and it can vary between different run calls.

Mark.F
  • 1,624
  • 4
  • 17
  • 28