Identification of Key Elements and Path Design of Vocational Education Governance Modernization Supported by Deep Learning
Publicado en línea: 21 mar 2025
Recibido: 30 oct 2024
Aceptado: 11 feb 2025
DOI: https://doi.org/10.2478/amns-2025-0567
Palabras clave
© 2025 Fan Li, published by Sciendo
This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
Modernization of vocational education governance refers to combining traditional vocational education with modern educational concepts and technical means, and improving the adaptability and quality of vocational education through reform and innovation to meet the needs of modern society for talent training [1-3].
Understanding the goals and characteristics of the modernization of vocational education governance is the basis for identifying its key elements and path design, which mainly involves six aspects of understanding: first, adapting to social needs. The core goal of the modernization of vocational education governance is to cultivate high-quality and high-skilled vocational talents who adapt to the needs of economic and social development [4-6]. By analyzing the social demand for various types of talents, the vocational education curriculum and teaching content adjustment and updating, to achieve the integration of production and education. Second, the introduction of modern education concepts. The modernization of vocational education governance focuses on cultivating students’ innovative thinking and practical ability, and emphasizes students’ initiative and openness [7-8]. Adopting modern educational concepts, students are encouraged to think independently, learn independently and explore and practice. Third, innovative teaching mode. The modernization of vocational education governance requires innovative teaching modes to improve the quality and efficiency of teaching by drawing on and introducing advanced educational concepts and teaching methods [9-11]. Such as the use of multimedia technology, virtual reality technology and other modern teaching methods, the opening of online courses, distance learning and other learning methods to meet the learning needs of students. Fourth, the development of practice base and school-enterprise cooperation. The modernization of vocational education governance requires schools to cooperate closely with practice bases and enterprises, combining school teaching and practical training with actual work scenes, so that students can carry out real practical operations and work experience, and cultivate practical application ability and vocational literacy [12-14]. Fifth, strengthening teacher training and quality improvement. The modernization of vocational education governance requires teachers to have modern education concepts and innovation ability, and to be able to adapt to the development requirements of the modernization of vocational education governance [15-17]. Sixth, combine with internationalization development. The modernization of vocational education governance should be in line with international standards, draw on and absorb international advanced education concepts and practical experience, and cultivate vocational talents that meet the needs of the international market [18-20]. At the same time, it can actively participate in international vocational education exchanges and cooperation to promote the internationalization of vocational education.
In general, the modernization of vocational education governance is a comprehensive reform about education content, teaching method, education environment and teacher quality, aiming to improve the effectiveness and quality of vocational education and cultivate high-quality vocational talents adapted to the needs of the society.
The article firstly describes the relevant definitions and explanations of events and emergencies, then describes in detail the relevant theoretical models and techniques used in the research of this paper, and proposes the research line of identifying the elements of events based on feature fusion. Then, Attention and LSTM, which are the basic technologies for identifying key elements of modernization of vocational education governance, are introduced in detail. On this basis, the article proposes an element recognition model based on improved BiLSTM-CRF, including an improved BERT design method based on Attention mechanism, an improved design (Position) method based on local position information, an improved design (LSTMD) method based on LSTMDecoder, and an improved design based on global attention mechanism (Attention) method. Then the recognition of various basic elements by this paper’s model and other models is analyzed. Subsequently, the article explores the path of modernizing vocational education governance at five levels: concept, system, resources, governance tools, and governance mechanisms. Finally, using the QCA analysis method, the multiple key factors affecting the modernization of vocational education are analyzed.
Events and event elements An event, as a representation of information, is an event that occurs at a particular time and in a particular context, involves a number of actors, and exhibits a number of action characteristics. An event can usually be represented formally as
Among them, Critical incidents Sudden event can be understood as something that happens suddenly in a broad sense, with two meanings: first, the event occurs very quickly. The second is that the event is handled in a tricky way. Narrowly defined emergencies refer to the sudden occurrence of major or sensitive events, in short, natural and man-made disasters. The term “natural disasters” refers to disasters caused by the natural environment, such as earthquakes, tsunamis, floods, fires, etc., while the term “man-made disasters” refers to human-caused hazards, such as terrorist attacks and social conflicts.
One-hot coding One-hot coding is also known as solo-hot coding, which is based on the vector space model and the algorithm is calculated based on metrics in the vector space. The encoding is done by constructing a word list for the processed dataset, and then each word in the word list is represented by a vector, the dimension of the vector is the size of the word list. Only one position of each word is encoded as 1, and the rest of the positions are all 0, so that each word has and only has its own unique encoding. For example, there are two words in the corpus, “critical incident extraction” and “event element identification”. The process of using One-hot coding is as follows:
Perform Chinese segmentation on the corpus to obtain the words in the corpus and construct the word list “sudden, event, extraction, element, recognition”. Determine the size of the word list to be 5, and represent each word in the order of the word list, with a word vector of
Text vector representation
Text | Vector representation |
---|---|
Emergency extraction | |
Event factor recognition |
According to the text vector coding table, the matrix representation of the text is obtained as shown in Equation (2).
Word2vec The principle of the CBOW model is to predict the word vectors of the target word given the context words, i.e., to predict the vector representation of The CBOW model trains the word vectors as follows: first, the words in the text are represented by One-hot coding and input as vectors to the input layer of CBOW [22]. Next, it is multiplied with a randomly generated initialization matrix C1 from the projection layer, and the vector obtained from the multiplication is averaged and processed. Then, it is multiplied with a weight matrix C2 to obtain the output vector of the target word. Finally, the probability distribution of the target word is obtained using the Softmax function normalization process, and the vector representation of the target word has the highest probability. By constantly changing the target word, the vector representation of each word in the text can be obtained finally. Different from the principle of CBOW model, Skip-Gram model is to predict the context vectors of target words given the target words, i.e., to predict BERT pre-training model BERT pre-training language model has become a popular model in the field of natural language processing. The Bidirectional Transformer is the core structure of BERT, which solves the problem that convolutional neural networks cannot solve serialized text and the problem of memory explosion in recurrent neural networks. Transformers mainly contain two parts: encoding and decoding. The input of the encoding part includes word vector information and location information, which is input to the decoding part after passing through the multi-head attention mechanism and feed-forward network. The output of the decoding part is obtained by the multi-head attention mechanism, feed-forward network and linear network.The computational efficiency of the Transformer structure is greatly improved compared with the previous models, thanks to the fact that it does not use the classical loop structure, but uses the attention mechanism to compute the implicit representations of the inputs and outputs of the model. The input layer also contains the lexical position information of the text, which can be computed using the sine and cosine functions as shown in Equations (3) and (4).
where
This paper proposes a research on event element recognition method based on feature fusion, which contains two main parts: event element recognition method based on word feature fusion and event element recognition method based on multidimensional feature fusion. In this paper, we use the BERT pre-trained language model, and utilize the Chinese word segmentation tool to slice the words in the corpus to get the word-level semantic information, introduce adversarial training to improve the robustness of the model, and combine the bidirectional recurrent neural unit network and the conditional random field to put forward a feature fusion-based event element recognition method. The research route of the feature-fusion-based Chinese critical incident element recognition method is shown in Fig. 1, which mainly contains five steps, data preprocessing, text vector embedding, adversarial training, semantic feature extraction and event element recognition.

