Abstract

An artificial intelligence integrated application model of supply chain financial risk assessment is constructed. Based on the financial data and supply chain data of listed companies in China’s new energy electric vehicle industry, the supply chain financial credit risk evaluation index system is constructed. The data samples are preprocessed by PCA as the input data of the support vector machine, which effectively solves the problem of high-dimensional data in supply chain finance. By improving the inertia weight of particle swarm optimization and introducing mutation operation, a dynamic mutation particle swarm optimization algorithm is proposed to avoid the problem of particles falling into a local minimum in the process of optimization. Finally, the improved optimization algorithm is used to optimize the parameters of SVM and input AdaBoost integration as a weak classifier to build an integrated model with good performance in many aspects. The model has been successfully applied to the credit risk assessment of China’s new energy vehicle supply chain finance. The comparison with other models shows that the constructed model has certain advantages in performance.

1. Introduction

Supply chain finance has become an emerging model to carry out comprehensive financial services for small and medium-sized enterprises [13]. The operation of the supply chain finance mode depends on the supply chain management activities of enterprises. Financial institutions provide financing design for the capital demander after an overall consideration of the capital flow, logistics, and information flow of the whole supply chain of the enterprise with financing demand. Supply chain finance is based on the good credit evaluation of core enterprises with a strong financial background in the supply chain [47]. At first, the financing model of supply chain finance appeared to solve the financing difficulties of small and medium-sized enterprises in the supply chain. Small and medium-sized enterprises operate on a small scale, and their assets and management capacity are limited. Moreover, small and medium-sized enterprises are generally in the situation of poor credit status, low degree of financial transparency, less or even no asset mortgage and guarantee. These factors lead to banks and other financial institutions unwilling to bear too many risks and inspection costs and provide loans for small and medium-sized enterprises, and the financing cost of small and medium-sized enterprises is often much higher than that of large enterprises. With the business exchanges between core enterprises and small and medium-sized enterprises, it improves their own commercial credit for small and medium-sized enterprises, making it easier for small and medium-sized enterprises to obtain loans from banks and other financial institutions.

Even after years of development, although supply chain finance is well known by more and more people, there are still many problems in practical operation, which need us to conduct more in-depth discussion and exploration [813]. Especially in terms of risk management and control, the risk management problems in supply chain finance deserve special attention. Risk management in supply chain finance emphasizes the antirisk ability of the whole supply chain. Compared with the previous traditional financing model, the access scope of financial participants in the supply chain is extended to the whole supply chain, and the inspection standard is not limited to the financial indicators of an enterprise. Financial institutions implement closed credit to enterprises in the whole supply chain according to the real trade background and upstream and downstream credit strength of the enterprise, mainly based on the sales revenue of the enterprise or the determined future cash flow generated by trade. This is the advantage of supply chain finance. However, there are some risks in supply chain finance. There are many participating enterprises in a supply chain, and the mode of the supply chain will be different. This diversity and complexity may lead to the emergence of enterprises in a supply chain in the financing process with financial institutions. In order to obtain their own interests and maximize their own interests, it may threaten the interests of other cooperative enterprises in the supply chain to be damaged.

To study the risk problem in supply chain finance, for banks, from the uncontrollable risk of financing individual enterprises in the past to the controllable risk of financing enterprises as a whole in the supply chain, and by obtaining different information from each enterprise in the supply chain, firmly grasp the possible risks, keep them at the lowest level, and protect their own interests. For each subject in the supply chain, being able to control the risk of supply chain finance can not only ensure the stable operation of the supply chain system but also improve the efficiency and cooperation of the supply chain.

The vigorous development of information technology [1417] has brought new opportunities to the financial risk assessment of the supply chain. Various advanced artificial intelligence methods, such as support vector machine (SVM) [18, 19], particle swarm optimization (PSO) algorithm [20, 21], and AdaBoost algorithm [22, 23], have been gradually applied in this field. This study is carried out under this background.

2. Credit Risk Evaluation Index System

Under the traditional financing model, there is a severe information asymmetry between the bank and the small and medium-sized enterprises applying for financing. It is difficult to make those small-scale, unsound financial systems, and their small and medium-sized enterprises that meet the requirements of bank guarantees or pledged assets are granted credit. Under the supply chain finance model, the evaluation indicators should consider the relationship between small and medium-sized enterprises and core enterprises and the overall situation of the entire supply chain to more comprehensively and accurately grasp the credit situation of financing enterprises. Therefore, based on the supply chain perspective, this paper considers the financial and nonfinancial status of financing enterprises and core enterprises and the overall operation status of the supply chain. The combination of qualitative and quantitative indicators has redesigned the credit risk evaluation index system to reflect the risk level of the whole chain, as shown in Figure 1.

