Optimisation of Teaching Methods and Practical Exploration of Teachers’ Teaching Methods in Vocational Education Based on AI Assistance
Published Online: Feb 03, 2025
Received: Sep 13, 2024
Accepted: Dec 24, 2024
DOI: https://doi.org/10.2478/amns-2025-0009
Keywords
© 2025 Li Yu et al., published by Sciendo
This work is licensed under the Creative Commons Attribution 4.0 International License.
In today’s rapidly developing society, education is regarded as a key factor in cultivating talents and promoting social progress. With the increasing importance of vocational education, the traditional teaching methods in vocational education no longer meet the needs of the development of the times. Therefore, under the background of artificial intelligence, improving and optimizing the teaching methods of teachers in vocational education has become an urgent and important issue [1–2].
With the continuous development of science and technology, artificial intelligence has come into all areas of our lives, including the field of education. AI-assisted teaching is a new teaching mode that combines artificial intelligence technology and teaching methods to provide teachers with more support and help. Traditional education often adopts a “one-size-fits-all” teaching model, ignoring individual differences in students [3–4]. AI technology can design personalized learning paths and plans for students according to their learning characteristics and needs. By analyzing students’ past learning performance and data, AI can understand students’ learning preferences, shortcomings and strengths so as to adjust the content and difficulty of teaching in a targeted manner so that students can continue to make progress at an appropriate level [5]. However, AI technology can not completely replace the role of teachers. The role of teachers is still crucial. Only by combining AI technology with the wisdom of teachers can we realize the real innovation and development of education. Therefore, vocational education teaching should make full use of the advantages of AI technology, constantly promote the improvement and upgrading of the education system, and provide students with better educational resources and learning environments [6–8].
Literature [9] analyzes the application of artificial intelligence and blockchain technology in vocational education. Artificial intelligence technology breaks the traditional vocational education development mode, while blockchain technology can promote vocational education to achieve rapid development. Literature [10] examines the current situation and problems of artificial intelligence technology in vocational education and puts forward suggestions for its problems, aiming to promote vocational education to strengthen the importance of artificial intelligence technology and to realize the integration of technology and education so as to cultivate high-quality talents. Literature [11] emphasizes the wide application of ChatGPT in colleges and universities and conducts a systematic literature review. The results of the analysis point out that there may be ways in which artificial intelligence can change people’s work and tasks, so it is necessary to evaluate the use of ChatGPT in college education. Literature [12] investigated the integration of AI in vocational education using the PRISMA methodology for a comprehensive assessment of AI. The results of the study pointed out that the application of AI technology is beneficial in providing personalized instruction, enhancing engagement, etc., and also faces problems such as high cost and lack of facilities. Literature [13] analyzes the structural reform of vocational education to make appropriate adjustments to teachers’ teaching concepts and teaching methods so that teachers are aware of the deficiencies in teaching and are prompted to update their teaching concepts and methods in order to build a content system for the development of vocational teachers’ teaching ability in the era of artificial intelligence and achieve improved talent training. Literature [14], in order to understand the impact of artificial intelligence technology on the learning effect, puts forward measures such as constructing an intelligent teaching platform, strengthening school-enterprise cooperation, etc., and points out through comparative experiments that artificial intelligence technology is conducive to improving the students’ learning hours and performance, and that constructing an artificial intelligence teaching platform can improve the teachers’ teaching ability and achieve teaching optimization. Literature [15] explored the application of artificial intelligence in vocational education, using the systematic literature review method to carry out the study found that artificial intelligence has the potential to promote change in vocational education, which is expected to improve the teaching effect and realize personalized teaching. Literature [16] describes the application of technologies such as artificial intelligence, big data, and blockchain in vocational education, examines the transformative potential and challenges of these technologies through a systematic literature review and case study analysis, and emphasizes the importance of strategic investment in educational programs such as professional development. Literature [17] discusses the development prospects of AI in vocational education in terms of personalized teaching and intelligent assistance and aims to promote the good development and improvement of vocational education by analyzing the challenges of the application of AI in vocational education and proposing strategies to cope with them.
This paper presents a detailed design of a cloud platform learning resource recommendation model for vocational education students based on a knowledge graph and then proposes an AI-assisted teaching method for vocational education teachers based on this model. The article first proposes a recommendation algorithm based on a knowledge graph, which obtains the relationship information between knowledge entities from the constructed knowledge graph and integrates user interests, similarity of resources and knowledge connectivity so as to provide learning resources for learners. Then, based on the feature that AI-assisted teaching methods can help teachers design and improve teaching in a targeted way, a teaching optimisation method is designed, which can not only improve the speed of teachers’ lesson preparation, but also intelligently meet the learning styles and learning rhythms of different students to further improve the teaching effect.
Knowledge graph construction refers to the use of semi-automated or automated data mining techniques to process the relevant data information obtained [18], from which entities and triples of information relevant to the construction of the graph are extracted, and usually, this process is cyclical. Knowledge graphs can be broadly classified into two types: top-down and bottom-up. The former refers to the use of ontologies as the base, using websites with highly structured data as data sources, such as Wikipedia, from which the required ontologies and rule constraints are extracted and added to the knowledge base. The latter, on the other hand, refers to the use of methods such as pattern recognition and writing rules to directly process the collected data and extract the valuable information (e.g., entities, relationships, etc.) Required for the mapping from this plethora of information, and then adding it to the knowledge graph.
Bidirectional long and short-term memory neural network (BILSTM), as an extension of the RNN model [19], is suitable for sequence modelling of textual information. This model is based on the introduction of bi-directional thinking to the Long Short-Term Memory Neural Network (LSTM), which encodes both front-to-back as well as back-to-front information, making full use of contextual information and is more accurate than the unidirectional LSTM.
BILSTM is composed of a Forward LSTM and a Backward LSTM together, and both the Forward and Backward LSTMs are connected to the Output layer, i.e., the final output of the Output layer is the result of splicing the implicit layer vectors of the LSTMs of the two directions, and the rest of the transfer process and the working principle are the same as that of the LSTM model.
The forgetting gate, input gate, and output gate are the key points of the long and short-term memory neural network model. LSTM controls the cell state by processing the information flowing into the model through these three gating units so that the information can pass through selectively: the forgetting gate is used to decide which part of the information is to be discarded. The input gate determines which information to leave in the cell state, and the output gate determines which information to output.
Oblivion gate is the first step of LSTM model, by reading
The input gate is mainly divided into two parts, the first part firstly
The second part of the input gate makes Hadamard product for
The final output value of the output gate is based on the cellstate, specifically, the output gate first superimposes
Transfer learning refers to learning in the target domain (representing the new domain to be learned) by applying the knowledge of the source domain (representing the knowledge that has already been learned in a certain domain using a method or model) through the use of the idea of transfer, the use of this method has a requirement on the target domain: it must be similar to the source domain, and then through the rational use of this similarity to share the information of the knowledge structure, the parameters in the model, etc., so as to get better results in the target domain tasks to get better results.
Among them, the model-based migration method is widely used, which utilizes shared parameters between the source and target domains to achieve the target task.
BERT is a multilayer Transformer bidirectional encoder released by Google [20], which belongs to a type of word vector model. Deep bidirectional representations are pre-trained by this model by jointly tuning the left and right contexts in all layers, and it has excellent performance on multiple NLP domain tasks.
The model is divided into two main parts: pre-training and fine-tuning. The first part of it is trained on unlabelled data for different tasks; the second part first initialises the model with the parameters trained in the first part and then utilises the labelled data from subsequent NLP tasks (e.g., question-answer, inference, named entity recognition, etc.) during the fine-tuning of the model. Meanwhile, the model can have three types of inputs, namely text vectors, word vectors and memory location vectors, and the activation function uses gel (Gaussian Error Linear Unit), which is an improvement of relu by adding statistical features to it, and the mathematical expression is shown in Eq. (7):
Incorporating a knowledge graph in the recommendation method of vocational education learning resources can not only further improve the recommendation performance of vocational education learning resources but also enhance the interpretability of the method. The current techniques for combining knowledge graphs with recommendation domains can be mainly classified into two categories, and the classification results are shown in Figure 1.

