forked from numenta/nupic.core-legacy
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
481ad84
commit 19ef852
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
|
||
#include <string> | ||
#include <fstream> | ||
#include <streambuf> | ||
#include <iostream> | ||
|
||
using namespace std; | ||
|
||
|
||
int main() { | ||
cout << "ASCII" << endl; | ||
|
||
auto dataFilename = "./ascii.cpp"; | ||
ifstream dataFile( dataFilename ); | ||
string str((istreambuf_iterator<char>(dataFile)), istreambuf_iterator<char>()); | ||
|
||
// Make model | ||
|
||
// Run model | ||
|
||
// Measure online stability | ||
|
||
// Measure inter/intra catagory overlap | ||
|
||
// Measure whole word classification accuracy | ||
} |