Research route of Chinese emergency element recognition method
Attention mechanisms originated from the study of human vision and are now widely used in areas such as machine translation, image generation, and natural language processing. An attention mechanism is proposed when processing information encounters a bottleneck. People will focus on part of the information while intentionally ignoring irrelevant or unimportant information. The attention mechanism is divided into 2 main aspects, one is to decide which part of the input needs to be focused on, and the other is to allocate limited resources to the important part.
The Long Short-Term Memory (LSTM) network inherits the memory function of a Recurrent Neural Network (RNN), which is able to record current input information and arbitrary length information [23]. LSTM network solves the long term dependency problem existing in RNN by introducing the gating unit and the storage unit and alleviates the problem of the RNN gradient vanishing and the gradient exploding problem.There are three gating units in LSTM network, which are the input gate, output gate and forgetting gate, in addition, many memory cells are added, and the combination of these memory cells and gating units can improve the processing ability of long sequence data.
Where,
Named entity recognition task plays a key role in natural language processing techniques. Case element recognition in this paper can also be categorized as named entity recognition. Named entity recognition, in its narrow sense, identifies three types of named entities, namely, human names, geographical names and organizational names [24]. The words are first converted into distributed representations, which are trained in the input to a deep neural network, and finally fed into a conditional random field to predict labels. The work in this section is to study and analyze the baseline model Character Vector Embedding-BiDirectional Long Short Memory Neural Network-Conditional Random Fields (CharEmbendding-BiLSTM-CRF) and improve some of the problems of this baseline model, so that the key elements can be identified more accurately.
The BiLSTM-CRF model consists of three layers, which are the embedding layer, the bidirectional long-short memory neural network, and the conditional random field. In the first embedding layer, there are two traditional choices of embedding layers: a word embedding layer and a word embedding layer. According to He, Liu, Li et al. made an explicit discussion on whether to use word-level or word-level sequence annotation in Chinese entity recognition, and the results show that the latter is empirically preferred. The word-level sequence annotation model has become the main method for Chinese entity recognition. So we chose the word embedding layer. The word embedding layer transforms each word into a distributed representation, also known as vectorization. It is worth mentioning that even punctuation marks are vectorized as words. The initialization of the word embedding vectors can be chosen randomly or trained using methods such as Glove, Word2 Vec, etc. We use Word2Vec trained word vectors, using with trained word vectors has the advantage of accelerating the training of the model and so on. Intuitively, reducing the word vectors to two dimensions using PCA will reveal that the distance between word vectors with similar meanings is also closer.
The CRF layer can add constraints to ensure that the final prediction is valid. These constraints can be automatically learned by the CRF layer when training the data. Possible constraints are that the sentence should start with “B-” or “O” instead of “I-”. “B-labell I-label2 I-label3...”, in this pattern, categories 1, 2, and 3 should be the same entity class. For example, “B-Person I-Person” is correct and “B-Person I-Organization” is wrong. “O I-label” is wrong, and the beginning of the named entity should be “B-” instead of “I-”. With these useful constraints, false prediction sequences will be greatly reduced. The loss function in the CRF layer consists of two types of fractions: the emission fraction, which is the output of our BiLSTM layer. Transfer scores: Scores from one label to the next, you can randomly initialize the scores of the transition matrix before training the model. These scores will be updated as the training iteration progresses. The CRF loss function consists of two parts, the score of the true path and the total score of all paths. The real path’s score should be the highest among all the paths. The loss function is as follows:
Since our training goal is usually to minimize the loss function, after adding the logarithmic and negative sign simplifications:
In this paper, we propose four four improvements which have a greater increase in precision, recall, and The neural network structure of AttBERT-Pos-BiLSTM-LSTMD-Attention-CRF Improved BERT design based on Attention mechanism (AttBERT) The model structure of BERT is a bidirectional Transformer, but only the encoder part of Transformer is used.Transformer is divided into encoder and decoder parts, the encoder part is stacked by 6 encoders, and the decoder part is stacked by 6 decoders, which have the same structure but don’t share the weights. There is a residual connection in the middle, which makes up for the disadvantage that LSTM can not be computed in parallel with the multi-head self-attention mechanism. In this paper, we use the pre-trained Chinese model released by Google, which has 12 layers of encoder, 12 multi-heads of self-attention, and the hidden_size is 768. Considering that not only the highest layer of the Transformer contains the semantic information of the words, but also the 11 layers of the intermediate layer, which may encode different abstraction granularity of the input sentence feature information. So we consider stitching the last

