gpt4 book ai didi

scala - 在 Spark Scala 中实现隔离森林

转载 作者:行者123 更新时间:2023-12-02 09:12:10 25 4
gpt4 key购买 nike

我正在尝试使用 Spark Scala Maven 项目实现隔离森林算法。此链接对此进行了解释:iforest example

我的问题是:当我尝试实现建议的代码时,我收到此错误:对象 iforest 不是包 org.apache.spark.ml 的成员我尝试导入 org.apache.spark.ml 并将 Spark-core 依赖项更改为 vesrion 2.2.0。

<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-core_2.11</artifactId>
<version>2.2.0</version>
</dependency>

请问有什么建议吗?

最佳答案

您可以尝试this Spark/Scala implementation of the isolation forest algorithm ,它在公共(public) Maven 中央存储库中提供了可用的工件。

您可以在项目的 pom.xml 中将依赖项声明为:

<dependency>
<groupId>com.linkedin.isolation-forest</groupId>
<artifactId>isolation-forest_3.2.0_2.12</artifactId>
<version>2.0.8</version>
</dependency>

列出了其他可用的工件版本 here .

关于scala - 在 Spark Scala 中实现隔离森林,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50916005/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com