Human Motion Recognition Based on Incremental Learning and Smartphone Sensors

来源 :ZTE Communications | 被引量 : 0次 | 上传用户:lilinchang0105
下载到本地 , 更方便阅读
声明 : 本文档内容版权归属内容提供方 , 如果您对本文有版权争议 , 可与客服联系进行内容授权或下架
论文部分内容阅读
  Abstract Batch processing mode is widely used in the training process of human motion recognition. After training, the motion classifier usually remains invariable. However, if the classifier is to be expanded, all historical data must be gathered for retraining. This consumes a huge amount of storage space, and the new training process will be more complicated. In this paper, we use an incremental learning method to model the motion classifier. A weighted decision tree is proposed to help illustrate the process, and the probability sampling method is also used. The results show that with continuous learning, the motion classifier is more precise. The average classification precision for the weighted decision tree was 88.43% in a typical test. Incremental learning consumes much less time than the batch processing mode when the input training data comes continuously.
  Keywords human motion recognition; incremental learning; mapping function; weighted decision tree; probability sampling
  1 Introduction
  Human motion recognition involves recognizing what a person is doing and is an important aspect of context awareness [1]. It can be used for diverse purposes, such as ubiquitous computing, sports training, virtual reality, and health care. A promising application is remote monitoring of elderly people who live alone and need support. An emergency situation arising from a fall could be detected and responded to quickly [2]. Recently, sports bracelets that detect a person’s motion have become very popular. Such bracelets can calculate how many calories a person consumes in a day and give reminders about healthy lifestyle. Human motion recognition has also been introduced into personal navigation to help increase the location accuracy [3]-[5].
  Methods of motion recognition and classification include computer vision and inertial sensor data processing. Early research on motion recognition has focused on vision?based systems with one or more cameras [6], [7]. A camera system is practical when motion is confined to a limited area, such as an office or house, and the environment is well?lit. However, when a person is moving from place to place, a camera system is much less convenient because it cannot move in the same way a person does. In terms of privacy, a vision?based system puts a degree of psychological pressure on a person and causes them to act unnaturally. As well as vision?based solutions, sensor?based solutions are also extensively used to study human motion [8]-[11]. Most previous research on motion recognition has assumed that inertial sensors are fixed on the human body in a known orientation [12], [13]. In a well?cited work [14], multiple accelerometer sensors worn on different parts of the human body detect common activities, such as sitting, standing, walking or running. In [15], a small low?power sensor board is mounted at a single location on the body. Then, a hybrid approach is taken to recognize activities. This approach combines the boosting algorithm, which discriminatively selects useful features, and HMMs, which capture the temporal regularities and smoothness of activities. However, the assumption made in laboratory experiments usually cannot be made in a regular mobile environment. In some other research, a phone has been used as the sensor to collect motion data for offline analysis [16], [17]. In [18], a phone?centric sensing system is described. The position of the mobile phone on the human body is assumed to be fixed—e.g., in a pocket, clipped to a belt, or on a lanyard—and an inference model is trained according to the phone position. Compared to image?processing?based motion recognition, inertial?sensor?based motion recognition is cheaper, less limited by the environment, and involves smaller devices. Such sensors have already been integrated into smartphones, which are developing rapidly. Therefore, inertial?sensor?based motion recognition may be more popular in the future.   To recognize human motion, a classifier should be modeled. In the training process, an algorithm can be divided into batch?processing mode and incremental?learning mode. In batch?processing mode, all the history training data is used to model the motion classifier. When the new training data is available and the classifier needs to be updated, all the history data must be gathered again to retrain the classifier. Therefore, all the training data must be preserved. This means that a huge amount of storage space is needed. As the amount of input training data increases, the training process becomes more complex and takes longer. Most current research on vision? and inertial?sensor?based human motion recognition focuses on this processing mode. Incremental learning only uses new incoming training data to update the classifier model; therefore, updating is more efficient, history data does not need to be stored, and much free space is spared. In [19], the authors propose pattern recognition based on neural networks and learning new chunks of patterns while keeping the previous ones intact. In [20], the authors suggest Learn++, an approach inspired by Adaboost. This approach is based on neural?network?based ensemble classifiers working on a digital optics database. In [21], a Gaussian mixture model and resource allocation for learning were applied in the context of a dormitory to study the habits of students. In [22], the authors propose an approach to incrementally learning the relationship between motion primitives in order to form longer behaviors. In general, when the training data set is huge and data is continuously coming in, incremental learning mode is a better choice.
  The main goal of our research is to provide a complete solution for human motion recognition based on incremental learning and smartphone inertial sensors. We illustrate the flow of motion pattern recognition and typical motion feature sets. We also show how to apply incremental learning to human motion recognition in detail. At the same time, we develop a weighted decision tree for the incremental learning framework.
  The remainder of this paper is organized as follows. In section 2, we describe the general pattern?recognition framework, date preprocessing, and feature extraction. In section 3, we discuss the incremental learning method used for human motion recognition. In section 4, we discuss the experimental results. In section 5, we make concluding remarks.
  2 Motion Recognition   2.1 PatternRecognition Framework
  Pattern recognition is a subject dealing with object classification and recognition. It encompasses face identification, character recognition, and voice recognition. It also encompasses human motion recognition. A general pattern?recognition system framework is shown in Fig. 1. The components of this framework are defined in Table 1.
  Because raw sensor data is just a series of waves, it cannot be directly used for pattern recognition. Therefore, pattern features are extracted in order to describe the patterns. A pattern may have many features; however, more features do not mean better performance. If different patterns cannot discriminate when the chosen features are applied, the designed classifier performs badly. Feature selection (feature compression) is an important part of pattern recognition. With a well?selected feature subset, the generated classifier has a higher classification rate. Calculation complexity is also greatly reduced. The classifier is designed after the feature?selection process is completed. There are two methods for training a classifier: supervised learning (also called supervised clustering) and unsupervised learning. The main difference between these methods is that the labels of instances in supervised learning are known to the learner. This is not the case for unsupervised learning. The performance of the classifier is evaluated using test instances. The components shown in Table 1 are not independent. To improve overall performance, one component may feed back to the previous component, and the previous component is designed again.
  In this paper, we use the general pattern?recognition framework to recognize human motion. We mainly focus on the classifier design component; the feature extraction and feature selection components are merged into one procedure.
  2.2 Motion Definitions
  Common human motions include keeping still, walking, running, climbing stairs, using an elevator, driving, and taking a bus. The possible motion set differs in different scenarios. In this paper, we limit the scenario to an office. The motions related to this scenario are shown in Table 2.
  2.3 Data Collection and Preprocessing
  In this paper, a three?axis linear smartphone accelerometer is used to collect the raw motion data of a person. In fact, instead of the total acceleration, the linear acceleration infers the motions of a human. The collection process is controlled by an application we developed. Through a simple graphic user interface, we can start or stop collecting. The sensor sampling rate is 50 Hz, so we obtain 50 raw samples per second.   Because there are some noises in the raw sensor data, a five?stage moving window is used to eliminate them. Fig. 2 shows the output of the moving window is smoother than the raw linear accelerometer data.
  2.4 Feature Extraction
  Features from the linear acceleration are used for motion recognition. In most of the previous work involving inertial sensors for motion recognition, the sensors are mounted on the human body in a known orientation and position. However, this is not practical in real life because of the flexible use of smartphones. To avoid the orientation problem, instead of directly using the features from x, y, z axes, the vertical and horizontal components of the linear acceleration are extracted by projecting the linear acceleration vector to the gravity vector. Some smartphones have the gravity sensor imbedded directly. With others, the gravity can be obtained using the following method. First, the smartphone is kept still for a few seconds. Then, the averages of the three axis readings are calculated as the approximation of the gravity vector [23].
  Suppose is the linear acceleration vector and is the gravity vector. Then the vertical component of linear acceleration is and the horizontal component of the linear acceleration is .
  Both time and frequency domain features are extracted to construct the feature vector. In the time domain, mean, variance, skewness, kurtosis, and so on are the features used. The formulas for these features are shown in Table 3. In the frequency domain, an FFT algorithm is applied, and first dominant frequency, second dominant frequency, and the amplitude of the first and second dominant frequencies are the features used. All the features used are shown in Table 4. The instance window for extracting features is 2 s, and a 50% overlapping window is used to obtain feature vectors more efficiently. This has been demonstrated to be useful [24].
  3 Incremental Learning
  Recently, incremental learning has been popular in data mining and has attracted the attention of both academia and industry. Many of today’s data?intensive computing applications require an algorithm that is capable of incrementally learning from large?scale dynamic data. An incremental learning algorithm learns new knowledge continuously over time and updates the knowledge system to benefit future learning and decision?making.
  In the human motion recognition domain, most researchers have used batch processing methods to recognize human motion. A classifier that uses batch processing keeps an invariable knowledge system after the learning. Usually, the classifier cannot learn new knowledge directly in order to expand itself unless all historical training data is gathered together with the new training data. Compared with incremental learning, batch mode learning, which updates itself, requires much storage space for historical training data, and the new training process is slower.   3.1 Framework for Incremental Learning
  Inspired by the classification performance in [25], we use a similar incremental learning framework for human motion recognition. Fig. 3 gives an overview of the algorithm. The learner is continuously presented with the training data flows over time. The previous knowledge in this case includes the hypothesis, which was developed at time , and the distribution functionis applied to the data set . For the first block of the received training data, the initial distribution function is given a uniform distribution because nothing has been learned yet. As data blocks continually come in, a series of distribution functions is developed to represent the learning capability of the data in each block. Based on distribution function, a hypothesis, which is a human motion classifier, can be developed. In this classifier, the decision boundary is automatically forced to focus more on difficult?to?learn regions. When and have been obtained, the system uses its knowledge to facilitate learning from the next block of training data.
  Algorithm 1 can be divided into two parts. First, a mapping function estimates the initial distribution function of the current training data using the last input training data set and its corresponding distribution function. Second, a classifier using training data with probability distribution function is developed.
  Algorithm 1. Incremental learning algorithm
  Input: Sequence of data chunks, each data chunk includes some instances. An instance is composed of a feature vector and a label.
  Output: Afterclassifiers have been trained, we obtainbasic classifiers and their corresponding weights. The final output is obtained by the combination of these. Here, is the weight of each basic classifier:
  3.2 Mapping Function Design
  The mapping function is an important component in the incremental learning framework. It connects past experience to the newly received data and adapts such knowledge to the data sets received in future. Nonlinear regression models can be used as well as mapping functions. Here, we consider support vector regression (SVR) [26]. Supposeis the estimated initial weight for instance:
  whereandare the slope and intercept of the linear estimation function, respectively. To obtain an accurate estimation, a convex optimization problem can be extracted:
  Alternative strategies can be used as well. For example, other types of regression model, such as multilayer perceptron or regression tree, can be integrated into the incremental learning framework according the application requirements.   3.3 Hypothesis Based on ProbabilityDistributed Training Data
  In the conventional classifier design process, all instances in the training data set have the same weight. This means that instances that are difficult to classify are treated the same as those that are not. However, instances that are difficult to classify should be weighted more heavily so that they will be more easily recognized in the newly designed classifier.
  Here, we introduce two methods for classifier modeling, both of which use the probability distributed training data. With the first method, the probability is used as the weight of the instance in the calculation of the decision boundary. We illustrate this method in the proposed weighted decision?tree algorithm. With the second method, the probability distribution function is used as the sampling probability. All training instances are given a sampling probability and sampled into the real training set. The higher the instance’s probability, the easier it is added to the real training set.
  3.3.1 Weighted Decision Tree
  Decision tree is a classic algorithm used in pattern recognition and machine learning. It uses the information entropy gain to split training data, and it constructs a tree to represent the classifier. The information entropy of a tree node in the decision?tree algorithm is given by:
  whereis the current node, and is the probability of the classin node t. In a conventional decision tree, it is, in whichis the number of instances belonging to class, andis the total number of instances in node.
  When nodeis split, maximum entropy gain criterion is used. The formula is:
  whereis the left child node, is the number of the instances in the left child node, is the right child node, andis the number of instances in the right child node. In the conventional decision tree, all the instance have the same weight, i.e., .
  In this paper, we propose a weighted decision tree in which each training instance is given a different weight instead of (the original decision tree is a special case of the weighted decision tree). Thus, the heavier the weight of an instance, the bigger the information entropy of its class. This forces the decision boundary to focus on the more heavily weighted instances, which are difficult to learn. Thus, in the next incoming data block, the instance that is difficult to learn is weighted more heavily, and the final classifier will recognize it more easily.   In the information entropy formula, is the sum of the weights of the instances in class. In the split formula, the factor is the sum of the weights of instances in the left child node. The factor is the sum of the weights of instances in the right child node. Thus, the instance that is difficult to learn will be weighted more heavily, and the instance that is easy to learn weighted more lightly.
  3.3.2 Sampling Probability Function
  With the sampling probability function method, all training data is sampled into the real training set according to their probability. The instance which is hard to learn will have a higher probability to be sampled into the real training set. However, low probability instance will have a lower probability to be chosen into the final training set. That means there may exist several duplicates of the hard instance in the real training set, and easy instance may not exist in the final training set. More basic classifier category can be contained in this framework.
  4 Experiments and Evaluation
  The device used in our experiments is a Google Nexus 5. This smartphone has a built?in tri?axial MPU 6515 accelerometer that records the user’s raw motion data. The Android system uses a filtering algorithm to extract the linear accelerometer and gravity accelerometer. Experimental data was collected from two males. One was 1.85 m tall and weighed 70 kg. The other was 1.75 m tall and weighed 65 kg. Both males stood still, walked, ran, and climbed up and down stairs in and around our office building. The smartphone was held in the hand with the phone screen facing upwards. All sensor data was stored and processed offline.
  4.1 Classification Precision Test
  To determine the performance of incremental learning, the data was split into many blocks. In our test, there were 250 instances in a block; however, it is not essential to have the same number of instances in each block. The data blocks were input into the incremental?learning framework to simulate the continuous learning process. The two important parts of the incremental learning process are mapping function design and motion classifier modeling based on probability?distributed training data. An artificial neural network was used for the mapping function because such a network is well integrated into the MATLAB toolbox. Weighted decision tree and sampling probability methods were used for classifier modeling. At the same time, batch processing method using an artificial neural network is used for the comparison.   The results of classification based on different learning methods are shown in Fig. 4. Incremental learning using three kinds of hypothesis strategy—weighted decision tree (WDT), decision tree with probability sampling (PDT), and artificial neural network with probability sampling (PANN)—results in a higher classification rate with continuous learning. For both user 1 and user 2 probability sampling, PANN performs better than PDT. When WDT is used for user 1, classification precision is only slightly higher than that of PDT when the number of basic classifiers is large enough. However, when WDT is applied to user 2, it performs better than both PDT and PANN, both of which use probability sampling. The increasing curves show that the incremental learning algorithm learns the new knowledge continuously and benefits future decision making. The classification rate of the batch processing method using artificial neural network (BANN) also increases when there is more training data. Both incremental learning and batch learning tend to be stable when there is enough training data. For example, PANN for user 2 needs be completed about ten times to be stable in this scenario. Because batch processing uses the training data sufficiently each time, it has a higher classification precision than incremental learning. Incremental learning using some strategy performs almost as well as batch processing. For user 1, the classification precision of PANN is slightly less than that of BANN (Fig. 4).
  Fig. 5 shows how the classification of each motion changes for incremental learning. Take the incremental learning process of user 1 with WTD for example.
  Because still and run have different feature spaces than other motions, they can be easily recognized. However, according to the smartphone inertial sensors, the person may appear to be doing similar motions when going downstairs, upstairs or walking. These three motions belong to classes of motions that are difficult to learn in this scenario. With continuous learning, the former basic classifier delivers its learned knowledge to the next classifier and forces the decision boundary to focus on the three hard?to?learn regions. Therefore, the hard?to?learn motions will have higher classification precision after learning. The confusion matrix after incremental learning is shown in Table 5. The average of the motion classification precision is 88.43%, which is high enough for many applications.
  4.2 Computational Complexity Test   Although batch processing may be more precise than incremental learning, a huge amount of storage space and more complex computation are required. Incremental learning does not require historical training data to be stored. The computational complexity is shown in Fig. 6. The more complex the computation is, the more time the process requires. Therefore, the amount of time needed to complete the process reflects computational complexity. As training data is continuously input, the training process time is recorded for both incremental learning and batch processing modes (Fig. 6).
  Regardless of which hypothesis which strategy used, the time required for incremental learning remains approximately constant, and training data is continually input. However, the amount of time needed for batch mode learning is linear to the amount of training data. With incremental learning only the new incoming data needs to be disposed. No historical training data needs to be stored or used in the new basic classifier training process, and the time to complete the process only needs to be approximately constant. Batch processing requires historical data to be stored and used to train the new classifier. Each time new training data arrives, the overall amount of training data increases linearly. Therefore, the time required in batch processing mode increases linearly at the same time. The average time consumption for both users is shown in Table 6. The time needed in batch processing mode BANN is several times that in incremental learning mode for both users. Because the time needed in batch processing mode increases linearly as data continually arrives, this ratio continues to increase.
  5 Conclusion
  In this paper, we have used the incremental learning method to recognize human motion. First, a mapping function was used to deliver learned knowledge to incoming data. Then, a basic classifier is modeled according to the training data with distribution. A weighted decision tree was proposed to illustrate hypothesis construction, and a sampling probability method was also employed. With continuous incoming data, the incremental learning method almost has the same classification precision as batch processing method. However, the incremental learning method has lower computational complexity and is much faster in the training phase. Considering the tradeoff between classification precision and training time, incremental learning is better than batch processing when there is huge amount of input data.   Acknowledgement
  The authors would like to thank the editors and the reviewers for their very helpful comments and review. The authors are also grateful to the team members in the Shanghai Key Laboratory of Navigation and Location Based Services of Shanghai Jiao Tong University.
  References
  [1] L. Pei, R. Chen, J. Liu, et al., “Using motion?awareness for the 3D indoor personal navigation on a Smartphone,” in Proc. 24rd International Technical Meeting of the Satellite Division of the Institute of Navigation, Portland, USA, Sept. 2011, pp. 2906-2912.
  [2] K. Altun, B. Barshan, and O. Tun?el, “Comparative study on classifying human activities with miniature inertial and magnetic sensors,” Pattern Recognition, vol. 43, no. 10, pp. 3605-3620, Oct. 2010. doi: 10.1016/j.patcog.2010.04.019.
  [3] C. Liu, L. Pei, J. Qian, et al., “Sequence?based motion recognition assisted pedestrian dead reckoning using a smartphone,” in 6th China Satellite Navigation Conference (CSNC), Xi’an, China, 2015, pp. 741-751,. doi: 10.1007/978?3?662?46632?2_64.
  [4] L. Pei, R. Chen, J. Liu, et al., “Motion recognition assisted indoor wireless navigation on a mobile phone,” in Proc. 23rd International Technical Meeting of The Satellite Division of the Institute of Navigation, Portland, USA, Sept. 2010, pp. 3366-3375.
  [5] J. Qian, L. Pei, J. Ma, R. Ying, and P. Liu, “Vector graph assisted pedestrian dead reckoning using an unconstrained smartphone,” Sensors, vol. 15, no. 3, pp. 5032-5057, Mar. 2015. doi: 10.3390/s150305032.
  [6] T. B. Moeslund and E. Granum, “A survey of computer vision?based human motion capture,” Computer Vision and Image Understanding, vol. 81, no. 3, pp. 231-268, Mar. 2001. doi: 10.1006/cviu.2000.0897.
  [7] L. Wang, W. Hu, and T. Tan, “Recent developments in human motion analysis,” Pattern Recognition, vol. 36, no. 3, pp. 585-601, Mar. 2003. doi: 10.1016/S0031?3203(02)00100?0.
  [8] T. Y. Chung, Y. M. Chen, and C. H. Hsu, “Adaptive momentum?based motion detection approach and its application on handoff in wireless networks,” Sensors, vol. 9, no. 7, pp. 5715-5739, Jul. 2009. doi: 10.3390/s90705715.
  [9] D. T. P. Fong and Y. Y. Chan, “The use of wearable inertial motion sensors in human lower limb biomechanics studies: a systematic review,” Sensors, vol. 10, no. 12, pp. 11556-11565, Dec. 2010. doi: 10.3390/s101211556.
  [10] L. Pei, R. Guinness, R. Chen, et al., “Human behavior cognition using smartphone sensors,” Sensors, vol. 12, no. 2, pp. 1402-1424, Jan. 2013. doi: 10.3390/s130201402.   [11] R. Chen, T. Chu, K. Liu, J. Liu, and Y. Chen, “Inferring human activity in mobile devices by computing multiple contexts,” Sensors, vol. 15, no. 9, pp. 21219-21238, Aug. 2015. doi: 10.3390/s150921219.
  [12] B. Musleh, F. García, J Otamendi, et al., “Identifying and tracking pedestrians based on sensor fusion and motion stability predictions,” Sensors, vol. 10, no. 9, pp. 8028-8053, Aug. 2010. doi: 10.3390/s100908028.
  [13] W. Chen, Z. Fu, R. Chen, et al., “An integrated GPS and multi?sensor pedestrian positioning system for 3D urban navigation,” 2009 Joint Urban Remote Sensing Event, Shanghai, China, May 2009, pp. 1-6. doi: 10.1109/URS.2009.5137690.
  [14] L. Bao and S. S. Intille, “Activity recognition from user?annotated acceleration data,” Pervasive Computing, vol. 3001, pp. 1-17, Apr.2004,. doi: 10.1007/978?3?540?24646?6_1.
  [15] J. Lester, T. Choudhury, N. Kern, et al., “A hybrid discriminative/generative approach for modeling human activities,” in IJCAI, Edinburgh, UK, 2005, pp. 766-772.
  [16] J. Yang, “Toward physical activity diary: motion recognition using simple acceleration features with mobile phones,” in Proc. 1st ACM International Workshop on Interactive Multimedia for Consumer Electronics, Beijing, China, Oct. 2009, pp. 1-10. doi: 10.1145/1631040.1631042.
  [17] J. R. Kwapisz, G. M. Weiss, and S. A. Moore, “Activity recognition using cell phone accelerometers,” ACM SigKDD Explorations Newsletter, vol. 12, no.2, pp. 74-82, Dec. 2011. doi: 10.1145/1964897.1964918.
  [18] E. Miluzzo, N. D. Lane, K. Fodor, et al., “Sensing meets mobile social networks: the design, implementation and evaluation of the cenceme application,” in Proc. 6th ACM Conference on Embedded Network Sensor Systems, Raleigh, USA, Nov. 2008, pp. 337-350. doi: 10.1145/1460412.1460445.
  [19] S. Ozawa, S. Pang, and N. Kasabov, “Incremental learning of chunk data for online pattern classification systems,” IEEE Transactions on Neural Networks, vol. 19, no. 6, pp. 1061-1074, Mar. 2008. doi: 10.1109/TNN.2007.2000059.
  [20] R. Polikar, L. Upda, S. S. Upda, and V. Honavar, “Learn++: an incremental learning algorithm for supervised neural networks,” IEEE Transactions on Systems, Man, and Cybernetics, Part C: Applications and Reviews, vol. 31, no. 4, pp. 497-509, Nov. 2001. doi: 10.1109/5326.983933.
  [21] A. Bouchachia, M. Prossegger, and H. Duman, “Semi?supervised incremental learning,” in IEEE International Conference on Fuzzy Systems (FUZZ), Barcelona, Spain, Jul. 2010, pp. 1-6. doi: 10.1109/FUZZY.2010.5584328.   [22] D. Kulic, C. Ott, D. Lee, J. Ishikawa, and Y. Nakamura, “Incremental learning of full body motion primitives and their sequencing through human motion observation,” The International Journal of Robotics Research, Nov. 2011. doi: 10.1177/0278364911426178.
  [23] L. Pei, J. Liu, R. Guinness, et al., “Using LS?SVM based motion recognition for smartphone indoor wireless positioning,” Sensors, vol. 12, no. 5, pp. 6155-6175, May 2012. doi: 10.3390/s120506155.
  [24] N. Ravi, N. Dandekar, P. Mysore, et al., “Activity recognition from accelerometer data,” in AAAI?05, Pittsburgh, USA, Ju. 2005, pp. 1541-1546.
  [25] H. He, S. Chen, K. Li, et al., “Incremental learning from stream data,” IEEE Transactions on Neural Networks, vol. 22, no. 12, pp. 1901-1914, Oct. 2011. doi: 10.1109/TNN.2011.2171713.
  [26] H. Drucker, C. J. C. Burges, L. Kaufman, et al., “Support vector regression machines,” Advances in Neural Information Processing Systems, vol. 9, pp. 155-161, 1997.
