Skip to content

Commit 7d731f2

Browse files
committed
ignore the workbench/ folder
1 parent 0526b8e commit 7d731f2

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
workbench/
2+
13
#################
24
## Eclipse
35
#################

cyclic_kpi_stream.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,18 @@ def above_threshold(point, threshold):
7878
source=StreamSource(args.dim)
7979

8080
# generate as many points as the user requests
81+
nclass1=0
8182
for _ in range(0,args.npoints):
8283

8384
# get the next generated point
8485
point=source.get_next_point()
8586

8687
# get the class
87-
class_ = -1 if above_threshold(point, args.threshold) else 1
88+
if above_threshold(point, args.threshold):
89+
class_ = -1
90+
nclass1 += 1
91+
else:
92+
class_ = 1
8893

8994
# send to stdout
9095
if args.libsvm:
@@ -95,3 +100,4 @@ def above_threshold(point, threshold):
95100
else:
96101
print("point=%s => %d" % (point, class_))
97102

103+
sys.stderr.write("Class 1 = %d Class 2 = %d\n" % (nclass1, args.npoints - nclass1))

0 commit comments

Comments
 (0)