As far as I my understanding goes, the lcfcn loss works with one sample per batch. Is that really the case?
If so, how hard would it be to adapt it to more than one sample per batch?
I have tried this code:
loss = torch.mean(
torch.Tensor(
[
lcfcn_loss.compute_loss(points=points[i], probs=logits[i].sigmoid())
for i in range(points.shape[0])
]
)
)
Could that work? 🤔
Thanks for any help!
As far as I my understanding goes, the lcfcn loss works with one sample per batch. Is that really the case?
If so, how hard would it be to adapt it to more than one sample per batch?
I have tried this code:
Could that work? 🤔
Thanks for any help!