We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf75cc commit 0b5dc06Copy full SHA for 0b5dc06
element_interface/extract_loader.py
@@ -25,7 +25,7 @@ def __init__(self, extract_dir: str):
25
26
results = loadmat(extract_file)
27
28
- self.creation_time = datetime.utcnow()
+ self.creation_time = datetime.fromtimestamp(os.stat(extract_file).st_ctime)
29
self.S = results["output"][0]["spatial_weights"][0] # (Height, Width, MaskId)
30
self.T = results["output"][0]["temporal_weights"][0] # (Time, MaskId)
31
0 commit comments