查看 Spark 中派生的機器學習模型 (view machine learning model derived in Spark)


問題描述

查看 Spark 中派生的機器學習模型 (view machine learning model derived in Spark)

我有一個一般性問題,我想這對許多 Spark ML 用戶來說很常見,但我在互聯網上搜索,並沒有找到答案。

假設我使用其中一個Spark ML 包中的估計器,用於將數據集與模型擬合。如何查看模型?例如模型是決策樹,如何查看實際樹?所有節點、分裂等。

謝謝,‑Fan


參考解法

方法 1:

For a decision tree:

tree_model.toDebugString()

Not all algorithms have visual components, and even some that may have visual components do not necessarily have that aspect implemented in Spark.

(by Fan L.Katya Willard)

參考文件

  1. view machine learning model derived in Spark (CC BY‑SA 2.5/3.0/4.0)

#scale #apache-spark #Machine-Learning






相關問題

Java縮放像素? (Java scaled pixels?)

Android - Webview 縮放圖像以適應最大尺寸 (Android - Webview scale image to fit biggest dimension)

使用 CGAffineTransform 時限制 UIImageView 的大小 (Limitting UIImageView size while using CGAffineTransform)

Android WallpaperManager 將位圖縮放得太小 (Android WallpaperManager scales Bitmap too small)

如何在沒有像素模糊的情況下調整 html5 畫布的大小 (How to resize html5 canvas without pixel blur)

查看 Spark 中派生的機器學習模型 (view machine learning model derived in Spark)

圖像保持點位置的比例分辨率 (Scale resolution of image keeping point locations)

ScaleGestureDetector.OnScaleGestureListener.onScaleEnd() 方法未命中 (ScaleGestureDetector.OnScaleGestureListener.onScaleEnd() method not being hit)

在 scale_x_continuous 中使用日期與中斷 (Using date in scale_x_continuous with breaks)

如何在不破壞容器邊界半徑的情況下創建與 Safari 兼容的過渡變換比例 (How would I create a Safari-compatible Transition Transform Scale without breaking the container's border-radius)

如何在 Flutter 中相對於另一個小部件定位小部件? (how can I position a widget relative to another in Flutter?)

Android 導入的位圖在 Canvas 上太大 (Android imported Bitmaps too large on Canvas)







留言討論