RandLA-Net icon indicating copy to clipboard operation
RandLA-Net copied to clipboard

GetNext

Open phulektqs opened this issue 3 years ago • 2 comments

when i training dataset Semantic3d, i have a proplem: getnext() failed because the iterator has not been initialized. ensure that you have run the initializer operation for this iterator before getting the next element. [op:iteratorgetnext] site:stackoverflow.com in line self.flat_inputs = iter.get_next() how do i fix it?

phulektqs avatar Apr 14 '21 16:04 phulektqs

I have the exact same problem but with SemanticKITTI, did you end up fixing it? @phulektqs

GaganBhat avatar Apr 17 '21 21:04 GaganBhat

I have encountered the same issue when i use tehsorflow2.0 to run the code. And after some effort, i found out the if we put self.flat_inputs = iter.get_next() after the make_initializer operations, then it just worked.

Though, i can't quite understand why it is useful, since the operations in the function won't be really executed before the session calls it...

Tommy307 avatar Oct 22 '22 07:10 Tommy307