A recommendation based on the knowledge map
Embedding-based recommendation methods adopt the main idea of using knowledge graphs to get embedded representations of nodes and edges in low-dimensional space vectors to enrich the representations of students and learning resources. However, this kind of method often does not make use of the correlation information between students and learning resources and lacks reasoning ability and weak interpretability.
Path-based recommendation methods adopt the main idea of treating the knowledge graph as a heterogeneous mesh graph and, at the same time, consider the meta-path structure between students and learning resources so as to obtain the hidden relationship information in the graph and improve the performance of the related learning resources recommendation, with good interpretability. However, this type of approach is highly dependent on the meta-path and requires the participation of experts in the planning process of the graph.
This section provides a detailed description of the cloud platform learning resource recommendation model for vocational education students based on a knowledge graph, defines the similarity and knowledge connectivity between students’ interests and learning resources, and depicts the complete recommendation process.
The knowledge graph-based recommendation algorithm proposed in this paper obtains the relationship information between knowledge entities from the constructed knowledge graph and fuses the similarity and knowledge connectivity between user interests and resources to provide learning resources for learners. The similarity between user interests and resources takes into account the learner’s interest characteristics, and the knowledge connectivity takes into account the logical relationship between knowledge points according to the learner’s cognitive level so that the recommended teaching resources are more in line with the learner’s demand for learning from shallow to deep knowledge.
There are many ways to compute the similarity between user interests and resources, among which content-based recommendation uses the cosine similarity of text as the similarity between user interests and resources. There are different ways of computing the similarity between user interests and learning resources in different recommendation methods.
After completing the word vector representation of the resource, it is used to calculate the similarity of the text as well as the similarity between the user’s interest and the resource. The similarity is defined as follows:
In this paper, due to the limitation of the dataset, we use textual similarity to represent the similarity between user interests and resources. With more data, this section can also use more features to model user interests and use other methods, such as LFM, LDA topic model etc., to compute user preferences.
Knowledge connectivity is used to measure the close relationship between knowledge points. In the recommendation problem of teaching resources, the closer the subject knowledge points contained in a teaching resource are connected to the student’s cognitive knowledge points, the more the resource is considered to meet the student’s learning needs, and the more it is worth recommending.
For any two knowledge points
Based on the definition of the shortest path distance between knowledge points, the formula for the degree of knowledge connectivity between Knowledge Point
The above formula indicates that when the shortest path distance from knowledge point
In the knowledge graph
In the above formula,
The formula describes the meaning of: the shorter the path between knowledge points, the tighter the knowledge connection, the greater the degree of knowledge into the knowledge point, the more important the knowledge point. Combining the two, the greater the knowledge connectivity, the closer the connection between the knowledge sample of the resource and the user’s knowledge base, the more suitable the resource is for recommending to the user to learn.
When recommending learning resources, not only the learner’s interest is taken into account, but also the connectivity between the resource’s knowledge and the user’s knowledge level. According to the above definition of interest similarity and knowledge connectivity, the two are fused in a linearly weighted manner as the basis for resource recommendation. Parameter
The previous section gave a theoretical introduction to the idea of recommendation based on user interest and resource similarity and knowledge connectivity, and this section gives a detailed recommendation process on the basis of the above theory, and the recommendation process is shown in Figure 2.

