AndyWangON / Brain-tumor-segmentation-using-deep-learning

#BRATS2015 #BRATS2018 #deep learning #fully automatic brain tumor segmentation #U-net # tensorflow #Keras
54 stars 29 forks source link

How to cite #10

Open agussa opened 4 years ago

agussa commented 4 years ago

This is not a problem. Just a question. your work is great! It inspired me to modify to suit my problem. How to cite your work ?

Thanks.

Kelvinyu1117 commented 4 years ago

Same question for citation.

@agussa I would like to ask do you know how to retrain the network? How can I read all the training data as x, and label as y?

agussa commented 4 years ago

if you have enough RAM/ GPU memory than you can do this

How can I read all the training data as x, and label as y?

But, if you don't have enough RAM/GPU RAM, then it better to use keras.sequence as generator or tf.keras.sequence to fetch one by one and feed to network, or per-batch as you specify it.

Kelvinyu1117 commented 4 years ago

Do you have any code samples? I am not quite familiar with the generator... Can I use the function create_data in the notebook to read it?