Tudor

Results 18 comments of Tudor

Thank you very much @yuvaltassa! That helped a lot! I managed to get away with 95 elements. I was thinking maybe it will be a good feature to be able...

I have tried to play a bit with the parameters of V-HACD but it does not work as planned. For tiny objects with which I am working, the newer version...

@kevinzakka, yes, I watched the video but it doesn't solve the problem. And when I increase the number of the convex hulls enough to have the arteries accessible, most of...

I have the same error. Any solutions found so far?

I came up with a similar solution but because I personally do not like the clutter of making an anonymous function inline, I made a wrapper: ```lua local function theme_wrapper(telescope_command)...

Hello! What model did you pass to the `experiment`?

Nevermind, it works with: ```python from experiment import VAEXperiment import yaml import torch from models import * config = yaml.safe_load(open('./configs/bbvae.yaml')) model = vae_models[config['model_params']['name']](**config['model_params']) ckpt = torch.load('./logs/BetaVAE/version_0/checkpoints/last.ckpt') experiment = VAEXperiment(model, config['exp_params'])...

@ecruzolivera, @foozzi , I made a simple script to determine the font scale based on the dpi set in `.Xresources`. Check it here if you need it and modify it...

Any solutions yet? Is there a way to at least change the font based on dpi detection? I am thinking of implementing something like this in my config, but I...