returnwellbeing

Results 3 comments of returnwellbeing

Hi, I've encountered same issue. I am using the example for extension api, kreverse. https://fastmachinelearning.org/hls4ml/advanced/extension.html# I used vivadoaccelerator and got the final hardware block. but when i deploy the hardware...

@nghielme Thanks for suggestion. I found that `hls_model.predict(x)` and `model.predict(x)` are different. your advice was a great help in finding the cause. @zsrabbani In my case, there are some error...

Hi, I encountered this issue before. I added two lines below https://github.com/fastmachinelearning/hls4ml/blob/main/hls4ml/converters/pytorch/core.py#L66-L67 ```py if hasattr(node, 'dim'): layer['axis'] = class_object.dim if hasattr(class_object, 'dim'): # temperal solution layer['axis'] = class_object.dim ``` when...