InferenceTargets.find_targetIds Method
julia
find_targetIds(m::Module)Return the targetIds provided by the given module as a Vector{Symbol}.
An exception will be thrown if the module is not a target collection.
sourceInferenceTargets.find_targetIds Method
julia
find_targetIds()Query all loaded modules. Create a dictionary, where each key is a modules m that is a target collections, and the corresponding value is the result of find_targetIds(m).
InferenceTargets.load_target Method
julia
load_target(m::Module, targetId)Load the target corresponding to the provided targetId. The targetId can be encoded as a String, Symbol, or Val{:symbol} and will be automatically converted to the appropriate representation used in the target collection.
An exception will be thrown if the module is not a target collection.
sourceInferenceTargets.summary_table Method
julia
summary_table(m::Module)Create a Tables providing information on the targets in the given collection.
An exception will be thrown if the module is not a target collection.
source