Skip to content

Commit 5724c70

Browse files
committed
default start and end time for facts from model integration
1 parent c2b79b8 commit 5724c70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyreason/scripts/learning/classification/classifier.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_class_facts(self, t1: int, t2: int) -> List[Fact]:
3737
facts.append(fact)
3838
return facts
3939

40-
def forward(self, x, t1: int, t2: int):
40+
def forward(self, x, t1: int = 0, t2: int = 0):
4141
"""
4242
Forward pass of the model
4343
:param x: Input tensor

0 commit comments

Comments
 (0)