Exemple #1
0
        public static void StartBehaviorFeatureHistoryThread()
        {
            BehaviorFeatureHistoryAnalysis bfha = new BehaviorFeatureHistoryAnalysis();

            LoadBehaviorFeatureHistoryThread = new Thread(new ThreadStart(bfha.TimingAutoUpdateBehaviorFeature));
            LoadBehaviorFeatureHistoryThread.Start();
        }
Exemple #2
0
        private static void InitalBehaviorFeatures()
        {
            string strFileName = "BehaviorFeatures.xml"; //用户的行为问卷结果?

            BehaviorFeatureAnalysis.LoadBehaviorFeatureFromXML(strFileName);

            string strEmotionHistory = "EmotionPredictionsHistory";

            Recommendation.LoadEmotionPredictionsHistory(strEmotionHistory);//加载心理分析结果

            string fileName2 = "BehaviorFeaturesHistory.xml";

            BehaviorFeatureHistoryAnalysis.LoadBehaviorFeatureHistoryAnalysis(fileName2);
        }
 public static void StartBehaviorFeatureHistoryThread()
 {
     BehaviorFeatureHistoryAnalysis bfha = new BehaviorFeatureHistoryAnalysis();
     LoadBehaviorFeatureHistoryThread = new Thread(new ThreadStart(bfha.TimingAutoUpdateBehaviorFeature));
     LoadBehaviorFeatureHistoryThread.Start();
 }