The neural network of attbert
The details of the operation are as follows:
Where
Improved design based on local position information In order to utilize the structural information efficiently, we sum each word vector with the local positional information corresponding to it, giving each word the corresponding structural information. Window size The window size is set to

Neural network based on local location information
The details of the operation are as follows:
Improved design based on LSTMDecoder For longer and complex entities, this paper proposes to decode them with a combination of LSTMDecoder and CRF, with bidirectional long and short memory neural networks to form an encoder-decoder model.LSTMDecoder was proposed by zheng et al. in the joint extraction model of entities and relations to solve the long term dependency between relation labels. The biggest defect of LSTMDecoder is that it cannot utilize the constraint relationship between labels well. Probably due to different scenarios, zheng et al. also did not try to perform overlay experiments. In this paper, we tried this approach and achieved good results. The LSTMDecoder in this paper employs an LSTM structure to generate the state scores of the labels to be provided to the CRF layer.The inputs to the LSTMDecoder The specific details of the operation are defined below:
Improved design based on global attention mechanism The method proposed by Luo et al. uses a conventional attention mechanism, which calculates the weights of the current word and all other words separately, and then weights the average, due to the long number of words in our data, the amount of attention calculations will be very large to the extent that it is difficult to calculate. We use the forward neural network attention mechanism as a good solution to this problem. The specific operational details are as follows:

