Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
7792b4d
HM Distance
weathon Mar 21, 2022
65b835c
Change the random to normal
weathon Mar 22, 2022
6d6dd3b
Fix ;
weathon Mar 22, 2022
2d81fae
Add filename
weathon Mar 22, 2022
2819006
Merge branch 'ham' of https://github.com/weathon/CMT into ham
Mar 22, 2022
8496eba
fix mutli process range
Mar 22, 2022
256ea6a
*=2
weathon Mar 28, 2022
a0f6716
Merge branch 'ham' of https://github.com/weathon/CMT into ham
weathon Mar 28, 2022
d091f66
*=
weathon Mar 28, 2022
cbe3800
?
Mar 28, 2022
5af3c34
Merge branch 'ham' of https://github.com/weathon/CMT into ham
weathon Mar 28, 2022
a386cba
-
weathon Mar 29, 2022
14aca10
Merge branch 'ham' of https://github.com/weathon/CMT into ham
weathon Mar 29, 2022
086b943
Final
weathon May 14, 2022
37dab1d
kun
weathon May 14, 2022
701e95e
weathin
weathon May 15, 2022
0061c7c
Range
weathon May 22, 2022
6267df6
change r range
weathon May 24, 2022
f3fe2c8
Change range
weathon May 24, 2022
fc37a59
Merge branch 'ham' of https://github.com/weathon/CMT into ham
weathon May 25, 2022
89a2a51
idk
weathon May 31, 2022
75d9557
shouzhijiantongaacitong un
weathon May 31, 2022
96ef6f5
Merge branch 'ham' of https://github.com/weathon/CMT into ham
weathon May 31, 2022
859dc95
Such stupid mistake...
weathon May 31, 2022
8c00c10
idk
weathon May 31, 2022
13f2d01
Merge branch 'ham' of https://github.com/weathon/CMT into ham
weathon May 31, 2022
dfa2bcd
idk what i did
weathon May 31, 2022
6253d54
change r
weathon May 31, 2022
d335c58
-
weathon Jun 1, 2022
928f566
Fixed int problem
weathon Jun 1, 2022
f2cde6e
koukuexkoubud
weathon Jun 1, 2022
ac54b14
-
weathon Jun 1, 2022
d4efe74
-
weathon Jun 1, 2022
c0ce0bc
rad
weathon Jun 1, 2022
8b1a4f3
knn
weathon Jun 1, 2022
05b6223
Change rad
weathon Jun 2, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added ._./._.
Empty file.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,13 @@
/bin/
# MZ ingnore every direcotry with these names
CMakeFiles/
<<<<<<< HEAD

=======
# WG all locations
**/CMakeFiles
**/.vscode
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The directoryy .vscode under /CMT/src should be tracked.

>>>>>>> 2d81fae76f5a9e65b2549f6a0861862a8a4dda00
# User-specific files
*.suo
*.user
Expand Down
1 change: 1 addition & 0 deletions Graph_Edit_Distance
Submodule Graph_Edit_Distance added at 50b1e4
3 changes: 3 additions & 0 deletions bin/script.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import os
for i in range(1,5):
os.system("nohup ./HMSearchApp %s %s &"%(i,i+1))
15 changes: 15 additions & 0 deletions main,.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import pandas as pd
import numpy as np
import os

data = {}
for i in os.listdir():
if not i.endswith(".py"):
df = pd.read_csv(i)
df = df[df[" activity inference"] != 3]
uid=i.split("_")[1].split(".")[0]
data[uid] = df[" activity inference"].value_counts()[0]/len(df)


print(data)
~
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ add_dependencies(libSearch libCommon)
add_dependencies(EuclidSearchApp libCommon libMetric libSearch)
add_dependencies(EditDistSearchApp libCommon libMetric libSearch)
add_dependencies(ExtractFastaApp libCommon libMetric libSearch)

add_dependencies(HMSearchApp libCommon libMetric libSearch)

set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT tapps)
Loading