AlexNet import to Julia

I am trying to download and modify AlexNet, the well known pre-trained neural network into Julia.
Are there any packages that have already done this or have well known pre-trained NN’s that are open to modification? I am trying to implement the procedure outlined in this paper: https://aapm.onlinelibrary.wiley.com/doi/full/10.1002/mp.13367

1 Like

You could try:
https://github.com/FluxML/ONNX.jl
Or:
https://github.com/KnetML/ONNXKnet.jl
Or, if you want to do it yourself from scratch, you can also take some inspiration from here:
https://github.com/ianshmean/YOLO.jl/blob/master/src/models/v2_tiny/

1 Like