LSTMDecoder data flow
The problem studied in this section belongs to classification problems, in which common evaluation metrics include precision rate, recall rate, and F1 value. Precision rate is the number of key elements correctly identified by the model as a proportion of all identified key elements, while FP is the number of key elements that were incorrectly identified. Recall rate is the number of key to be correctly identified by the model as a proportion of all real key elements, where FN is the number of non-key elements that are incorrectly identified.
This section of the experiment will verify the effectiveness of the model proposed in this paper in identifying the key elements of modernizing vocational education governance. The experiment was designed with six control groups using the HMM model, CRF model, BiLSTM model, BiLSTM-CRF model, and BERT-CRF model.
In order to improve the recognition effect, in recent years various methods have achieved good results in specific tasks by building a lexicon and adding the lexicon information to the model training. In this section, the Lattice-LSTM model and SoftLexicon model are added as experimental controls. Both methods use character-level vector representations, Lattice LSTM introduces a unitary structure of a word, and for the current character, fuses all lexical information ending with that character.SoftLexicon simplifies the sequence modeling by integrating the lexicon into the character representation based on Lattice-LSTM, considering the role of the word in the word. The experimental comparison results are shown in Table 2. From the table of experimental comparison results, it can be seen that the recognition model of key elements of modernization of vocational education governance based on deep learning is higher than the HMM and CRF models under the two indicators of accuracy rate and F1. The CRF-based vocational education governance modernization key element extraction model is improved in all indicators than the HMM model.In the HMM model, the current state depends on the state of the previous moment, whereas the CRF can define more feature functions and use the feature function composed of the label of the current moment and its corresponding word plus the weight to represent the final output probability, which makes full use of contextual features and information. Information. The algorithmic models based on deep learning BiLSTM and BERT are superior to the models based on statistical learning methods in all aspects.CRF model training requires a larger dataset to ensure the validity of the results, and in the process of recognizing the basic elements, it needs to manually design the feature templates. The feature template is to establish the feature rules.LSTM usually encodes along the text sequence, and finally obtains the contextual semantic information of the sentence, but the previous text does not fit into the context after the target word, so this chapter uses the BiLSTM model, which combines two unidirectional, but opposite directions of the LSTM, and can be seen from the experimental results have a certain degree of improvement. The addition of BERT model improves the evaluation indexes to a certain extent, and character-level text vectors can be generated by the pre-training language model of BERT, and the BERT model realizes bidirectional learning and can deal with the polysemy problem of some texts more efficiently. In this chapter, in addition to vector representation of characters with the dynamic representation ability of BERT model, BiLSTM is also added to obtain the contextual semantic information of the text, which is combined with the label relevance analysis of CRF to recognize the basic elements in judicial documents. The analysis of the experimental results shows that the method of this paper achieves good results in recognizing the key elements, with an F1 value reaching 87.26%.
Experimental comparison
Model | Accuracy rate | Recall rate | F1 value |
---|---|---|---|
HMM | 70.18% | 80.27% | 76.28% |
CRF | 81.73% | 80.03% | 79.92% |
BiLSTM | 85.08% | 82.27% | 82.64% |
BiLSTM-CRF | 86.21% | 84.21% | 85.65% |
SoftLexicon(LSTM) | 77.05% | 82.63% | 85.04% |
Lattice-LSTM | 88.48% | 88% | 81.2% |
BERT-CRF | 87.86% | 81.89% | 83.64% |
Ours | 87.65% | 85.88% | 87.26% |
This section conducts experiments in the dataset related to the modernization of vocational education governance. The results of the F1 value assessment for each entity are shown in Table 3. Comparison of the experimental results reveals that there is a decrease in the recognition effect in the task of identifying the basic elements of law. From the table, it can be seen that the identification model of basic elements proposed in this section achieved the best results in labeling sentencing results (R), with an indicator F1 value of 100%.
The results of each entity F1 assessment
Model | Basic type | |||||
---|---|---|---|---|---|---|
D | T | N | P | K | R | |
HMM | 95.96% | 80.13% | 48.87% | 31.03% | 53.36% | 83.56% |
CRF | 96.52% | 92.72% | 47.64% | 37.39% | 57.95% | 96.24% |
BiLSTM | 95.27% | 94.32% | 49.32% | 62.25% | 90.57% | 95.7% |
BiLSTM-CRF | 98.06% | 93.36% | 47.37% | 55.04% | 93.36% | 95.9% |
Lattice-LSTM | 96.84% | 85.97% | 48.14% | 37.45% | 93.21% | 92.37% |
SoftLexicon(LSTM) | 96.64% | 88.52% | 58.23% | 48.61% | 95.48% | 98.83% |
BERT-CRF | 96.21% | 94.51% | 51.45% | 57.55% | 91.7% | 97.52% |
Ours | 98.82% | 94.16% | 71.32% | 70.44% | 93.98% | 100% |
The model performance comparison is shown in Figure 6 (the left side is the analysis of the results of identifying the “education” element, and the right side is the analysis of the results of identifying the “governance” element, and 1~6 in the figure are the model of this paper, BERT-CRF, BiLSTM-CRF, BiLSTM, CRF, BiLSTM-CRF, BiLSTM, CRF and HMM, respectively). From the figure, it can be seen that the basic element recognition model proposed in this paper performs the best in recognizing the two types of elements, with an average recognition rate of 94% in terms of accuracy, FI value and recall. However, the performance of recognizing education has a small improvement relative to other models, while the additive criminalizable factors have a significant improvement relative to other models. This is precisely because the BiLSTM model is capable of learning the contextual information of text sequences, and the basic element recognition annotates the text sequences sequentially, and BiLSTM learns sequence features sequentially to help sequence annotation. In addition, the BERT model can learn word vectors with rich semantic information, and this dynamic characterization ability can solve the problem of multiple meanings of a word, which is of great help to the problem of recognition difficulty caused by the diversity of descriptions of additive and subtractive sentencing factors.

