Giter VIP home page Giter VIP logo

Comments (1)

HKervadec avatar HKervadec commented on August 16, 2024

Hello,

I just re-extracted the data, and I do not see any traces of the DWI. Where did you see the DWI in my results?

For context, here are the md5sum of the data that I use ; supposedly they come from the official website:

b6d16c456e173743e30a3fbdb3bd29a5  data/ISLES2018_Training.zip
932a493c105024942700fe589cd441a9  data/ISLES2018_Testing.zip
# Get data from https://www.smir.ch/ISLES/Start2018#download
# Requires registration and a few days to be approved.

Could you confirm that the md5sum of your data matches those? The exact script that I used for extraction and pre-processing are in the makefile:

# Extraction of the zip
data/isles/TESTING data/isles/TRAINING: data/isles
data/isles: data/ISLES.lineage data/ISLES2018_Training.zip data/ISLES2018_Testing.zip
	md5sum -c $<
	rm -rf $@_tmp $@
	unzip -q $(word 2, $^) -d $@_tmp
	unzip -q $(word 3, $^) -d $@_tmp
	rm -r $@_tmp/__MACOSX
	rm -r $@_tmp/*/*/*CT_4DPWI*  # For space efficiency
	mv $@_tmp $@

# Slicing
data/ISLES/train/in_npy data/ISLES/val/in_npy: data/ISLES
data/ISLES: data/isles/TRAINING
	rm -rf $@_tmp $@
	PYTHONPATH="." python preprocess/slice_isles.py --source_dir $< --dest_dir $@_tmp --n_augment=0 --retain=20
	mv $@_tmp $@
data/ISLES/test: data/isles/TESTING

(You can check the meaning of the few automatic variables used here.)

Let me know,

Hoel

from boundary-loss.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.