Skip to main content
Computational Intelligence and Neuroscience logoLink to Computational Intelligence and Neuroscience
. 2022 Jan 10;2022:3769670. doi: 10.1155/2022/3769670

Risk Analysis of Textile Industry Foreign Investment Based on Deep Learning

Jingyi Liu 1, Jiaolong Li 2,
PMCID: PMC8763538  PMID: 35047033

Abstract

With the decline of China's economic growth rate and the uproar of antiglobalization, the textile industry, one of the business cards of China's globalization, is facing a huge impact. When the economic model is undergoing transformation, it is more important to prevent enterprises from falling into financial distress. So, the financial risk early warning is one of the important means to prevent enterprises from falling into financial distress. Aiming at the risk analysis of the textile industry's foreign investment, this paper proposes an analysis method based on deep learning. This method combines residual network (ResNet) and long short-term memory (LSTM) risk prediction model. This method first establishes a risk indicator system for the textile industry and then uses ResNet to complete deep feature extraction, which are further used for LSTM training and testing. The performance of the proposed method is tested based on part of the measured data, and the results show the effectiveness of the proposed method.

1. Introduction

With the slowdown of China's economic growth rate and changes in the growth model, the original crude corporate model has become unsustainable [14]. It has become a matter of course for the people to increase their consumption expectations based on the continuous improvement of living material standards. As a dual-intensive industry of labor and capital, the development of the textile industry plays a key role in the development of China's economy and guarantees the level of employment. Compared with other industries, the textile industry has the characteristics of long process, wide distribution, large number of employees, intensive capital, obvious geographical concentration, and high export ratio. These characteristics have brought the complexity and high risk of China's textile industry. Since the Sino-US trade friction in 2018, the textile industry as the business card of China's manufacturing industry has been frequently hit. The list of additional tariffs imposed by the United States includes textile-related products, which has had a considerable impact on the Chinese textile industry. As an important part of China's foreign investment, scientifically conducting investment risk analysis in the textile industry plays an important role in improving economic benefits.

After years of development in the study of economic forecasting methods, a large number of forecasting models have emerged [515]. These models are divided into two categories: one is based on time series mainly including moving average and trend extrapolation and the other is based on causality, mainly including regression analysis, Markov prediction, and artificial neural network. In addition, the development of deep learning makes the fitting of complex systems more accurate. There are many studies on macroeconomic forecasts at home and abroad. Traditional economic forecasting methods, such as ARIMA and linear regression, have great limitations. ARIMA requires time series data to be stable. The linear regression is poor in fitting complex nonlinear systems. Aiming at the complex nonlinear relationship in macroeconomic forecasting, the neural network model with strong ability to fit nonlinear systems has become a hot spot in the research of macroeconomic forecasting all over the world. There are many studies on the use of BPNN to establish prediction models. Literature [6] built a transmission line project cost prediction model based on BPNN, which could accurately estimate the project cost using a small number of samples. Therefore, it was suitable for comparing the pros and cons of the project in the early stage. Literature [9] combined with the Radial Basis Function (RBF) neural network and unbiased gray model (GM) established a gray RBF neural network prediction model. Through the predictive analysis of fiscal revenue data, it is found that training with this model not only has a fast convergence rate but also strong ability and high model accuracy. Literature [13] proposed a hybrid radial basis neural network, which integrated ridge regression, regression numbers, and radial basis neural networks. It was proved by experiments to predict the daily average trend of stock indexes. This network had a good effect when there are complex nonlinear relations between variables and mutual dependence. After years of research and development, artificial neural networks and their various improved models still cannot completely get rid of the defect that they tend to fall into local minimums and cannot reflect the timing relationship between samples [1624]. However, this timing relationship is common in the economic field, and predictive analysis is of great help. At the same time, long short-term memory (LSTM) in deep learning shows an excellent ability to process time series data in the field of prediction. Literature [18] combined the trend data of steel transaction prices in recent years and trained the LSTM model. This work was compared and analyzed with the support vector regression model and found that the LSTM neural network can more accurately predict the price trend of steel. Literature [20] used deep learning for several years of the Gross Domestic Product (GDP) data in China to establish a prediction model, and the results show that the prediction accuracy based on deep learning was significantly higher than that of ARMA, LR, and exponential regression. Literature [23] aimed at the random and nonlinear characteristics of traffic flow using LSTM and Gated Recurrent Unit (GRU) neural network methods to predict short-term traffic flow. The experiments had proved that the deep learning methods based on recurrent neural network LSTM and GRU performed much better than the ARIMA models and some other methods [2529].