Recommendation system based on the knowledge map
The specific implementation steps of this recommendation method are as follows:
The resource text data is subjected to lexical and de-duplication operations, and the keywords are extracted as the semantic features of the resources, and the keywords are represented as 50-dimensional word vectors, and the resource For each resource According to the user’s historical behaviour, the collection of all knowledge point entities contained in the historical resources that the user has learnt constitutes the user’s knowledge base, which can be represented as follows: Use resource word vectors and user history resource word vectors to calculate the similarity between user interests and resources; Linking the constructed knowledge graph and, for each user, calculating the knowledge connectivity between the user and the resource based on the user knowledge base and the resource knowledge base. This process knowledge graph provides information about knowledge relationships as well as paths. Weighted fusion of interest similarity and knowledge connectivity to get the connectivity between user and resource, take the N resources with the highest connectivity to recommend to the user.
Based on AI-assisted vocational education, teacher teaching method improvement can help teachers in the teaching process targeted design and improvement of teaching methods, more intelligent to help different students according to their learning style and rhythm of learning, to better meet the student’s learning needs, and further improve the teaching effect.
The improvement of teaching effectiveness is directly influenced by the teaching methods. Scientific and reasonable methods and strategies can enhance the learning effect and efficiency of students, encourage learning interest, and enhance one’s ability to comprehend knowledge. The resource recommendation model of the teaching cloud platform proposed in Chapter 3 is combined in this paper to enhance the teaching methods of vocational education teachers. Close integration with teaching content When carrying out teaching activities, teachers can select appropriate teaching methods based on the specific content of each lesson through the teaching cloud platform resource recommendation model based on knowledge mapping, such as for the topic of “the vitality of the market micro subject” in ideological and political science, the teaching cloud platform resource recommendation model based on knowledge mapping can be used to carry out the method. Selection can improve the speed of teachers’ lesson preparation and reduce the probability of incorrect lesson direction. Close integration with specific learning conditions The characteristics of teaching materials, learning methods, students’ psychological growth, and other aspects will have an impact on the effectiveness of teaching. The teaching cloud platform of knowledge mapping allows teachers to customize teaching for students by adopting different teaching strategies and methods based on the resource recommendation model. In the teaching process, teachers cannot completely rely on pre-set teaching plans to teach mechanically. They can make timely adjustments to the student’s feedback in the classroom according to the resource recommendation model of the teaching cloud platform based on knowledge mapping, at the same time, pay attention to the students’ differences and develop personalized teaching models for students at different levels so that every student can grow up comprehensively and healthily. Comprehensive application of multiple teaching methods Different levels of students have different learning needs due to their unique personalities and characteristics. Therefore, the teaching process can not simply be “one size fits all”. Otherwise, it is not easy to achieve the established classroom teaching goals. This requires teachers to choose the appropriate teaching methods according to the actual situation and the results of the teaching resources recommendation model. For example, when designing the teaching, teachers should consider the students’ personalities and characteristics, combine them with the recommended course content and influencing factors, and adopt personalized teaching methods so as to achieve the best teaching results by tailoring the teaching to the needs of individual students, and thus improve the overall quality and core competence of the students continuously.
The online teaching platform of a vocational school has been in operation for three years, providing sufficient data to support this personalized recommendation test. There are more than 100,000 resource data on the platform, covering multiple disciplines and resource types, as shown in Table 1. The network teaching cloud platform has 3500 student user records, and the data are divided into the training set, testing set and experimental set according to the ratio of 2:1:1, which are used for model training, method feasibility and validity testing, and Table 1 shows the resource profile of the network teaching cloud platform.
The network teaching cloud platform resource profile
Disciplines | Type | Resource data quantity/bar |
---|---|---|
Chinese medicine | Text resources | 5369 |
Image resources | 4658 | |
Audio and video resources | 7891 | |
e-commerce | Text resources | 14587 |
Image resources | 11258 | |
Audio and video resources | 2396 | |
Business administration | Text resources | 14715 |
Image resources | 11254 | |
Audio and video resources | 3569 | |
Accounting | Text resources | 15478 |
Image resources | 16589 | |
Audio and video resources | 6478 |
The user data of the online teaching cloud platform in the test set is randomly selected for analysis, and the method of this paper is applied to provide personalized resource recommendations. The behavioral records of the 10 selected cloud platform users are shown in Table 2.
Cloud platform user behavior record
User serial number | User id | Study days/d | Resource interaction times/times | Traffic/bar | Post number |
---|---|---|---|---|---|
1 | 22164953 | 24 | 152 | 101 | 3 |
2 | 22456798 | 16 | 106 | 57 | 1 |
3 | 22457814 | 16 | 129 | 31 | 3 |
4 | 22145816 | 1 | 14 | 3 | 0 |
5 | 22456372 | 30 | 211 | 156 | 11 |
6 | 22123654 | 46 | 288 | 234 | 6 |
7 | 22125987 | 4 | 43 | 31 | 1 |
8 | 22125789 | 14 | 112 | 97 | 4 |
9 | 22269952 | 197 | 846 | 805 | 13 |
10 | 22324578 | 36 | 202 | 187 | 6 |
According to the above data and user browsing content, the method of this paper is used to analyse the behavioural characteristics and recommend personalized resources, and the results of personalized recommendations are shown in Table 3. The method of this paper recommends different teaching resources for users, the degree of personalisation is good, and the matching degree between recommended content and students’ browsing content reaches more than 90%.
Resource personalization recommendations
User serial number | Browse resources | Recommended resource content correlation/% |
---|---|---|
1 | Accounting | 95 |
2 | Chinese medicine | 92 |
3 | Accounting | 93 |
4 | e-commerce | 96 |
5 | Chinese medicine | 99 |
6 | e-commerce | 97 |
7 | Business administration | 94 |
8 | Chinese medicine | 98 |
9 | Business administration | 99 |
10 | Accounting | 100 |
User surveys are mostly implemented by users completing questionnaires or recommending specific tasks on the system. In this study, we chose questionnaires that were completed by users. Their feelings can reflect the subjective evaluation of the system by users after using it, and the questionnaire designed for this study was also designed around this theme.
The questionnaire is designed to obtain learners’ subjective feelings about this recommender system in order to evaluate it. Its content is divided into three dimensions: interface ease of use, satisfaction with resource recommendations and overall experience of use, of which interface ease of use contains two questions with serial numbers 1 and 2, satisfaction with resource recommendations contains three questions with serial numbers 3, 4 and 5, and overall experience of use contains three questions with serial numbers 6, 7 and 8. 5 answers are used for the eight questions in this questionnaire. The level of agreement among learners with the questions was determined by calculating the proportion of people who agreed with the questions.
The target population of this questionnaire remained 100 learners in the school. The number of questionnaires distributed was 100, and the number of returned questionnaires was 100, with no invalid questionnaires. The statistical results of the questionnaire are displayed in Table 4. More than 90% of people chose to strongly agree on the eight questions designed, particularly when it comes to the overall feeling of use. The students chose to be very satisfied with the average number of people reached 95.33%, which illustrates that the intelligent recommendation system of teaching cloud resources based on the knowledge graph proposed in this paper has been affirmed by the majority of the people and that it has an effect of improving the professional performance of students in vocational schools.
Questionnaire survey results
Question | Evaluation grade | ||||
---|---|---|---|---|---|
Very agree | Basic consent | General consent | Different meaning | Completely different | |
1.The interface design of the system is beautiful | 90 | 4 | 5 | 1 | 0 |
2.The structure of the system is reasonable | 92 | 3 | 4 | 1 | 0 |
3.Satisfactory recommendations for the recommendation of the comprehensive recommendation module | 95 | 4 | 1 | 0 | 0 |
4.The recommendation of the “high rating resource recommendation” module is satisfactory | 92 | 6 | 2 | 0 | 0 |
5.Satisfaction with the overall recommendation of the system | 96 | 1 | 2 | 1 | 0 |
6.I think the system will help me learn | 94 | 6 | 0 | 0 | 0 |
7.I think the system has strengthened my confidence in learning | 95 | 3 | 2 | 0 | 0 |
8.After using the system, my vocational grade improved | 97 | 2 | 1 | 0 | 0 |
In this study, two computer science major classes at a vocational school in the city of A, a province, with 50 students in each class, were selected as experimental subjects. In this experiment, the independent variable is the teaching methods used in the two classes, the dependent variable is the student’s academic performance, and the factors indispensable to teaching activities, such as the teaching environment and teaching facilities, belong to the irrelevant variables. When conducting teaching practice, attention should be paid to controlling the influence of irrelevant variables on the experiment. Therefore, except for the teaching method, the same teaching conditions should be used in both classes of the control group and the experimental group.
After the teaching practice was carried out in two classes of computer majors in this vocational school in city A, a stage test was organised for the students in order to assess the learning situation at this stage. The exam was closely focused on the learning content of the chapter. The exam was in the form of an offline paper version of the question paper, divided into subjective and objective questions, to comprehensively examine the students’ mastery of the knowledge they have learned and their ability to apply it. At the end of the quiz, the students’ answer sheets were reviewed, and the students’ scores were recorded in an Excel table for statistical analysis. The distribution of the scores of this quiz for the two classes is shown in Figure 3, with the top corner ordinal numbers 1-5 representing the five intervals of the students’ scores of the range of 91-100, 81-90, 71-80, 61-70, and less than 60, respectively.

