BSON Loading Flux NN model - error - reference to NNlib

Hi. I am trying to use BSON.@load within DaemonMode.jl

DaemonMode.jl has acknowledged reference issues arising from:
“…DaemonMode uses a module to encapsulate the code…”
but for example in the case of ‘include’ this is easily addressed by using the full reference:

Base.include(@__MODULE__,<filename>)

When I try to load a Flux NN model with BSON, I get an error of NNlib being unknown. Is there any subcommand I can use to communicate the unknown reference? [I tried

using NNlib

which did not help.]

Thanks for any help (or suggestions of alternative reference-free methods for saving/loading a Flux NN models)