0%

折腾了上下三百年,终于找到了模板里面的
optimizier错了,直接强行改就行。

.gitconfig

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[user]
email = fangyh09@gmail.com
name = fangyh09
[oh-my-zsh]
hide-status = 1
[core]
autocrlf = input

[merge]
tool = kdiff3
[mergetool "kdiff3"]
cmd = /Applications/kdiff3.app/Contents/MacOS/kdiff3 \"$BASE\" \"$LOCAL\" \"$REMOTE\" -o \"$MERGED\"
trustExitCode = false
path = /Applications/kdiff3.app/Contents/MacOS/kdiff3
[mergetool]
keepBackup = false

[diff]
tool = kdiff3
[difftool "kdiff3"]
cmd = /Applications/kdiff3.app/Contents/MacOS/kdiff3 $LOCAL $REMOTE%
1
git mergetool README.md

低维数据,小样本,不如SVM低维数据,大样本量,不如各种ensemble类算法,有时候甚至连混合高斯都不如…高维数据,小样本量,不如random forest或者xgboost类算法,有时候甚至不如naive Bayes低维时序数据,小样本量,大部分情况下比不过HMM,ARIMA一类的

作者:YukiRain
链接:https://www.zhihu.com/question/277551944/answer/445218406
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

纠结蛮久,有的时候pycharm import失败,但是命令行里
可以运行。

原来pycharm里面的python path只有根目录,所以在import
的时候必须从根目录开始import.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"latex-workshop.view.pdf.viewer": "browser",
"latex-workshop.latex.tools": [
{
"name": "latexmk",
"command": "latexmk",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"%DOC%"
]
},
{
"name": "xelatex",
"command": "xelatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "pdflatex",
"command": "pdflatex",
"args": [
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"%DOC%"
]
},
{
"name": "bibtex",
"command": "bibtex",
"args": [
"%DOCFILE%"
]
}
],
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
]
},
{
"name": "latexmk",
"tools": [
"latexmk"
]
},

{
"name": "pdflatex -> bibtex -> pdflatex*2",
"tools": [
"pdflatex",
"bibtex",
"pdflatex",
"pdflatex"
]
}
]
}