forked from numenta/NAB
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add former results dir back in with modified files
- Loading branch information
cogmission
committed
Oct 2, 2016
1 parent
ddf61ee
commit bf2de21
Showing
632 changed files
with
3,837,840 additions
and
179,909 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,43 @@ | ||
apply plugin: 'java' | ||
|
||
sourceCompatibility = 1.8 | ||
targetCompatibility = 1.8 | ||
archivesBaseName = 'htm.java-nab' | ||
|
||
|
||
repositories { | ||
mavenCentral() | ||
maven { | ||
url 'https://oss.sonatype.org/content/repositories/snapshots' | ||
} | ||
maven { | ||
url 'http://metaware.us/maven3' | ||
} | ||
} | ||
|
||
dependencies { | ||
compile group: 'org.numenta', name: 'htm.java', version: '0.6.9' | ||
compile group: 'com.google.guava', name: 'guava', version: '19.0' | ||
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.10' | ||
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.10' | ||
compile group: 'net.sf.jopt-simple', name: 'jopt-simple', version: '4.6' | ||
} | ||
|
||
jar { | ||
manifest { | ||
attributes 'Implementation-Title': 'NAB detector for htm.java', | ||
'Implementation-Version': '0.0.1', | ||
'Main-Class': 'nab.detectors.htmjava.HTMModel', | ||
'Class-Path': configurations.runtime.files.collect {"$it.name"}.join(' ') | ||
} | ||
} | ||
|
||
clean { | ||
delete fileTree(dir: '../../../' , include: 'htmjava.log') | ||
} | ||
|
||
task copyToLib(type: Copy) { | ||
into "$buildDir/libs" | ||
from configurations.runtime | ||
} | ||
assemble.dependsOn(copyToLib) |
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,2 @@ | ||
These are the raw results CSV files reflecting NAB v1.0. | ||
Please see the [Scoreboard](https://github.com/numenta/NAB/#scoreboard) in the main README. |
Oops, something went wrong.