Results 7 comments of myravian

Thanks for your message. I was more thinking of something like saying "send email", with some conversion to xdotool key strokes Control+C+Control+C. I tried implementing this into the nerd_dictation_process routine...

so yeah it's working well with a new nerd_dictation_postprocess function in the user_config script, and calling it from the main program after handle_fn_wrapper.

It's been some time so I don't remember too well but I'm using this in the file ~/.config/nerd-dictation/nerd-dictation.py: `def nerd_dictation_postprocess(text): for s in range(len(text)): for command in ("send message", "send...

The matrix values were arbitrary and there just to illustrate the issue of the keyword that I wanted to raise. It's easy enough to check the determinant beforehand.

Unfortunately I still have the same error message: ``` File "/local/home/vleboute/work/MULTIGRIS/mgris/sampling_smc_ciguaran.py", line 150, in sample_smc_blackjax total_iterations, particles, diagnosis = inference_loop( ^^^^^^^^^^^^^^^ File "/local/home/vleboute/work/MULTIGRIS/mgris/sampling_smc_ciguaran.py", line 267, in inference_loop n_iter, final_state, _,...

Here would be the script: `import pymc as pm from sampling_smc_ciguaran import sample_smc_blackjax as sample_smc with pm.Model() as model: c = pm.Normal("c", mu=10, sigma=10, shape=(1,)) d = pm.Dirichlet("d", [1, 1])...

You're right, I was not using the proper versions, just tested it and it seems to work fine, thanks for the modifications!