其他文献
变形纱的力学性能和卷曲特性主要取决于拉伸-变形机的拉伸倍数与加热器温度.2个加热辊以不同的速度运行,出丝辊与进丝辊的速度之比定义为拉伸倍数.在拉伸-变形机上设置3种不
急性心肌梗死是冠心病的一种危重表现,特别是在发病后的24小时内,死亡率最高,约有1/3到1/2的心肌梗死患者在住院前死亡。若能及早发现心肌梗死前兆症状并予以处理,至少可避免
Over the past few decades,wireless communications have advanced tremendously and have becomean indispensable part of our lives.Wireless networks have become mor
期刊
就制造业信息化中最关键的应用之一ERP系统的计划与实施进行探讨,帮助制造业用户更好的规划和实施ERP系统应用.
电子口碑已成为现代消费者最优决策参考信息,但目前已有的研究中,虽然有关口碑的研究已经比较成熟,但口碑离散对于消费者行为的影响的研究仍存在争议.而口碑离散反映了已有评
保险风险管理对保险公司的风险控制和盈利能力有相当大的影响,而核保风险管理是保险公司最为有力、最为直接的风险管控手段,是目前学术界和保险业共同关注的焦点。本文对财务核
52岁的林老师,反复发作胸闷、胸痛,医生怀疑为冠心病心绞痛,他以工作忙拒绝了进一步检查,只开了硝酸甘油备用。那天他又感到胸闷,便含服了1片(0.5毫克)硝酸甘油。2分钟后,他
随着大数据时代的到来,面临的数据越来越复杂,矩阵形式的数据问题亟待解决.在这类问题中,需要去估计一个矩阵形式的变量.Zhou和Li[12]在2014年提出了矩阵回归模型的概念,但他们的
著名的管理学家、哈佛大学终身教授迈克尔·波特说过:“做正确的事情,正确地做事”.对于一个企业而言,“做正确的事情”意味着选择一个正确的战略,“正确地做事”则是选择恰
期刊
期刊