Abstract
This paper establishes a hybrid education teaching practice quality evaluation system in colleges and constructs a hybrid teaching quality evaluation model based on a deep belief network. Karl Pearson correlation coefficient and root mean square error (RMSE) indicators are used to measure the closeness and fluctuation between the effective online teaching quality evaluation results evaluated by this method and the actual teaching quality results. The experimental results show the following: (1) As the number of iterations increases, the fitting error of the DBN model decreases significantly. When the number of iterations reaches 20, the fitting error of the DBN model stabilizes and decreases to below 0.01. The experimental results show that the model used in this method has good learning and training performance, and the fitting error is low. (2) The evaluation correlation coefficients are all greater than 0.85, and the root mean square error of the evaluation is less than 0.45, indicating that the evaluation results of this method are similar to the actual evaluation level and have small errors, which can be effectively applied to online teaching quality evaluation in colleges and universities.
1. Introduction
In the process of informatization teaching with the in-depth integration of information technology and classrooms, teaching methods tend to be more online integrated with offline. At present, we are in a ubiquitous learning environment supported by mobile Internet; how to effectively integrate combining resources, deep learning promoted by design technology, is a question worth exploring and thinking about. With microclasses, MOOCs (massive open online courses), SPOC (small private online course), and flipped classroom development, blended teaching has gradually become one of the important directions of college teaching reform. Blended teaching complements the advantages of traditional classroom teaching and online learning to achieve the optimization of learning effects [1], which is in line with the purpose of deep learning. Through blended teaching, making full use of high-quality resources and tools, and reconstructing the teaching process, an effective teaching plan can be provided for the realization of deep learning.
The current research is mainly concentrated in the field of higher education. The content of the research includes influencing factors, technical support, application models, strategies, blended teaching and online learning, effects and quality, evaluation, and other issues [2]. Based on the analysis of the relevant literature on online learning and blended teaching, Shivetts proposed that students’ learning motivation is the main factor for the success of online learning and blended learning. In a blended learning environment, students’ learning results and curriculum settings and accessibility sex is closely related [3]. Graff and Ayden conducted research from the perspective of classroom community awareness [4,5], Aspden conducted research from the perspective of student participation and interaction [6], Oliver and Trigwell passed based on the problem-based learning framework to explore the evaluation of blended teaching and so on [7]. Based on the exploration community theory, Garrison et al. further constructed a specific hybrid teaching evaluation framework [8, 9].
The primary task of developing mixed teaching in colleges and universities is how to improve the quality of online teaching and informatization teaching [10]. Therefore, it is very important to study effective methods for evaluating online teaching quality in colleges and universities. Research on online teaching quality evaluation methods in colleges and universities can strengthen online teaching quality management and improve online teaching quality [11]. A deep belief network is an important learning model in deep learning, formed by combining low-level features and more abstract high-level features or attribute categories. It has received widespread attention from all walks of life and has since set off a wave of deep learning research. In recent years, deep belief networks have been widely used in curriculum areas closely related to people’s lives and can realize machine translation, face recognition [12], speech recognition, signal recovery, business recommendation, financial analysis, medical assistance, and intelligent transportation. The deep learning network has good robustness and high accuracy. Based on this, this paper studies the method of evaluating the quality of mixed teaching in colleges and universities so as to improve the quality of mixed teaching in colleges.
2. Related Work
2.1. Deep Belief Neural Network
The deep belief network (DBN) model is a series of restricted Boltzmann machine (RBM) models stacked from bottom to top, using an unsupervised greedy layer-by-layer method to pretrain multiple RBMs, which means that each layer of RBM needs to be trained. The weight value enables the hidden layer to obtain the connection of the high-level data expressed by the visible layer [13].
2.1.1. Basic Principles
The training process of the deep belief neural network can be summarized into two parts: one is pretraining, which uses unsupervised layer-by-layer learning to initialize the parameters of the neural network structure, and the other is fine-tuning (fine-training). At the end of the model, the backpropagation algorithm is used to fine-tune the network parameters globally. Even if the entire network has accumulated multiple layers, the parameters can still be reasonably optimized. This learning method solves the problem of gradient disappearance and makes the learning of deep neural networks more efficient.
2.1.2. Restricted Boltzmann Machine
Restricted Boltzmann machine (RBM) originated from the Boltzmann machine (BM). BM not only has a strong unsupervised learning ability but also can learn complex rules in data [14], but this kind of training is relatively complicated, and the training time is longer. In order to overcome this problem, Reikard introduced a restricted Boltzmann machine [15], whose structure is shown in Figure 1.