Student achievement
Comparing the results of the experimental class and the control class, the number of students in the experimental class in the high scoring range and the number of passing grades have increased to different degrees compared to the control class. In the experimental class, there were seven students in the 91-100 range, five more than in the control class. The number of students with scores between 81-90 is 20, which is the largest percentage of the class size at 40 percent. Fifteen students, or 30 percent, scored between 71 and 80. Another six students scored between 61-70, and only two students scored below 60. Overall, most of the students in the experimental class achieved good results after adding the optimal teaching method to the teaching process, and they were able to construct, internalize, and absorb knowledge actively.
In order to test whether the teaching method plays a positive role in student’s academic performance and to understand students’ learning feelings during the teaching process, a questionnaire was distributed to the students in the experimental class after the experiment, and their attitudes and views on this teaching mode were understood by analysing the students’ feedback on the questionnaire. The questionnaire was designed to cover four aspects: students’ mastery of knowledge, participation in the classroom, interest in the course, and satisfaction with the course. Two questions were designed for each aspect, using a five-point scale, and in terms of scoring rules, this questionnaire was set up with five options of Strongly Agree, Agree, Generally Agree, Disagree, and Strongly Disagree, which were assigned the values of 5, 4, 3, 2, and 1 respectively, with the larger values representing, the more the respondents agree with the statement. Table 5 displays the particulars of the questionnaire.
Questionnaire for teaching methods
Knowledge of knowledge | 1.The classroom of optimization method is good for my knowledge of course |
2.The classroom of optimization teaching can drive me to learn the knowledge that needs to be done | |
Participation in class | 3.Using the participation teaching method of the classroom improved my participation in the classroom |
4.I can actively participate in the class cooperation process | |
Interest in courses | 5.I am interested in teaching content and teaching methods after using the participation method of classroom |
6.Using the participation method of participation in the classroom inspired my interest in the program design of the language program | |
Satisfaction with the course | 7.I am satisfied with the classroom model of the class satisfaction method |
8.I am willing to accept the introduction of this teaching pattern to other courses |
After the questionnaire data were sorted out, the frequency and proportion of each option in each question were counted, and the results were organized and visualized to analyze the students’ attitudes and opinions in the four aspects of “mastery of knowledge”, “participation in the classroom”, “interest in the course” and “satisfaction with the course”.
Figure 4 shows the statistics of the students on the question of “the classroom of optimized teaching method is beneficial to my mastery of course knowledge.” the serial numbers of vertical coordinates 1-5 indicate the five indicators of disagreeing, disagreeing, generally, agreeing, and agreeing very much, and 90% of the students chose “agreeing very much” or “agreeing”. 90% of the students chose “strongly agree” or “agree”, accounting for more than four-fifths of the students in this class, and most of the students feel that this teaching method is more conducive to their mastery of the knowledge of the course.

