Adil Alizada

Results 31 comments of Adil Alizada

Greetings! I had the same problem for the past 5 hours, I also couldn't install "**jack-audio-connection-kit-dbus**" because it was conflicting with "**pipewire-jack-audio-connection-kit-0.3.48-1.fc35.x86_64**". Here is the ERROR message: `Error: Problem: problem...

> I put fake quantizers into arbitrary locations via pattern-based quantization, however, which has been removed in the last NNCF. > > I would be appreciated it if nncf could...

@alexsu52 @ksj20 Any updates on this issue? If the assignee isn't going to work on this, I'd be down to take it.

@alexsu52 @AlexanderDokuchaev If I add the following code to the `LMWeightCompression.compress()` and then run a benchmark right after using `whowhatbench` how should I store the metrics? Also please tell me...

> @alexsu52 @AlexanderDokuchaev If I add the following code to the LMWeightCompression.compress() and then run a >benchmark right after using whowhatbench how should I store the metrics? >Also please tell...

> Hi @AdiKsOnDev > > Add `_validate` function to LMWeightCompression, that will contain call of evaluator from whowhatbench. > > Example of _validate function https://github.com/openvinotoolkit/nncf/blob/develop/tests/post_training/pipelines/image_classification_timm.py#L127 > > Metrics should be...

@AlexanderDokuchaev `_validate(self)` already exists in `LMWeightCompression` ![image](https://github.com/openvinotoolkit/nncf/assets/80326762/9dcbb215-c061-4bfa-af4c-0627df6d245f) # Git Blame ![image](https://github.com/openvinotoolkit/nncf/assets/80326762/66f54038-95ba-4b61-822f-91d1bbe8f4ae)

@AlexanderDokuchaev I added following code for `INT_8` support, do you want me to send a PR? ```python def compress(self) -> None: if self.backend == BackendType.FP32: return elif self.backend == BackendType.TORCH:...