Skip to content

Commit

Permalink
Imports geonorm code from Eidos with some minor cleanups.
Browse files Browse the repository at this point in the history
  • Loading branch information
bethard committed Jul 18, 2019
1 parent 463d2b9 commit ca83b9b
Show file tree
Hide file tree
Showing 10 changed files with 104,881 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
.idea
project
target
*.class
*.log
20 changes: 20 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name := "geonorm"
organization := "org.clulab"

scalaVersion := "2.12.8"

libraryDependencies ++= {
val luceneVer = "6.6.6"

Seq(
"org.apache.commons" % "commons-io" % "1.3.2",
"org.tensorflow" % "tensorflow" % "1.12.0",
"org.clulab" % "geonorm-models" % "0.9.5",
"de.bwaldvogel" % "liblinear" % "2.30",
"org.apache.lucene" % "lucene-core" % luceneVer,
"org.apache.lucene" % "lucene-analyzers-common" % luceneVer,
"org.apache.lucene" % "lucene-queryparser" % luceneVer,
"org.apache.lucene" % "lucene-grouping" % luceneVer,
"org.scalatest" %% "scalatest" % "3.0.8" % Test,
)
}
Loading

0 comments on commit ca83b9b

Please sign in to comment.