Question 1 statistics
Figure 5 shows the statistics of students’ responses to the question “Optimized teaching methods in the classroom can drive me to learn the knowledge I need to use to complete the task”, and 88% of the students chose “Strongly Agree” or “Agree”. The number of students who chose “strongly agree” or “agree” was 88%, which means that this teaching model can promote students to actively learn the knowledge related to the task for the purpose of completing the task.

Question 2 statistics
Figure 6 shows the results of the survey on “The use of the optimized teaching method has improved my participation in class”, more than half of the students chose “Strongly Agree”, and nearly 30% chose “Agree”. The majority of the students were able to actively participate in the classroom activities under this teaching model.

Question 3 statistics
Figure 7 shows the results of the survey on “I can actively participate in the group work in class”, with 20 students selecting “strongly agree” and 20 students choosing “agree”. In addition, there was one student who chose “disagree,” and one student who “disagreed”, and most of the students actively participated in group work to explore ways to solve problems and complete tasks through group cooperation.

Question 4 statistics
Figure 8 shows the results of the survey on “I am very interested in the content and teaching method of the course after using the optimized teaching method”, and the students with a positive attitude accounted for 96% of the total number of students in the experimental class, indicating that the classroom teaching model based on the optimized teaching method is attractive to most students and can increase students’ interest in the classroom to a certain extent.

