Skip to content

Commit

Permalink
Add former results dir back in with modified files
Browse files Browse the repository at this point in the history
  • Loading branch information
cogmission committed Oct 2, 2016
1 parent ddf61ee commit bf2de21
Show file tree
Hide file tree
Showing 632 changed files with 3,837,840 additions and 179,909 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ data_test/
deprecated/
nab.egg-info/
.idea/
.project
.pydevproject
htmjava.log
nab/detectors/htmjava/.pydevproject

# Generated files

Expand Down
43 changes: 43 additions & 0 deletions build.gradle
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)
2 changes: 2 additions & 0 deletions results/README.md
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.
Loading

0 comments on commit bf2de21

Please sign in to comment.