Model performance contrast
In order to validate the feasibility of the basic element recognition model proposed in this paper, this paper has been validated on a publicly available dataset on modernization of vocational education governance. The dataset has been segmented and labeled with information such as person name, place name, and institution name using BIO’s annotation method. Among them, the person’s name is labeled as PER. place name is labeled as LOC. institution name is labeled as ORG. the evaluation metrics used in this experiment consists of accuracy, recall and F1 value, and the results of the dataset validation are shown in Table 4. From the table, it can be seen that BiLSTM and BERT fused with CRF layer can effectively improve the recognition effect.BiLSTM with the addition of CRF improves the accuracy, recall and F1 value by 0.8%, 2.27%, and 1.91%, respectively.CRF with the addition of BERT improves the three metrics by 4.62%, 2.41%, and 2.96%, respectively. It indicates that BiLSTM learns the contextual information of text sequences well. BERT incorporates global semantic information into character vectors, which contributes to the model’s performance. In addition, the basic element recognition model proposed in this chapter performs the best among all algorithms with an F1 value of 95.22%.
Data set validation results
Model | Accuracy rate | Recall rate | F1 value |
---|---|---|---|
HMM | 85.76% | 86.03% | 83.99% |
CRF | 86.11% | 86% | 86.64% |
BiLSTM | 86.87% | 87.94% | 86.61% |
BiLSTM-CRF | 86.91% | 88.27% | 88.55% |
BERT-CRF | 90.73% | 88.41% | 89.6% |
Lattice-LSTM | 90.7% | 90.12% | 91.38% |
SoftLexicon(LSTM) | 90.74% | 90.24% | 90.13% |
Ours | 96.65% | 96.3% | 95.22% |
“Education in the new era is a grand topic that needs to be discussed systematically, and the concept of educational governance is the first important issue with a navigational role to be discussed.” Idea is the precursor of action, advanced education governance concept for the modernization of education governance capacity to open up new ideas and methods. At present, the reality of the hot and difficult problems of education reflects the concept of education governance is still lagging behind the status quo of education governance practice, the concept of vocational education governance must keep abreast of the times and constantly innovate. With the in-depth promotion of the modernization of national governance, the modernization of the concept of governance is constantly integrated into the process of educational development, through a series of processes such as summarizing experience, broadening horizons, changing concepts, the concept of governance of vocational education, scientific, advanced, political, ideological and epoch-making to be continuously improved. The concept of education governance centered on “human modernization” takes the people’s sense of access to education and happiness in education as the foothold of modernizing education governance capacity, and guides education governance in the direction of modernity, democracy and the rule of law. In the new era, the in-depth implementation of the Party’s education policy should be led by its direction, and the innovation and change of the concept of vocational education governance should be taken as the overall leader, so as to make practical and useful guidance for the healthy development of vocational education and the steady improvement of the governance capacity of vocational education with the advanced governance concept.
The modernization of the governance system of vocational education is to continuously improve the institutional mechanisms and institutional norms of education, and to promote high-quality development and high-quality enhancement of education governance under the new development pattern by means of complete and scientific institutional arrangements and an operationally coordinated organizational system. The modernization of vocational education governance capacity is intended to transform potential advantages of the education system into actual effectiveness of education governance within the norms and guidance of the education governance system. From the perspective of vocational education governance practice, the construction of governance system is often preceded by the construction of governance capacity, and a systematic and perfect education governance system is a prerequisite for improving education governance capacity. Similarly, the enhancement of vocational education’s governance capacity lay the foundation for the better functioning of the education governance system. The benign interaction and common role of the two promote the sustained and healthy development of education, and ultimately achieve modernization of education. Through the scientific construction and continuous optimization of the vocational education governance system, with a reasonable and clear division of responsibilities and a coordinated working mechanism, and giving full play to the unique advantages of the education system and the guiding function of education policies, the modernization of education governance capacity will certainly be able to provide stable and lasting protection.
The modernization of vocational education governance capacity must consolidate the fundamental status of resources and enhance the efficiency of the supply, allocation, integration, and use of vocational education governance resources in all aspects. “Resource allocation is the key to determining whether the modernization of education can be achieved on schedule and whether modern education governance can be realized.” Along with the development of the practice of governance of vocational education, the connotation of educational resources is constantly expanding and enriching, and it is generally believed that “educational resources are the sum of all human resources, material resources and financial resources in the field of education obtained through the allocation of total resources in the society”. Scientific integration and rational allocation of educational resources can provide space for the quality and balanced development of education, and also lay the foundation for consultation and common governance across multiple disciplines. From optimizing the structure of education to deepening the comprehensive reform of education, and from improving the quality of education to safeguarding the fairness of education, the whole process of modernization of educational governance capacity involves the integration and allocation of educational resources, and “the level of allocation of educational resources has become a measure of the The level of distribution of educational resources has become a key indicator of the level of educational governance of the main bodies of governance at all levels.”
The diversity, compatibility and effectiveness of the tools chosen in the process of vocational education governance are often the key indicators for measuring the level of education governance and an important basis for evaluating the strength of education governance capacity. The selection of traditional vocational education governance tools is mainly based on short-term governance goals and governance costs, and cannot be separated from the limitations of “education management”, which can easily lead to waste of resources, inefficiency, information occlusion and many other problems. Although this top-down administrative command-based governance tool is fast and efficient, it lacks systematic combination and optimal configuration, and is prone to suppress the function and utility of other tools, thus restricting the modernization of education governance capacity. Modernized governance tools are both an effective supplement to traditional governance tools and a key means of implementing education policies, laying a solid instrumental foundation for the change of education governance paradigms and the formation of education governance patterns. The enhancement of educational governance capacity needs to rely on effective governance tools, while innovative and efficient technological tools can provide strong technical support for the modernization of educational governance capacity by giving full play to the advantages of optimizing resource allocation, unimpeded information exchange and improved governance efficiency.
Compared with the education governance system as a top-level design, the governance mechanism of vocational education is, in a certain sense, the use of bottom-level logic in the framework of the governance structure to ensure the orderly and standardized development of the education cause, and to guide and regulate the specific governance behaviors of the main body of education governance. The innovation of education governance system and mechanism is essentially the redesign and arrangement of education laws and regulations, institutional norms and code of conduct, the operation and internal mechanism formed in the process of education governance, and the perfect governance mechanism provides guidance and guarantee for the modernization of education governance capacity in terms of measures and programs. A modernized education governance mechanism requires sound and complete systems and regulations, a simple and efficient governance structure, coordinated procedures and processes, and a clear division of powers and responsibilities, so as to further enhance the compatibility and coordination of the education governance system and the work of education governance, and to ensure that the modernization of the capacity for education governance is steadily advanced.
In order to elucidate the specific explanatory effect of individual condition variables on the innovation outcomes, the study chose to take the consistency and coverage indicators to measure the degree of necessity of each condition variable on the outcome variable. The individual condition necessity analysis is shown in Table 5 (text indicates that the condition variable exists, ~ text indicates that the condition variable does not exist). In the analysis of influencing factors of innovation results, the consistency of all six types of condition variables is more than 0.5, indicating that the condition variables have a certain explanatory power for the innovation results, and the variable setting is basically reasonable. However, the consistency of individual conditional variables does not exceed 0.9, indicating that there is no single sufficient condition that influences the innovation results. The consistency of organizational leadership support is greater than 0.9, indicating that organizational leadership support is a sufficient condition that constitutes sustainability innovation. Similarly, in the analysis of conditional necessity of unsustainable innovation, the consistency of insufficient investment of educational resources is greater than 0.8, indicating that the lack of necessary educational resources is a sufficient condition that leads to unsustainable innovation. The pathways of educational resource input and organizational leadership support as important variables explaining innovation outcomes need to be verified through further group analysis.
Analysis of individual conditions necessity
Conditional variable | Variable code | Sustainable innovation | Unsustainable innovation | ||
---|---|---|---|---|---|
consistency | coverage | consistency | coverage | ||
Creative task properties | T1 | 0.77687 | 0.84732 | 0.67322 | 0.59689 |
~ Creative task properties | ~ T1 | 0.53751 | 0.70848 | 0.79554 | 0.70786 |
Innovative target type | T2 | 0.69851 | 0.76125 | 0.64441 | 0.57634 |
~ Innovative target type | ~ T2 | 0.5184 | 0.68147 | 0.67747 | 0.70406 |
Multiple governance | O1 | 0.77828 | 0.82918 | 0.73316 | 0.73032 |
~ Multiple governance | ~ O1 | 0.55959 | 0.75368 | 0.76369 | 0.80121 |
Organizational leadership support | O2 | 0.97876 | 0.96141 | 0.70312 | 0.56932 |
~ Organizational leadership support | ~ O2 | 0.5581 | 0.69304 | 0.7925 | 0.81729 |
Economic development level | I1 | 0.74276 | 0.78653 | 0.67482 | 0.58544 |
~ Economic development level | ~ I1 | 0.51757 | 0.69851 | 0.70474 | 0.74822 |
Innovation resource input | I2 | 0.73818 | 0.86072 | 0.61456 | 0.5851 |
~ Innovation resource input | ~ I2 | 0.5571 | 0.68009 | 0.82442 | 0.78237 |
Group analysis forms a combined path solution by analyzing the influence of the combination effect among condition variables on the outcome variable. The common QCA analysis provides three combined paths of complex solution, intermediate solution and parsimonious solution, considering the need for comprehensive examination of variables and the universality of intermediate solution, the study refers to the intermediate solution and parsimonious solution results for in-depth interpretation of the data, and the paths of the sustained condition of local education governance innovation are shown in Table 6 (● indicates the presence of core conditions, ● indicates the presence of marginal conditions, and ⊗ indicates the absence of core conditions, ⊗ indicates the absence of marginal conditions, and blank conditions may or may not be present and are irrelevant to the results). First, organization-driven (H1). This grouping has a consistency of 0.8232, a unique coverage of 0.0889, and a raw coverage of 0.1692, covering four typical cases. Under this pathway model, the sustained promotion of innovative actions in education governance around the world relies mainly on the sustained promotion of pluralistic organizations, and less on the support and guarantee of the resource environment. Construct H1 can be expressed as follows: even if a place does not have a high level of economic development, as long as the place is able to clearly define the innovation goal, and through increasing the organizational support and strengthening the input of existing innovation resources, the place is able to achieve the continuous deepening of the innovation action, and thus guarantee the sustainability of innovation. Organizational support, type of innovation goal, and non-high economic development level are the core conditions.
Local education governance innovation continued path
Conditioned configuration | Sustainable innovation | Unsustainable innovation | |||
---|---|---|---|---|---|
Combination H1 | Combination H2 | Combination H3 | Combination W1 | Combination W2 | |
Creative task properties | ● | • | ⊗ | ||
Innovative target type | • | ⊗ | ⊗ | ||
Multiple governance | ⊗ | ⊗ | |||
Organizational leadership support | ● | ● | • | ⊗ | |
Economic development level | ⊗ | ● | ● | ⊗ | |
Innovation resource input | • | ⊗ | • | ● | |
Primary coverage | 0.1692 | 0.3645 | 0.2436 | 0.2599 | 0.3507 |
Unique coverage | 0.0889 | 0.2925 | 0.069 | 0.2577 | 0.6494 |
Consistency | 0.8232 | 0.9176 | 0.8009 | 0.8518 | 0.8331 |
The coverage of the solution | 0.87216 | 0.72686 | |||
Consistency of solutions | 0.90985 | 0.86125 |
Second, internal and external coupling type (H2). This grouping has a consistency of 0.9176, a unique coverage of 0.2925, and an original coverage of 0.3645, covering six typical cases. In this path model, the local area usually has a good economic environment and organizational capacity as a guarantee, and at the same time, it selects an innovative program that fits the local educational development, and many internal and external resource elements work together as antecedent conditions. Construct H2 can be expressed as follows: if the localities have a good economic foundation, pay close attention to the local educational needs when formulating governance innovation programs, and have strong organizational leadership support, the localities can achieve sustainable innovation in educational governance. Among them, the level of economic development and support for organizational leadership are the core conditions for sustainable innovation. Therefore, this path can be a good reference for some regions that have a high level of economic development and strong organizational capacity.
Third, resource empowerment (H3). This grouping has a consistency of 0.8009, a unique coverage of 0.069, and an original coverage of 0.2436, covering four typical cases. In this path mode, local economic development conditions and innovation resources are more adequate, and in terms of resource stock, it is slightly richer than the “organization-driven” and “internal and external coupling” path modes, but the organizational leadership support is weaker. The core conditions of configuration H3 are: the level of economic development, the input of innovation resources, the support of organizational leadership, and the type of innovation goals. The path can be expressed as follows: with strong economic security and continuous investment in innovation resources, localities can achieve sustainable development of innovation actions under the preconditions of clear innovation development tasks and strengthened organizational leadership.
Social phenomena do not exactly follow the law of causal symmetry, i.e., the emergence or non-emergence of a particular outcome requires different combinations of antecedent conditions to explain it separately. Therefore, in order to explore the causes of the demise of local education governance innovations in more depth, the study further analyzed the conditional groupings of non-sustainable innovations using “unsustainable innovations” as the outcome variable. The data results show that the model has an overall coverage of 0.7269, an overall consistency of 0.8613, and the existence of two combined paths of constructs W1-W2 that lead to the demise of local education governance innovations. Based on the intergroup comparison of the two shared core conditions, the study categorizes the mechanism leading to the demise of governance innovation as an internal and external constraint path, whereby unsustainable innovation is constrained by both the type of innovation goal and the input of innovation resources.
There are three core conditions of the internal and external constrained path, namely: vague innovation objectives, inadequate implementation of governance bodies, and insufficient investment of innovation resources. Among them, construct W1 indicates that when the regional economic development level is general and lacks innovation design, regardless of whether the innovation organization guarantee is fully constructed or not, as long as the regional innovation resources are insufficiently invested and the innovation goal is too macroscopic, the innovation action will be inhibited. Configuration W2 shows that regardless of the level of regional economic development, once the innovation design lacks standardization and the innovation goal is ambiguous, even if the local government invests a lot of resources in innovation, it cannot guarantee the sustainable development of innovation. The representative examples of this configuration are Nanjing and Zhengzhou. Taken together, the core conditions leading to unsustainable innovation configuration are mainly insufficient investment of innovation resources and ambiguous innovation goals.
Vocational education governance modernization is the basic content and important foundation of education modernization. The article combines deep learning technology to construct the identification method of key elements of vocational education governance modernization, and carries out the design of vocational education governance modernization path through five dimensions to explore its group effect.
In the experimental test on the public dataset, the recognition model in this paper performed best among all algorithms, with an F1 value of 95.22%. Overall, the proposed model in this paper performs well in the identification process of multiple elements, which is a good guide for the specific application of vocational education governance modernization.
Among the key elements of vocational education governance modernization, vocational education governance concept is the leading element, vocational education governance system is the prerequisite element, vocational education governance resources are the basic element, vocational education governance tools are the supporting element, and vocational education governance mechanism is the guarantee element. Reshaping the concept of vocational education governance, improving the vocational education governance system, optimizing the allocation of vocational education resources, innovating vocational education governance tools, and improving the vocational education governance mechanism are the realistic choices to promote the modernization of vocational education governance capacity.