張量流和深度學習主要用於圖像處理(分類,識別),NLP,語音和文本處理。我以前使用Spark MLLIB和Mahout? Tensorflow有深度神經網絡的例子 - https://www.tensorflow.org/tutorials/wide_and_deep。邏輯迴歸,梯度增強樹等可以在Tensorflow或DL框架中建模嗎?可以使用Tensorflow/Deep Learning進行梯度增強樹,Logistic迴歸?
0
A
回答
2
是的,當然。事實上,你可以找到很多的例子:
有喜歡tf.contrib.learn.LinearClassifier一些準備實現在https://www.tensorflow.org/tutorials/wide
或者是這樣的:https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/2_BasicModels/logistic_regression.py在您使用tf.matmul和適當的激活。
甚至有東西與梯度提升:https://arogozhnikov.github.io/2016/07/05/gradient_boosting_playground.html
相關問題
- 1. 梯度增強樹庫
- 2. Logistic迴歸的批次梯度下降
- 3. Logistic迴歸梯度下降在Matlab
- 4. 使用Mahout進行Logistic迴歸
- 5. 使用R和Hadoop進行Logistic迴歸
- 6. 決策樹與Logistic迴歸
- 7. 在Python中使用隨機梯度下降進行嶺迴歸
- 8. Logistic迴歸使用R
- 9. Python Logistic迴歸
- 10. Logistic迴歸Python
- 11. Logistic迴歸宏
- 12. 功能工程的梯度增強樹? (Rank)
- 13. Logistic迴歸錯誤
- 14. 使用JAMA lib進行Logistic迴歸的成本函數
- 15. Logistic迴歸在scikitlearn
- 16. 簡單梯度增強算法
- 17. Logistic迴歸中的排序
- 18. 使用s3數據與SparkR Logistic迴歸
- 19. Logistic迴歸使用澤裏格柯[R]
- 20. 使用批梯度下降訓練單個線性神經元進行迴歸
- 21. logistic迴歸中的折刀
- 22. 套袋logistic迴歸r
- 23. Logistic迴歸使用Python中的Logit()和飛度()
- 24. Logistic迴歸雙循環R
- 25. 錯誤代碼logistic迴歸
- 26. 多重Logistic迴歸在Python
- 27. Python或SQL Logistic迴歸
- 28. 新增CSS梯度
- 29. 牛頓梯度下降線性迴歸
- 30. 我們可以使用深度神經網絡進行迴歸問題嗎?
謝謝安德烈。你可以評論一下使用Tensorflow NN的準確性,比如Scikit學習。我問的原因是,CNN已經打敗了傳統的機器學習結果。 –
這真的取決於情況。神經網絡通常需要大量的數據,更多的計算資源和更多的時間進行模型調整。 CNN也只適用於某些問題。有時候這個問題很容易使用通常的機器學習模型。神經網絡也缺乏可解釋性,這在業務中可能是必需的。 –