Jacopo Abramo
Jacopo Abramo
Hi again @vloncar , I now got the following error: `ERROR: [XFORM 203-133] Bitwidth of reshaped elements (73728 bits) exceeds the maximum bitwidth (65536 bits) for array 'w15.V' .` As...
Yes I looked around previous issues and found a similar problem. I changed the default precision to `ap_fixed`. If it works hurray!, if it doesn't I'll try rebuilding my model...
Hello, so I thrashed my original idea of using a pre-built model and instead I switched to use a custom model which I then converted with QKeras. The training goes...
Hello, I was hoping to receive some feedback on this as I'm still stuck on this problem.
Hello, I finally managed after a while to build the model and test it on my PYNQ-ZU. The synthesis went fine, the model is still not accurate when switching from...
Hi @jcupitt , thank you for your very quick reply! At the moment I don't have much code to show because I just found out pyvips a couple of hours...
Hi @jcupitt , thank you again. A couple of points regarding your answer: > They will need to all have the same page-height, however. This is the issue: my stacks...
Yeah, it's a real funny story: originally they were a single 4000 tiff image stacks acquired via Micro-Manager. But for some reasons MM saved the full stack as 8 separate...
> Sorry, I'm still confused. The 510 etc. above are the number of slices, aren't they? So in total you have (510 + 510 + 510 + 510 + 510...
```python # read all tif stacks tiff_file_names = [file for file in listdir(getcwd()) if file.endswith(".tif")] # stack sizes tiff_files_size = [510, 510, 510, 510, 510, 510, 510, 430] # final...