forked from szcf-weiya/ESL-CN
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
badf40c
commit e4dca5b
Showing
5 changed files
with
72 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
...port-Vector-Machines-and-Flexible-Discriminants/Computational-Considerations.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# 计算上的考虑 | ||
|
||
| 原文 | [The Elements of Statistical Learning](../book/The Elements of Statistical Learning.pdf#page=474) | | ||
| ---- | ---------------------------------------- | | ||
| 翻译 | szcf-weiya | | ||
| 时间 | 2018-08-09 | | ||
|状态 |Done| | ||
|
||
|
||
当有 $N$ 个训练情形,$p$ 个预测变量,以及 $m$ 个支持向量时,并假设 $m\approx N$,支持向量机需要 $m^3+mN+mpN$ 次操作。尽管存在计算上的捷径 (Platt, 1999),但他们不能很好地随着 $N$ 缩放。因为他们更新很快,读者应该在网上搜索最新的技巧。 | ||
|
||
LDA 需要 $Np^2+p^3$ 次操作,PDA 也一样。FDA 的复杂度取决于使用的回归方法。许多技巧关于 $N$ 是线性的,比如可加模型和 MARS。一般的样条和基于核的回归方法一般需要 $N^3$ 次操作。 | ||
|
||
R 中的包 `mda` 可以用来拟合 FDA,PDA 和 MDA 模型,S-PLUS 中也有软件包。 | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters