Skip to content

Commit d0cf71d

Browse files
committed
accuracy for application
1 parent 04143a5 commit d0cf71d

File tree

1 file changed

+2
-20
lines changed

1 file changed

+2
-20
lines changed

scripts/keywordSpotting.dml

+2-20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11

2-
32
X = read("tmp/waves.csv", format="csv")
43
y = read("tmp/labels.csv", format="csv")
54

@@ -11,42 +10,25 @@ Xy_shuffled = Xy_shuffled[,1:num_col] # Remove the random column
1110
X_shuffled = Xy_shuffled[,1:(num_col-1)] # Features, excluding the last column which is labels
1211
y_shuffled = Xy_shuffled[,num_col] # Labels, the last column
1312

14-
1513
[X_train, X_test, y_train, y_test] = split(X=X_shuffled, Y=y_shuffled, seed= 13)
1614

17-
# Preprocess with fft Optionally move before split.
1815
[X_train_re, X_train_im] = stft(X_train, 4, 2)
1916
[X_test_re, X_test_im] = stft(X_test, 4, 2)
2017

21-
2218
X_train_re_sq = X_train_re^2
2319
X_train_im_sq = X_train_im^2
2420

25-
2621
X_test_re_sq = X_test_re^2
2722
X_test_im_sq = X_test_im^2
2823

29-
30-
# Sum the squared matrices
3124
sum_X_train_sq = X_train_re_sq + X_train_im_sq
3225
sum_X_test_sq = X_test_re_sq + X_test_im_sq
3326

34-
# Compute the square root of each element in the sum matrix to get the magnitudes
3527
magnitudes_train = sqrt(sum_X_train_sq)
3628
magnitudes_test = sqrt(sum_X_test_sq)
3729

3830
bias = lm(X=magnitudes_train, y=y_train, reg=1e-1, maxi=10, verbose=TRUE)
3931
predictions = lmPredict(X=magnitudes_test, B=bias, verbose=FALSE)
4032

41-
#sign_predictions = sign(predictions)
42-
#sign_Y = sign(y_test)
43-
44-
#correct = sum(sign_predictions == sign_Y)
45-
#total = nrow(y_test)
46-
#accuracy = correct / total
47-
48-
#print(toString(predictions))
49-
#print(toString(accuracy))
50-
51-
R = lmPredictStats(yhat=predictions, ytest=y_test, lm=TRUE)
52-
print(toString(R))
33+
accuracy = auc(Y=y_test, P=predictions)
34+
print(toString(accuracy))

0 commit comments

Comments
 (0)