(PECL fann >= 1.0.0)
fann_save — 將整個網(wǎng)絡(luò)保存至配置文件。
$ann
, string $configuration_file
): bool將整個網(wǎng)絡(luò)保存至配置文件。
配置文件包含了神經(jīng)網(wǎng)絡(luò)的所有信息,并且能夠通過 fann_create_from_file() 函數(shù)來創(chuàng)建一個原神經(jīng)網(wǎng)絡(luò)的精確副本以及與神經(jīng)網(wǎng)絡(luò)關(guān)聯(lián)的所有參數(shù)。
這三個參數(shù) (fann_set_callback(), fann_set_error_log(), fann_set_user_data()) 不保存在文件中,因為他們不能被安全地移植到不同的位置。當使用類似 fann_get_MSE() 函數(shù)訓(xùn)練時,生成的臨時參數(shù)也不會被保存起來。
ann
神經(jīng)網(wǎng)絡(luò) 資源。
configuration_file
配置文件的路徑。
成功時返回 true
,其它情況下返回 false
。