-
Notifications
You must be signed in to change notification settings - Fork 1
/
SMILE_main.asv
executable file
·53 lines (47 loc) · 2.69 KB
/
SMILE_main.asv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
%% Main file to run with SMILE.
%
% SMILE optimizes your use through a machine learning algorithm. Follow the program instructions in
% the command prompt. There are 4 running modes: ‘Learn’, ‘Test’, ‘Run’, and ‘Demo’
%
% ‘Learn’ — The program will ask you to indicate your mental state (negative, positive, or
% neutral). This is how it calibrates to a new user. Approximately 50 inputs should
% be given to the program before using ‘Test’ mode.
% ‘Test’ — The program will attempt to guess your mental state, and ask for feedback. This
% mode continues to apply machine learning to improve its ability to predict your
% mental state, and will be useful in ensuring that SMILE is working for you before
% using ‘Run’ mode.
% ‘Run’ — The program will guess your mental state and provide biofeedback to you via audio.
% No machine learning is active here, and as such this mode should be used after
% using ‘Test’ mode to validate SMILE’s efficacy.
% ‘Demo’ — Runs the demonstration script we used for showcasing to the industry panel. The
% program makes and averages six recordings to guess mental state. Implements a
% decision tree from prior machine learning
close all
clear all
clc
% Intro text
fprintf(['##########################################################################################\n\n'...
'Welcome to SMILE, an EEG headband that records your emotional state and provides\n'...
'feedback to improve your mood, and hopefully in turn your productivity and outlook\n'...
'on life.\n\n'...
'SMILE''s performance is improved by machine learning algorithms that customize the\n'...
'experience for you and your specific brain waves; that way, we provide robust responses\n'...
'to all consumers.\n\n'...
'To conduct machine learning, run ''learn'' mode. To test SMILE''s responses and improve\n'...
'the machine learning, run ''test'' mode. To use SMILE with audio biofeedback, run\n'...
'''run'' mode. To run the demonstration we gave to the industry panel, open the file\n'...
'''SMILE_demo.m'' and run ''demo'' mode.
% h = EmotivSMILE();
running = true;
while running
mode = lower(input('What mode would you like to run with? (q = quit): ', 's'));
while ~strfind('learn test run demo q', )
disp('Please answer learn, test, run, demo, or q');
mode = lower(input('What mode would you like to run with? (q = quit): ', 's'));
end
if mode == 'q'
running = false;
else
h.runSMILE(mode);
end
end