RBM is composed of a visible layer (visible) and a hidden layer (hidden), and there is no connection in the layer. h1 to hn are n real numbers, V1 to Vm are m real numbers. These real numbers are all numbers between 0 and 1, and each of them forms an h vector and a vector. There is a weight between each explicit layer and the hidden layer, which has a total weight of n·and m, and c and b are the bias vectors of the hidden and explicit layers, respectively.
RBM is an energy-based model. Then, for a given set of states (, h), the energy formula is defined as follows:
Among them, θ is the parameters , c, and b. The energy represented on the right side of the equation has three parts. One is generated by the weight connecting the nodes and h on both sides, and all three of them must be 1 to be considered as energy output; the other two are the multiplication of the offset on the node and the vector dimension value of the node input, and the same three must be 1 to be considered as energy output. Each energy corresponds to a state; the smaller the energy, the more stable the model. When the parameters are determined, the joint probability distribution of the explicit layer and hidden layer neurons can be obtained from the energy formula as follows:
Therefore, when determining the state of the input layer, the activation states of the hidden layer nodes are independent of each other. Therefore, the activation probability of the i-th hidden layer node is as follows:
is the activation function (Sigmoid).
Given that the structure of the restricted Boltzmann machine is symmetrical, when determining the state of the hidden layer node, the activation state of each input layer node is also conditionally independent, so in the same way, the activation probability of the j-th visible unit can be expressed as follows:
2.1.3. Algorithm Execution Process of the Restricted Boltzmann Machine
In 2002, Brosch proposed a fast-learning algorithm for RBM-Contrastive Divergence (CD) [16]. In the CD algorithm, the state of the visible layer node can be used as the data feature value, and the activation state of all hidden layer nodes is calculated by formula (4). After the states of all hidden layer nodes are determined, the probability is calculated that the value of the i-th input layer node iv is 1 according to formula (5), and then, a reconstruction of the visible layer is obtained. In this way, when using the value of the log-likelihood function of the stochastic gradient ascent method on the training data, the update criterion of each parameter is as follows:
Among them, e is the learning rate, 〈hi〉data is the mathematical expectation defined by the training dataset, and 〈hi〉recon represents the expectation of the model definition after a step of reconstruction.
2.1.4. Basic Structure
The deep belief network is composed of multiple restricted Boltzmann machines and a layer of supervised classifiers, as shown in Figure 2. DBN can be summarized into two stages in the whole learning process. the first stage is unsupervised learning, and the second stage is supervised fine-tuning [17, 18].(1)The first stage is to conduct greedy training on multilayer RBM, that is, training layer by layer, and training the model layer by layer from the bottom to the top. The output value of the previous RBM is used as the input value of the next RBM to realize the initialization of the network parameters.(2)The second stage is to fine-tune the model. In order to optimize the objective function of the entire model structure, the BP neural network algorithm or the support vector machine can be used to fine-tune the parameters to achieve global optimization. The fine-tuned network parameters are used as the initial parameters of the entire network. Compared with traditional neural networks, DBN has a higher accuracy rate and at the same time solves the problem of easily falling into local optimality.

