public static void StartBehaviorFeatureHistoryThread() { BehaviorFeatureHistoryAnalysis bfha = new BehaviorFeatureHistoryAnalysis(); LoadBehaviorFeatureHistoryThread = new Thread(new ThreadStart(bfha.TimingAutoUpdateBehaviorFeature)); LoadBehaviorFeatureHistoryThread.Start(); }
private static void InitalBehaviorFeatures() { string strFileName = "BehaviorFeatures.xml"; //用户的行为问卷结果? BehaviorFeatureAnalysis.LoadBehaviorFeatureFromXML(strFileName); string strEmotionHistory = "EmotionPredictionsHistory"; Recommendation.LoadEmotionPredictionsHistory(strEmotionHistory);//加载心理分析结果 string fileName2 = "BehaviorFeaturesHistory.xml"; BehaviorFeatureHistoryAnalysis.LoadBehaviorFeatureHistoryAnalysis(fileName2); }