heartwise/EfficientNetV2_77_Classes
134
1---2language:3- en4license: apache-2.05---6# DeepECG EfficientNet V2 model7 8 - model_name: `efficientnetv2_77_classes`9 - Utilizes the EfficientNetV2 architecture for processing ECG signals.10 - The model takes an input signal tensor and outputs the logits for the 77 diagnosis classes.11 - Model compiled with JIT12 - Frozen weights no tunable13 14To load use15```16import torch17model = torch.jit.load(model_path)18```