2.2. Mixed Education Evaluation System
Blended teaching is a new type of education and teaching mode that combines the advantages of traditional face-to-face teaching and online teaching, and integrates information technology with traditional education and teaching in an effective form. The realization of this comprehensive advantage is based on the deep integration of different application methods, different teaching concepts, and different technical means. Blended education teaching has five basic characteristics: (1) the integration of teaching theories; (2) the integration of teaching resources; (3) the integration of teaching environments; (4) the integration of teaching methods; (5) the integration of teaching strategies; and (6) the integration of evaluation methods [19].
Through reading related literature, the teaching evaluation camp covers the entire process of teacher teaching, basically including teaching objectives, teaching design, teaching process, and teaching effect. The concept of “assessing teaching by learning” and the characteristics of a mixed teaching model are constructed in this paper to construct a three-level evaluation index. In order to maintain the consistency of descriptions among indicators at all levels, this article describes the first-level indicators of mixed teaching evaluation in terms of “learning design,” “learning environment,” “learning process,” and “learning effect.”
the above-mentioned first-level index system is used to expand the hybrid education and the teaching evaluation system, the hybrid education and teaching evaluation indicators are expanded, and a hybrid education and the teaching evaluation system are built. The specific evaluation methods are shown in Table 1.
3. The Quality Evaluation Model of Hybrid Higher Education Teaching Practice Based on Deep Learning Route
3.1. Model Structure
DBN is a generative model based on unsupervised learning, and most of the objects it faces are unknown data, such as nonlinear systems. The main goal of deep learning is to use algorithms to describe changes in data [18]. However, most DBNs build models with dense representations, and there is a big problem with this representation; that is, any fluctuations or noise in the input will greatly change the feature representation vector extracted by the hidden layer, which will lead to the robustness of the network. The rod is poor [21].
This paper introduces an output layer in the top layer of the deep belief network model and implements score level mapping to the characteristics of all colleges and universities’ online teaching quality evaluation indicators through the Softmax multiclass classifier based on logistic regression expansion and completes the online teaching quality evaluation of colleges and universities [23]. The online teaching quality score mapping of colleges and universities is a multiclass classification problem, so the extended logistic regression is a Softmax regression. Let {(x1, y1), …, (xn,yn)} be the set of the state x of each neuron in the hidden layer and the corresponding class label y of each neuron; for M categories, the corresponding class of the i-th feature for labels yi∈ {1, 2, ..., M}, the M-dimensional category probability distribution matrix is as follows:
In the above formula, the model parameter matrix of M × N is σ; the input feature dimension is N. The expression formula of the cost function of Softmax regression is as follows:
The college hybrid teaching quality evaluation system is used as the input value of the deep belief network’s online teaching quality evaluation model of colleges and universities. To ensure that the deep belief network model conforms to the characteristics of the input college online teaching quality evaluation system, the first layer of RBM uses Gauss–Bernoulli. RBM is used to map the features entered into the online teaching quality evaluation system of colleges and universities into a binary state. The remaining layers of RBM use Bernoulli-Bernoulli RBM, and the Bernoulli-Bernoulli RBM abstracts the features between the essential relationship. The hybrid higher education teaching quality evaluation model based on the DBN model is shown in Figure 3.

3.2. Training Steps
Since the p(h1;W 1) of the deep belief network model is consistent with the p( | h1;W1) of the RBM, there is a greedy layer-by-layer pretraining step of the s-layer hidden deep belief network model in the model. Step 1. Train RBM to obtain the weight parameter W1 of the bottom RBM. Step 2: Start training the second layer of RBM, initialize the second layer weight parameter W2 = W1T to ensure that the deep belief network model with two hidden layers is better than the uninitialized RBM, and then pass fixed W1 to train the second layer of RBM to optimize W2. Step 3: Continue to train the third layer of RBM, initialize the third layer RBM weight parameter W3 = W2T, train the third layer RBM by fixing W2 to make W3 reach the optimal value, similarly, complete the final layer of RBM weight to reach the optimal value, complete the unsupervised pretraining of the entire deep belief network model.
In the case of optimal learning of the parameters to be tested, for the feature to be tested, and after learning the deep belief network model of the trained model parameters, the probability that this feature belongs to the online teaching quality scores of various colleges and universities is calculated, and the quality score with the highest probability is selected as output result.
4. Simulation Experiment
4.1. Experimental Data
Taking a university as the evaluation object, the mixed teaching data of the university from March to August of 2020 are randomly selected as the dataset. The data include a total of 5,000 data samples. The online teaching quality evaluation method for colleges and universities based on the deep learning network studied in this paper is used to implement online teaching quality evaluation. The selected evaluation indicators are shown in Table 2. The scoring method of the evaluation indicators is to select 10 experts from outside the school and 5 senior professors familiar with the online teaching situation in the school. The average scoring value is regarded as the final evaluation score of each secondary evaluation index. The interval of this value is (0–1). Each score corresponds to the online teaching quality evaluation level of colleges and universities; that is, the evaluation criteria are shown in Table 3.
4.2. Learning and Training Performance
In order to test the learning performance and training performance of the DBN model used in this paper, 3,000 data samples out of 5,000 data samples are used as the model training set. The remaining 2,000 data samples are used as the model test set, and the training set sample data are used as the model input, the model training is expanded, and the model fitting error is calculated under different iteration times in the training process. The result is shown in Figure 4. It can be seen from the data in Figure 1 that as the number of iterations increases, the fitting error of the DBN model used in the method in this paper decreases significantly. When the number of iterations reaches 20, the fitting error of the DBN model stabilizes and decreases to below 0.01. The experimental results show that the model used in this method has good learning and training performance, and the fitting error is low.

