Views
No views yet
Research use only. This project is not a medical device and must not be used for autonomous diagnosis or treatment decisions.
docker build -f deploy/Dockerfile.b200 -t neurotaskfm:0.1.0 ./opt/libtorch:make build1build/bin/neurocompile
2build/bin/ntfm-train
3build/bin/ntfm-infer
4build/bin/ntfm-personalize
5build/bin/ntfm-tool
6build/bin/neurotask-web
7bin/ntfm
8bin/neurotaskd1build/bin/ntfm-tool validate-manifest \
2 --manifest /data/manifests/train.jsonl
3
4build/bin/ntfm-tool prepare-packs \
5 --manifest /data/manifests/train.jsonl \
6 --gpus 0,1,2,3,4,5,6,7build/bin/ntfm-tool --help1build/bin/neurocompile \
2 --t1 /data/sub-0001/t1w.nii.gz \
3 --fmri /data/sub-0001/rest_bold.nii.gz \
4 --atlas /data/atlas.nii.gz \
5 --config configs/compiler/neurocompiler.yaml \
6 --subject-key sub-0001 --task rest --tr 0.8 \
7 --out /data/compiled/sub-0001_rest.h51sbatch workflows/slurm/train_teacher.sbatch
2sbatch workflows/slurm/train_compiled.sbatch
3sbatch workflows/slurm/train_signature.sbatch
4sbatch workflows/slurm/train_clinical_ad.sbatch
5sbatch workflows/slurm/train_clinical_pd.sbatch1mpirun -np 2 build/bin/ntfm-infer \
2 --config configs/deployment/product_b200x2.yaml \
3 --request examples/inference_request.json1bin/ntfm compile --request examples/compile_request.json
2bin/ntfm infer --request examples/inference_request.json
3NTFM_API_TOKEN='replace-with-a-secret' bin/neurotaskd --listen :80801src/neurotaskfm_cpp/ LibTorch model, training, inference, and data tools
2src/neurocompiler/ C++/CUDA MRI compiler
3src/platform/ Go CLI and services
4configs/ model, training, deployment, and cluster settings
5contracts/ JSON schemas
6workflows/ local and Slurm launchers
7docs/ detailed design and operating documentation