Based on the existing methods, this paper proposes a textile industry foreign investment risk prediction method by combination of LSTM and ResNet [3033]. First, an indicator system is established for investment risks in the textile industry, and feature vectors are constructed to describe the risk levels in the current state. On this basis, ResNet is used to perform further feature learning on the constructed index feature quantity to obtain deep features with stronger descriptive ability. As a reliable deep learning prediction method, LSTM predicts the characteristics learned by ResNet and obtains the current risk representation. So, the current risk status of foreign investment in the textile industry can be judged. In the experiments, the proposed method is tested and verified with part of the data obtained publicly, and the results showed the effectiveness of the proposed method.

2. Basic Theory

2.1. LSTM

LSTM network is a model of memory cell network structure proposed by Hochreiter to solve the gradient explosion and gradient disappearance phenomenon that occurs when the recurrent neural network is processing relatively long time series data. It is introduced into the cell on the basis of Recurrent Neural Network (RNN). The threshold structure for judging whether the information meets the requirements is used to control the accumulation speed of information—input gate, forget gate, and output gate—so as to use this structure to memorize and update new information and solve the problem of long-term dependence. As shown in Figure 1, each LSTM neuron is composed of cell states, namely, long-term state ct and short-term state ht, input gate i, forget gate ft, and output gate ot.

Figure 1.

Figure 1

Basic structure of LSTM.

The so-called cell state is a container for storing information. Through the process control of input gate, forget gate, and output gate, the information in the container is gradually increased, decreased, changed, and output. In each neural unit, the cell state undergoes the forgetting process of the forget gate, the input process of the input gate, and the process of outputting information to the output gate. The input gate is to copy and process the input information of the current neural unit. It consists of two parts: the sigmoid function independently chooses which information to update and the tanh function adds the constructed brand new vector to the current cell state to construct a new state. The realization formula is as follows:

it=σwxixt+whiht1+bi,c˜t=ϕwxcxt+whcht1+bc. (1)

The main function of the forget gate is to determine which information needs to be discarded in the current state. ft=1 means that the information is completely retained; ft=0 means that the information is completely discarded. The realization formula of ft is as follows:

ft=σwxfxt+whfht1+bf. (2)

The output gate mainly controls the output information of the current hidden state. The realization formula is as follows:

ht=ottanhct,ct=itc˜t+ftct1,ot=σwxoxt+whoht1+bo. (3)

In equation (3), ht−1 is the output at the time t − 1; wxi, wxc, and wxo are the matrix weight parameters for the input vector xt the at the time t, respectively; whi, whc, and who represent the weight matrix parameters of the hidden layer vector ht−1 at the time t − 1; and bi, bc, bf, and bo represent the bias vector parameters.

Finally, the back propagation through time (BPTT) algorithm can be used to optimize the parameters of the LSTM model to obtain a reliable prediction model.

2.2. ResNet

As the number of deep neural network layers continues to increase, the learning ability of the network becomes stronger and stronger. However, the convergence speed of the relative network will slow down, and the gradient will disappear during the propagation process, making it impossible to effectively adjust the weights of the previous network layers. In the traditional convolutional neural networks (CNNs), except for the first layer, the input of each layer is derived from the output of the previous layer. The ResNet adopts a skip structure so that the deep residual network can directly cross the middle layers. The parameters are passed to the subsequent layers, which reduces the complexity of the network, solves the degradation problem of the deep-level network, and promotes the improvement of network performance.

