user9030628
user9030628

Reputation:

Which dataset used in jakeret/tf_unet U-Net implementation?

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

Answers (1)

Honeybear
Honeybear

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:

demo_radio_data.ipynb

  • demo_toy_problem.ipynb which uses their built-in data generator of a noisy image with circles that are to be detected. demo_toy_problem.ipynb

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

Related Questions