2013-11-09 52 views
0

我正在嘗試在Stanford NER中使用交叉驗證。 feature factory列出3個屬性:在斯坦福大學NER的交叉驗證

numFolds int 1 The number of folds to use for cross-validation. 
startFold int 1 The starting fold to run. 
numFoldsToRun int 1 The number of folds to run. 

我認爲這應該用於交叉驗證。但我不認爲他們真的有用。將numFolds設置爲1或10並不會改變訓練的運行時間。奇怪的是,使用numFoldsToRun給出以下警告:

Unknown property: |numFoldsToRun| 

回答

1

你說得對。這些選項尚未實施。如果您想要進行交叉驗證實驗,您必須通過自己準備數據集來手動完成交叉驗證實驗。 (對不起!)

相關問題