3. Algorithm

Assuming a training sample set of n samples , is the first sample, is the classification hyperplane equation is (w is the normal vector of the hyperplane, b is the bias). It is assumed that the classification hyperplane can correctly classify samples into two categories, and the samples of the same category are placed on the same side of the hyperplane, that is, satisfying

Then, we can get

The geometric distance between the sample point and the classification hyperplane is , and then, the distance between the two types of samples is , set . The optimal hyperplane should maximize , that is, minimize . Adding penalty factor A and slack variable B to the above problem can be transformed into

Lagrange function is built as

Due to the high-dimensional, nonlinear, and dynamic characteristics of supply chain financial evaluation indicators, SVM needs to introduce a kernel function to calculate the nonlinearity in high-dimensional space. The classification problem is transformed. Compared with several other SVM kernel functions, the radial basis (RBF) kernel function performs better in both linear and nonlinear data sets. Therefore, the radial basis kernel function is selected in this paper: , is input to SVM.

According to equations (2) and (3), the original problem is transformed into a Lagrange dual problem:

Set the optimal Lagrange multiplier , get .

In summary, the optimal classification discriminant function is obtained.

In the standard particle swarm optimization algorithm, the inertia weight ω is usually set to a fixed value, which is challenging to meet the dynamic requirements of the global search capability in the early stage of the algorithm iteration and the local search capability in the later stage. Based on the basic principles of particle swarm optimization, this paper considers the convergence accuracy and convergence speed of the algorithm. It uses the dynamic variation particle swarm optimization (DPSO) to optimize the parameters of the SVM, and the dynamic weights are as followswhere represents the average fitness value of the particle.

and are the maximum and minimum weights, is the fitness value of the current particle, and represent the average fitness value and minimum fitness value of the particle generation, respectively.

For the particle with , its value is . For the particle with , when the particle fitness is the same, the value becomes larger. Otherwise, it becomes smaller. Drawing on the idea of genetic algorithm mutation, the mutation operation is introduced into the particle swarm algorithm. The particles jump out of the original area and enter other new areas to search to find a new group extreme value and cycle the mutation operation until the global optimum is found. The solution, the specific method is as follows.

Let the population fitness variance of the particle swarm bewhere is the number of particles in the particle swarm, and represents the particle’s degree of convergence. As becomes smaller, the particle swarm gradually converges from a random search state. represents the normalized scaling factor, and its values are as follows:

Let the aggregation degree of particles be , and the calculation formula of generation α is as follows: and represent the maximum and minimum fitness values of the standard deviation of all particles, respectively. According to the definition of population aggregation degree, the formula for the mutation probability of generation particles is set as follows: is proportional to the particle aggregation degree , is a fixed constant proportional gain, N represents the size of the population, and represents the dimension of the optimization problem. The algorithm flow is shown in Figure 2.

AdaBoost (adaptive boosting) is an ensemble learning algorithm that strengthens weak learners by iterating over the weights of training samples. In this paper, AdaBoost is used to train the DPSO-SVM learner. The algorithm implementation steps are as follows:

Step 1. Input N initial learning and training sample sets:where is the sample feature of the sample space, is the category symbol of the category space.
Set the weight matrix of the initial training samples:Assuming that the weights of each training sample are equal; namely, .

Step 2. Use , training set data with weight distribution to learn, using DPSO-SVM as the base classifier

Step 3. Calculate the classification error of the base learner:If is greater than the error setting value, go to Step 4; otherwise, the iteration is terminated.

Step 4. Calculate the weight of the DPSO-SVM classifier. SetUpdate the weight of the training sample , is the normalization factor. Then,Return to Step 2 iteration.

Step 5. Combine each DPSO-SVM weak classifier:The final strong classifier model is obtained as

4. Experiment

We select the relatively mature new energy vehicle supply chain in China’s supply chain finance business as the research object. The financial and other relevant data of 60 domestic listed companies in the upstream and downstream of the chain in the past 5 years from 2016 to 2020, a total of 320 samples, excluding 52 samples with abnormal data, and the remaining 268 available samples, and released according to the annual 38 samples with “bad credit” were compared and screened out, and 230 samples with “good credit” were used as initial data.

