| 25 | |
| 26 | |
| 27 | class InferenceClass: |
| 28 | def __init__(self): |
| 29 | self.model = mock_load_model() |
| 30 | |
| 31 | def predict(self, input_data): |
| 32 | heavy_computation(input_data) |
| 33 | |
| 34 | |
| 35 | class TestCarbonInferenceTracker(unittest.TestCase): |
no outgoing calls
searching dependent graphs…