The network structure of the residual neural network is shown in Figure 2. The network draws on the idea of cross-layer connection of high-speed networks. In the residual unit structure shown in Figure 2, x is the input of the network; H(x) is the optimal solution mapping; and F(x) represents the residual term and directly passes the input x to the output as the initial result to get the output H(x)=F(x)+x. When F(x)=0, H(x)=x is an equal mapping. The training goal of ResNet is to make the residual term F(x)=H(x) − x close to zero. It is easier to let F(x)=0 than H(x)=x. The updated parameters using F(x)=0 can converge faster. Compared with the network model that does not adopt the skip structure, the residual network of this structure has clearer input data and can retain the accuracy of the data to the greatest extent.

Figure 2.

Figure 2

Illustration of residual network unit.

3. Risk Assessment Method

3.1. Index System

The purpose of financial early warning indicators is to detect the possible financial risks of the enterprise in advance and to rate the risks. Therefore, when selecting indicators, you should choose indicators with the nature of capability evaluation and risk evaluation. Therefore, based on relevant domestic and foreign research results, this article selects the total return on net assets, net sales interest rate, net operating cash flow/debt, and operating activities from five aspects: profitability, operating ability, development ability, debt solvency, and cash flow ability. A total of 10 financial indicators including net cash flow growth rate, net asset growth rate, total asset growth rate, accounts receivable turnover rate, current asset turnover rate, asset-liability ratio, and asset-liability ratio are statistically analyzed. Based on the data indicators of the textile industry's foreign investment, the feature vectors of these 10 indicators can be constructed accordingly, which can be used for subsequent risk prediction and evaluation.

3.2. Evaluation Process

This paper builds a ResNet-LSTM-based textile industry foreign investment risk analysis model based on the previous discussion. The proposed method makes full use of the advantages of ResNet and better retains the attributes of the original data so as to effectively solve the problem of extracting the characteristics of financial risk data in the textile industry. Using the advantages of LSTM in data prediction, the accuracy of risk prediction is improved through ResNet's deep features. The basic flow chart of the method in this paper is shown in Figure 3, and the specific steps are described as follows:

  1. Based on the historical data set of the textile industry's foreign investment, the feature vector is constructed according to the established index system.

  2. ResNet is used for deep feature extraction to further optimize the feature vector.

  3. In the training phase, the deep features extracted by the optimized ResNet are input into the LSTM network, and the unique characteristics of the memory unit structure of the LSTM network are used to establish a prediction model.

  4. In the testing phase, the investment financial data set of the current data is input to the established LSTM prediction model, and the current risk assessment result is output.

Figure 3.

Figure 3

Prediction of investment risk based on LSTM and ResNet.

3.3. Evaluation Index

Assuming the predicted value as y^=y^1,y^2,,y^n and the true value as y={y1, y2, ⋯, yn}, the root mean square error (RMSE), mean absolute percentage error (MAPE), and mean accuracy (MA) are used as the evaluation indicators of the perdition model. The definitions of the three indexes are as follows:

RMSE=1ni=1ny^iyi2,MAPE=1ni=1ny^iyiyi×100%,MA=1MAPE. (4)

In the formula, the smaller the RMSE value, the closer the predicted value to the true value, the higher the accuracy of the prediction. MAPE and MA evaluate the predictive power of the model. The smaller the MAPE and the larger the MA, the better the prediction effect of the model.

4. Experiment and Analysis

4.1. Data Set and Comparison Method

In order to test the performance of the proposed method, this paper obtained 380 historical financial data of China's textile industry foreign investment through public channels. According to the financial risk measurement index system in the previous works, the corresponding feature vectors are constructed, respectively. Then, the method of combining ResNet and LSTM is used for risk prediction analysis, and RMSE and MA indicators are used to evaluate the performance of the method. While testing the method in this paper, some existing methods are selected for comparative analysis, including the method based on support vector machine (SVM), the method based on BP network, and the method based on LSTM.