Since the established evaluation index system has many variables and there is a certain correlation between each index, to simplify the data input to the model on the premise of ensuring the least loss of data information, principal component analysis (PCA) [2426] is used to reduce the dimensionality of the collected data. Table 1 shows the eigenvalues and contribution rates of the principal components. It can be seen from Table 1 that the cumulative contribution rate of the first 12 principal components is 86.6680%, so the first 12 principal components are extracted.

Table 2 shows the 12 linearly independent principal components extracted after the principal component attribute reduction of the 46 supply chain financial risk evaluation indicators of the 268 original data samples. Inputting the dimensionality-reduced data into the evaluation model can significantly improve computational efficiency; it also avoids the problem that the support vector machine RBF kernel function is not good at dealing with dimensionally nonuniform datasets.

Taking the extracted 12 principal components as the input variables of the support vector machine, set 200 samples in the training set, 68 samples in the test set, the class label of bad samples is 1, and the class label of good samples is 0.

The improved particle swarm algorithm optimizes the penalty coefficient C and parameter of the radial basis (RBF) kernel function. The parameters , the population size is 30, and the maximum number of iterations is set to 300, the value range of SVM penalty coefficient and kernel parameter is set to , particle position , particle velocity .

After optimal selection, the parameters of the SVM kernel function are screened to obtain , , which is used as the basic parameter of the model.

Taking DP-SO-SVM as the base classifier, using AdaBoost to integrate DP-SO-SVM, the obtained classification results are compared with the single classifier SVM, PSO-SVM, and BP-AdaBoost. Table 3 compares classification results between different indicators of each model.

Accuracy reflects the ability of the classifier to classify and discriminate the overall samples, that is, the ability of the model to identify good and bad samples correctly. An enterprise with good credit is evaluated as an enterprise with poor credit in the credit evaluation. For the credit institution, it is only the customer’s future loan interest loss. Default risk of credit institutions will lead to irrecoverable loss of principal and interest of credit institutions. Therefore, compared with the Recall indicator, which represents the prediction accuracy rate in instances labeled as positive samples, this paper pays more attention to the size of the specificity indicator, which reflects the prediction accuracy rate in instances labeled as negative samples. Due to the specific sample data, the predicted value of the support vector machine for the test set is a single value, and the ROC curve is degraded. At this time, the AUC index cannot fully reflect the classifier’s performance, so this paper uses Score, means, accuracy, and other indicators were used as the primary evaluation indicators. AUC was used as the auxiliary evaluation indicator.

The results in Table 3 show that all models can effectively classify the data collected in this paper, with the lowest classification accuracy of 87.21%. At the same time, it can be seen that the recognition error of negative samples is always higher than that of positive samples, so, in future research, more attention should be paid to the misclassification rate of bad samples.

Comparing different models, the performance of the PSO-SVM model is significantly improved based on SVM. Using an adaptive mutation particle swarm algorithm to optimize SVM, DPSO-SVM has a better classification effect than standard PSO-SVM. The accuracy of the test set samples is improved from 92.34% to 93.57%. The AdaBoost-DPSO-SVM model integrated with the AdaBoost algorithm has a significant improvement in various indicators, and the model accuracy reaches the highest, 96.13%. Compared with the BP-AdaBoost model, its classification performance is better.

The specificity index of the AdaBoost-DPSO-SVM model is the highest among the five models, indicating that it has the lowest error rate in identifying bad credit companies as good credit companies. The G-means and F1-score index values that comprehensively reflect the output effect of the model are the highest, 97.63% and 97.62%, respectively, indicating that the AdaBoost-DPSO-SVM model proposed in this paper can be better applied to the assessment of supply chain financial credit risk.

5. Conclusions

The research on credit risk first appeared in the field of finance. It is one of the main risk types faced by credit subjects such as enterprises and financial institutions. Many domestic and foreign scholars study credit risk from different perspectives. In our research, we pay more attention to the evaluation of supply chain financial credit risk. The diffusion of credit risk among many subjects is the result of the joint action of internal and external factors such as the psychological and behavioral factors of credit risk holders, the network composed of credit risk holders as nodes, and the behavior of market regulators. The artificial intelligence integrated application model of supply chain financial risk assessment constructed in this paper provides a new perspective for accelerating the supply side structural reform in China’s financial field, making finance better serve the real economy, and realizing high-quality economic development.

Data Availability

The dataset can be accessed upon request.

Conflicts of Interest

The authors declare that there are no conflicts of interest.