The 2,000 test samples in the test set are divided into 10 groups and input them into the model for model testing, and the output results of the model are compared with the expected output results. The results are shown in Table 4. From the data in Table 4, it can be seen that the relative error between the test output result and the expected output result after the model is trained is less than 3%, and the evaluation level of the method in this paper is exactly the same as the actual level. Experimental results show that the trained model has evaluation accuracy and can be effectively used for online teaching quality evaluation in colleges and universities.
4.3. Evaluate Performance
In order to verify the evaluation performance of the method in this paper, Karl Pearson correlation coefficient and RMSE are used to measure the degree of closeness and fluctuation between the evaluation results of efficient online teaching quality evaluated by this method and the actual teaching quality results. The correlation coefficient R and the root mean square error RMSE are counted in the evaluation process of the method in this paper, and the results are shown in Table 5. Analyzing the data in Table 5, we can see that the evaluation correlation coefficients of the method in this paper are all greater than 0.85, and the root mean square error of the evaluation is less than 0.45. The results show that the evaluation results of the method in this paper are highly similar to the actual evaluation level, and the error is small, which can be effectively applied to online teaching quality evaluation in colleges and universities.
Through the above experiments, it can be seen that the method in this paper has good performance in evaluating the quality of online teaching in colleges and universities. For this reason, the method in this paper is used to evaluate the online teaching quality of the colleges and universities. The evaluation results are shown in Table 6. After analyzing the data in Table 6, it can be seen that the method in this paper can realize the quality evaluation of the mixed education of the university by evaluating the various indicators that measure the quality of the mixed education of the university. The mixed education quality of the college is generally evaluated by the method of this article. Colleges and universities can take targeted measures based on the indicators with lower scores.
The evaluation results of this article is to improve the quality of online teaching.
5. Conclusion
This paper establishes a hybrid education teaching practice quality evaluation system in colleges and universities, and constructs a hybrid teaching quality evaluation model based on a deep belief network. Karl Pearson correlation coefficient and Root Mean Square Error (RMSE) indicators are used to measure the closeness and fluctuation between the effective online teaching quality evaluation results evaluated by this method and the actual teaching quality results degree. The experimental results show that:(1)As the number of iterations increases, the fitting error of the DBN model decreases significantly. When the number of iterations reaches 20, the fitting error of the DBN model stabilizes and decreases to below 0.01. The experimental results show that the model used in this method has good learning and training performance, and the fitting error is low.(2)The evaluation correlation coefficients are all greater than 0.85, and the root mean square error of the evaluation is less than 0.45, indicating that the evaluation results of this method are similar to the actual evaluation level and have small errors, which can be effectively applied to online teaching quality evaluation in colleges and universities.
Data Availability
The dataset can be accessed upon request.
Conflicts of Interest
The authors declare that they have no conflicts of interest.