graphnet-team / graphnet

A Deep learning library for neutrino telescopes
https://graphnet-team.github.io/graphnet/
Apache License 2.0
90 stars 92 forks source link

Documentation typo: Models in Graphnet Instantiating a StandardModel #714

Open CamphynR opened 4 months ago

CamphynR commented 4 months ago

On the documentation page (https://graphnet-team.github.io/graphnet/models/models.html#) under "Models in Graphnet Instantiating a StandardModel" in the code snippet it reads:


backbone = DynEdge(
    nb_inputs=detector.nb_outputs,
    global_pooling_schemes=["min", "max", "mean"],
)

which should be:

backbone = DynEdge(
    nb_inputs=graph_definition.nb_outputs,
    global_pooling_schemes=["min", "max", "mean"],
)