How to know which module exports a certain function
Advertisements I was going through this Flux.jl tutorial and came across something called Chain. m = Chain(Dense(10, 5, relu), Dense(5, 2), softmax) It was not imported from any of the used modules and no namespace was used, so I did not know which module it belonged to. Although I managed to find that I belongs… Read More How to know which module exports a certain function