Vinit Gore
Vinit Gore
Same error faced by me today. Is the api on maintenance?
```python def diffuse_mc(self, act_nodes, mc=10): self.sample_live_graph_mc(mc) self.graph.total_activated_nodes = [] for _ in range(mc): self.diffuse(act_nodes, mcount) return sum(self.graph.total_activated_nodes) / float(mc) ``` I think the _ is supposed to be mcount. The...
Hey I would like to add the Triplet loss. Refer [this](https://en.wikipedia.org/wiki/Triplet_loss#:~:text=Triplet%20loss%20is%20a%20loss,a%20negative%20(falsy)%20input.) for more info. on it.