Skip to content

Commit

Permalink
Merge pull request #55 from clulab/kwalcock/revert-to-concat
Browse files Browse the repository at this point in the history
Add comments about models
  • Loading branch information
kwalcock authored Jan 3, 2024
2 parents ac647eb + 83b8e95 commit 6302a9e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,17 @@ resolvers ++= Seq(

libraryDependencies ++= {
Seq(
// Models version 0.1.0 work when LinearLayer.USE_CONCAT == true.
"org.clulab" % "deberta-onnx-model" % "0.1.0",
"org.clulab" % "roberta-onnx-model" % "0.1.0",

// Models version 0.2.0 work when LinearLayer.USE_CONCAT == false.
// Models of different versions cannot be combined into a single project
// because the resource names will conflict. The choice is forced.
// "org.clulab" % "deberta-onnx-model" % "0.2.0",
// "org.clulab" % "electra-onnx-model" % "0.2.0",
// "org.clulab" % "roberta-onnx-model" % "0.2.0",

"org.scalatest" %% "scalatest" % "3.2.15" % "test"
)
}
Expand Down

0 comments on commit 6302a9e

Please sign in to comment.