5. Results and Analysis

The selected investment data are tested using the proposed method, and the performance of the method in this paper and the comparison methods is as shown in Table 1. According to the results, the performance of the method in this paper is the best among the four types of methods, reflecting its performance advantages. Among the three types of comparison methods, LSTM has the best performance, indicating its significant advantages in data prediction. BP network also has certain advantages over SVM, which shows the advantages of neural network. In particular, comparing the proposed method with LSTM shows that this paper further introduces ResNet for deep feature learning, which further improves the final prediction performance.

Table 1.

Comparison of prediction performance of different methods.

RMSE MA (%)
Proposed 0.14 97.3
SVM 0.21 95.6
BP 0.18 96.1
LSTM 0.15 96.8

Therefore, by using the comprehensive evaluation of RMSE and MAPE two indicators, the proposed method has advantages in predicting the risk of foreign investment in the textile industry.

In the actual process, due to the influence of market bands and other political and economic factors, certain errors may occur in the prediction model. To this end, this paper applies a certain degree of noise to the experimental data to reflect the volatility of economic data. On this basis, MA was used as the basic evaluation index to test the performance trend of various methods, and the results are shown in Figure 4. It can be seen from the figure that the performance of various methods is degraded to a certain extent due to the influence of noise. In comparison, the method in this paper can maintain the best prediction performance under different noise interference conditions, thereby further improving its performance advantages.

Figure 4.

Figure 4

Performance of different methods under noises.

6. Conclusion

Scientific analysis of the risk of foreign investment in the textile industry is conducive to identifying the investment direction and investment market and obtaining the greatest rate of return. Aiming at the problem of predicting the risk of foreign investment in the textile industry, this paper comprehensively uses two deep learning models, ResNet and LSTM. ResNet is used for deep feature learning to further optimize the index system of risk prediction. As an accurate and efficient prediction model, LSTM predicts the deep features learned by ResNet and obtains risk prediction results. Part of the measured data is used to verify and analyze the proposed method, and the result proves the performance advantage of the proposed method. Compared with the method directly using LSTM, the proposed can bring performance improvement owing to the merits of ResNet. In the future, more suitable deep learning models can be further developed to improve the accuracy of the prediction model.

Data Availability

The dataset can be accessed upon request.

Conflicts of Interest

The authors declare that they have no conflicts of interest.