Question 5 statistics
Figure 9 shows the statistical results of “the use of optimized teaching method has stimulated my interest and enthusiasm in the C programming course” a total of 46 students agreed, accounting for 92% of the class, indicating that the optimized teaching method has a positive effect on the transformation of students’ learning attitude towards the C programming course.

Question 6 statistics
Figure 10 shows the results of “I am satisfied with the current classroom model based on the optimization of teaching method”. More than 85% of students are satisfied with this teaching model.

Question 7 statistics
Figure 11 shows the statistical results of “I am willing to accept the extension of this teaching mode to the teaching process of other courses”, 94% of students strongly agree or agree with the addition of AI-assisted optimization teaching methods in other courses, indicating that the optimization teaching method has a certain positive effect and attraction on students’ learning, and students have a high acceptance of this AI-assisted teaching method.

Question 8 statistics
Therefore, it can be concluded that the implementation of the Optimisation Teaching Method is effective in the C Programming course in the Computer Science class of a vocational school. After the implementation of the optimisation teaching method, the student’s interest in learning and their participation in the classroom has increased to some extent, and this AI-assisted teaching method has received more positive feedback, showing the effectiveness of the method in secondary schools. Therefore, based on the positive feedback after the implementation of the optimised teaching method, it can be concluded that the implementation of the optimised teaching method in secondary schools is effective, and the method will continue to be explored and optimised in the future in order to further improve the learning outcomes and vocational competence of students.
This paper proposes a learning resource recommendation system based on a knowledge graph and proposes a teaching optimisation method for vocational education teachers based on this system, and the practice test shows that this method has a certain optimisation effect on students’ teaching.
When the knowledge graph-based resource recommendation model of the teaching cloud platform is used to achieve personalised resource recommendation, the personalised recommendation results have a better degree of personalisation, and the matching degree between the recommended teaching resources and the students’ browsing content is up to more than 90%. In terms of the student’s overall experience of the system, the average proportion of those who chose the very satisfied option reached 95.33%, which indicates that the majority of the people have affirmed the intelligent recommendation system proposed in this paper and that it has a positive auxiliary effect on the teaching of teachers in vocational schools, which can improve the professional level and professionalism of students. The effectiveness of the intelligent recommendation system proposed in this paper has been verified through practice.
This system was used to implement the optimisation method of teaching for vocational education teachers. The percentage of students in the experimental group who expressed their attitudes and opinions as positive feedback in the four aspects of learning interest, participation in the classroom, interest in the course, and satisfaction with the course reached more than 80%, which indicates that the optimisation method of teaching based on the assistance of AI has received a more positive feedback, and that the optimisation method of teaching based on AI has received a more positive feedback. The C Programming course has been implemented in the vocational school’s computer science professional class and has been effective in implementing the teaching method. The method is advantageous for enhancing the learning effect and vocational ability of vocational school students.