Skip to content

Commit

Permalink
version paper
Browse files Browse the repository at this point in the history
  • Loading branch information
kapoorlab committed Sep 1, 2024
1 parent 6910c70 commit 100472f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ def __init__(
# To prevent early detectin of events
def cluster_points(self, nms_space):

print("before", len(self.event_locations_size_dict))

for (k, v) in self.event_locations_dict.items():
currenttime = k
event_locations = v
Expand Down Expand Up @@ -137,7 +135,6 @@ def cluster_points(self, nms_space):
)
)

print("after", len(self.event_locations_size_dict))
self.show_clean_csv()

def show_clean_csv(self):
Expand Down Expand Up @@ -189,7 +186,6 @@ def show_clean_csv(self):
writer.writerow(["T", "Z", "Y", "X", "Score", "Size", "Confidence"])
for line in event_count:
if line not in event_data:
print(f"line{line}")
event_data.append(line)
writer.writerows(event_data)
event_data = []
Expand Down
4 changes: 2 additions & 2 deletions src/oneat/_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = version = "6.8.5"
__version_tuple__ = version_tuple = (6, 8, 5)
__version__ = version = "6.8.6"
__version_tuple__ = version_tuple = (6, 8, 6)

0 comments on commit 100472f

Please sign in to comment.