References

  • 1.Du Lizhen, Yu Lianqing, Cheng Rao. The construction research on Rapid-Response Eco-Supply Chain of the textile industry based on the circular economy. Proceedings of the 2010 International Conference on E-Health Networking Digital Ecosystems and Technologies (EDT); April 2010; Shenzhen, China. pp. 248–251. [DOI] [Google Scholar]
  • 2.Liu J., Jiang J., Zhang Q. Research on geo-relationship network and competing (or mutually beneficial) relationship network of Chinese textile enterprises. Proceedings of the 2017 29th Chinese Control And Decision Conference (CCDC); May 2017; Chongqing, China. pp. 6462–6467. [DOI] [Google Scholar]
  • 3.Haiyan Z. The Improvement of the Industry Structure of Chinese Textile Industry on the Basis of Independent Innovations. Proceedings of the 2009 First International Workshop on Education Technology and Computer Science; May 2009; Wuhan, Hubei, China. pp. 422–424. [Google Scholar]
  • 4.Wang K., Zeng X., Koehl L., Tao X., Chen Y. Statistical based approach for uncertainty analysis in life cycle assessment: a case study in textile industry. Proceedings of the 2019 IEEE International Conference on Fuzzy Systems (FUZZ-IEEE); June 2019; LA, USA. pp. 1–4. [DOI] [Google Scholar]
  • 5.Jiang W., Deng L., Chen L., Wu J., Li J. Risk assessment and validation of flood disaster based on fuzzy mathematics. Progress in Natural Science . 2009;19(10):1419–1425. doi: 10.1016/j.pnsc.2008.12.010. [DOI] [Google Scholar]
  • 6.Tang Enlin. Research on Interest Rate Risk of Housing Mortgage Loan Based on Computer Simulation. Computational Intelligence and Neuroscience . 2021;2021:6. doi: 10.1155/2021/6035022.6035022 [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 7.Chu Hui. An Empirical Analysis of Corporate Financial Management Risk Prediction Based on Associative Memory Neural Network. Computational Intelligence and Neuroscience . 2021;2021:11. doi: 10.1155/2021/4383742.4383742 [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 8.Liu Wenjuan. Enterprise Credit Risk Management Using Multicriteria Decision-Making. Mathematical Problems in Engineering . 2021;2021:10. doi: 10.1155/2021/6191167.6191167 [DOI] [Google Scholar]
  • 9.Huang Boning, Wei Junkang, Tang Yuhong, Chang Liu. Enterprise Risk Assessment Based on Machine Learning. Computational Intelligence and Neuroscience . 2021;2021:6. doi: 10.1155/2021/6049195.6049195 [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 10.Jian Luo A, Xin Yan B, Tian Ye. Unsupervised quadratic surface support vector machine with application to credit risk assessment. European Journal of Operational Research . 2019;280:1008–1017. [Google Scholar]
  • 11.Moscatellia Mirko, Parlapianoa Fabio, Narizzanob Simone, Viggiano Gianluca. Corporate default forecasting with machine learning. Expert Systems with Applications . 2020;161(6):1–12.113567 [Google Scholar]
  • 12.Arora N., Deep Kaur P. A Bolasso based consistent feature selection enabled random forest classification algorithm: An application to credit risk assessment. Applied Soft Computing Journal . 2020;86:1–15.105936 [Google Scholar]
  • 13.Paganoti Fonsecaa Diego, Fernandes Wankea Peter, Luiz Correa Henrique. A two-stage fuzzy neural approach for credit risk assessment in a Brazilian credit card company. Applied Soft Computing Journal . 2020;92:1–13. [Google Scholar]
  • 14.Breiman L. Random forests. Machine Learning . 2001;45(1):5–32. doi: 10.1023/a:1010933404324. [DOI] [Google Scholar]
  • 15.Wanga Yuelin, Zhanga Yihan, Yan Lua, Yua Xinran. A Comparative Assessment of Credit Risk Model Based on Machine Learning—a case study of bank loan data [J] Procedia Computer Science . 2020;174:141–149. [Google Scholar]
  • 16.Jin Huang J, Ling C. X. Using AUC and accuracy in evaluating learning algorithms. IEEE Transactions on Knowledge and Data Engineering . 2005;17(3):299–310. doi: 10.1109/tkde.2005.50. [DOI] [Google Scholar]
  • 17.Wu D. D., Olson D. L., Luo C. A Decision Support Approach for Accounts Receivable Risk Management. IEEE Transactions on Systems, Man, and Cybernetics: Systems . 2014;44(12):1624–1632. doi: 10.1109/tsmc.2014.2318020. [DOI] [Google Scholar]
  • 18.Nowak J. W., Sarkani S., Mazzuchi T. A. Risk Assessment for a National Renewable Energy Target Part II: Employing the Model. IEEE Systems Journal . 2016;10(2):459–470. doi: 10.1109/jsyst.2013.2294634. [DOI] [Google Scholar]
  • 19.Wan N., Li L., Ye C., Wang B. Risk Assessment in Intelligent Manufacturing Process: A Case Study of an Optical Cable Automatic Arranging Robot. IEEE Access . 2019;7:105892–105901. doi: 10.1109/access.2019.2932756. [DOI] [Google Scholar]
  • 20.Qu Z. Application of improved PCA in risks assessment technology of enterprise information security. Proceedings of the 2009 2nd International Conference on Power Electronics and Intelligent Transportation System (PEITS); December 2009; Shenzhen, China. pp. 58–61. [DOI] [Google Scholar]
  • 21.Xu Zhandong, Chi G. Bank-enterprise project risk assessment model based on the information entropy method. proceedings of the 2011 2nd International Conference on Artificial Intelligence, Management Science and Electronic Commerce (AIMSEC); August 2011; Zhengzhou, China. pp. 998–1001. [DOI] [Google Scholar]
  • 22.Zhang P.-B., Yang Z.-X. A Novel AdaBoost Framework With Robust Threshold and Structural Optimization. IEEE Transactions on Cybernetics . 2018;48(1):64–76. doi: 10.1109/tcyb.2016.2623900. [DOI] [PubMed] [Google Scholar]
  • 23.Wu S., Nagahashi H. Parameterized AdaBoost: Introducing a Parameter to Speed Up the Training of Real AdaBoost. IEEE Signal Processing Letters . 2014;21(6):687–691. doi: 10.1109/lsp.2014.2313570. [DOI] [Google Scholar]
  • 24.Qiao Qu, Liu Cheng, Bao Xinzhong. E-Commerce Enterprise Supply Chain Financing Risk Assessment Based on Linked Data Mining and Edge Computing. Mobile Information Systems . 2021;2021:9.9938325 [Google Scholar]
  • 25.Chen Tingqiang, Yang Qinghao, Wang Yutong, Wang Suyang. Double-Layer Network Model of Bank-Enterprise Counterparty Credit Risk Contagion. Complexity . 2020;2020:25. doi: 10.1155/2020/3690848.3690848 [DOI] [Google Scholar]
  • 26.Shao Yichuan, Yao Xingjia, Tian Liwei, Chen Hanning. A Multiswarm Optimizer for Distributed Decision Making in Virtual Enterprise Risk Management. Discrete Dynamics in Nature and Society . 2012;2012:24. doi: 10.1155/2012/904815.904815 [DOI] [Google Scholar]
  • 27.Dong Shanshan, Chang Liu. Sentiment Classification for Financial Texts Based on Deep Learning. Computational Intelligence and Neuroscience . 2021;2021:9. doi: 10.1155/2021/9524705.9524705 [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 28.Wei Xianfu. A Method of Enterprise Financial Risk Analysis and Early Warning Based on Decision Tree Model. Security and Communication Networks . 2021;2021:9.6950711 [Google Scholar]
  • 29.Wu Jun, Li Chengbing, Huo Yueying. Safety Assessment of Dangerous Goods Transport Enterprise Based on the Relative Entropy Aggregation in Group Decision Making Model. Computational Intelligence and Neuroscience . 2014;2014:7. doi: 10.1155/2014/571058.571058 [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 30.Galassi Alessio, José D, Guerrero Martín, Villamor Eduardo, Monserrat Carlos, Rupérez María José. Risk Assessment of Hip Fracture Based on Machine Learning. Applied Bionics and Biomechanics . 2020;2020:13. doi: 10.1155/2020/8880786.8880786 [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 31.Williams Brian, Allen Brandon, Hu Zhen, et al. Real-Time Fall Risk Assessment Using Functional Reach Test. International Journal of Telemedicine and Applications . 2017;2017:8. doi: 10.1155/2017/2042974.2042974 [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 32.Jianxing Y., Haicheng C., Shibo W., Haizhao F. A Novel Risk Matrix Approach Based on Cloud Model for Risk Assessment Under Uncertainty. IEEE Access . 2021;9:27884–27896. doi: 10.1109/access.2021.3058392. [DOI] [Google Scholar]
  • 33.Greene B. R., Redmond S. J., Caulfield B. Fall Risk Assessment Through Automatic Combination of Clinical Fall Risk Factors and Body-Worn Sensor Data. IEEE Journal of Biomedical and Health Informatics . 2017;21(3):725–731. doi: 10.1109/jbhi.2016.2539098. [DOI] [PubMed] [Google Scholar]

Associated Data

This section collects any data citations, data availability statements, or supplementary materials included in this article.

Data Availability Statement

The dataset can be accessed upon request.


Articles from Computational Intelligence and Neuroscience are provided here courtesy of Wiley

RESOURCES