Skip to content

Broken URLs in Documentation #8482

@ericspod

Description

@ericspod

Describe the bug
The following are URLs I have found to be broken in the docs. Not all of these are actually broken however. I will fix shortly with a PR:

https://download.pytorch.org/whl/cpu/torch-2.3.0
https://fonts.googleapis.com/css
https://github.com/Project-MONAI/tutorials/blob/main/3d_segmentation/unet_segmentation_3d_catalyst.ipynb
https://github.com/Project-MONAI/tutorials/blob/main/bundle/get_started.md
https://github.com/Project-MONAI/tutorials/blob/main/modules/transfer_mmar.ipynb
https://github.com/Project-MONAI/tutorials/blob/master/acceleration/fast_model_training_guide.md.
https://github.com/Project-MONAI/tutorials/blob/master/modules/transfer_mmar.ipynb
https://raw.githubusercontent.com/Project-MONAI/DocImages/main/transforms/RandSmoothDeformd.png
https://raw.githubusercontent.com/Project-MONAI/DocImages/main/transforms/RandSmoothDeform.png

These were found with:

egrep -ohR 'http[s?]://[_a-zA-Z0-9./-]*' docs|sort -u|while read i
do 
    if ! wget -q -O /dev/null "$i"
    then 
        echo $i
    fi
done

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions