Reputation:
I am trying to implement U-net and I use https://github.com/jakeret/tf_unet/tree/master/scripts this link as reference. I don't understand which dataset they used. please give me some idea or link which dataset i use.
Upvotes: 0
Views: 576
Reputation: 3138
On their github README.md they show three different datasets, that they applied their implementation to. Their implementation is dataset agnostic, therefore it shouldn't matter too much what data they use if you're trying to solve your own problem with your own data. But if you're looking for a toy data set to play around, check out their demos. There you'll see two readily available examples and how they can be used:
The latter is probably the easiest one if it comes to just having something to play with. To see how data is generated, check out the class: image_gen.py -> GrayScaleDataProvider (with an IDE like PyCharm you can just jump into the according classes in the demo source code)
Upvotes: 1