Skip to content

Commit

Permalink
Fix bad access column
Browse files Browse the repository at this point in the history
  • Loading branch information
maziyarpanahi committed Mar 12, 2024
1 parent d0ba604 commit 63bf0da
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/scala/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,7 @@ object Main {
val mpnet_lightpipeline = new LightPipeline(pipeline.fit(testData))
mpnet_lightpipeline.annotate(
"Google has announced the release of a beta version of the popular TensorFlow machine learning library")
mpnet_lightpipeline.transform(testData).count()
mpnet_lightpipeline.transform(testData).select("entities").show(false)
mpnet_lightpipeline.transform(testData).select("mpnet").count().show(false)

}

Expand Down

0 comments on commit 63bf0da

Please sign in to comment.