Coverage for melissa/server/deep_learning/frameworks.py: 100%

5 statements  

« prev     ^ index     » next       coverage.py v7.10.1, created at 2025-11-19 09:33 +0100

1from enum import Enum 

2 

3 

4class FrameworkType(Enum): 

5 """Enum based on framework. 

6 

7 - DEFAULT = 0 

8 - TORCH = 1 

9 - TENSORFLOW = 2""" 

10 DEFAULT = 0 

11 TORCH = 1 

12 TENSORFLOW = 2