ChrisDEV

Results 63 comments of ChrisDEV

Yeah, agree with @DaNious, tbh, I did the `similarity` comparison with the `cosine_similarity`, and also get a proper result. The example with "softmax" could, maybe I was wrong, people will...

``` python class SimilarityCalculator: def __init__(self, device): self.device = device def __call__(self, embeddings): raise NotImplementedError @staticmethod def create_instance(similarity_type, device): if similarity_type == SimilarityCalculatorType.COSINE: return CosineSimilarity(device) elif similarity_type == SimilarityCalculatorType.SOFTMAX: return...

> --pipeline.model.near-plane 0.01 --pipeline.model.far-plane 1000 --pipeline.model.overwrite-near-far-plane True --pipeline.model.background-model grid I have the same question. Use nerfstudio 's `nerfacto,` I didnt adjust so many parameters, actually nothing, however, the result was...