Skip to content

Commit

Permalink
Update model.py
Browse files Browse the repository at this point in the history
  • Loading branch information
lm-cyber authored Apr 17, 2024
1 parent 2d30845 commit dd60e56
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/model.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from schema import ModelDayInput
from collections import defaultdict
import random


class Model:
"""заплатка что с моделью"""

"""заплатка что с моделью"""
def __init__(self):
self.data_cashe = defaultdict(dict)
# k v r
Expand Down Expand Up @@ -33,4 +33,4 @@ def forward(self, data: ModelDayInput):
return val

def __call__(self, data: ModelDayInput):
return self.forward(data)
return self.forward(data)d(data)

0 comments on commit dd60e56

Please sign in to comment.