Open Access Paper
15 January 2025 Research on knowledge graph construction and intelligent assisted decision-making of power grid dispatching
Xue Yang, Yu Li, Qi Zhao, Yi Wang
Author Affiliations +
Proceedings Volume 13513, The International Conference Optoelectronic Information and Optical Engineering (OIOE2024); 1351305 (2025) https://doi.org/10.1117/12.3045346
Event: The International Conference Optoelectronic Information and Optical Engineering (OIOE2024), 2024, Wuhan, China
Abstract
In view of the complex knowledge of power grid dispatching and the high real-time performance of dispatching decision, a study on the construction of power grid dispatching knowledge graph and intelligent assisted decision-making were proposed. Firstly, a BERT-BiLSTM entity recognition model is proposed to identify the data such as power grid dispatching procedures, fault plans and business processes. Then, a top-down ontology construction model for power grid dispatching is proposed to assist the construction of the knowledge graph for power grid dispatching. Finally, based on the knowledge graph of power grid dispatching, the intelligent assisted decision-making of power grid dispatching is realized. The validity and rationality of the model have been verified through actual operation data of power grid dispatching, and the assisted decision-making system can realize the rapid data processing and decision support.

1.

INTRODUCTION

With the continuous development of the Internet of Things in power, big data in power has ushered in new opportunities [1]. Power grid dispatching is an effective management method used to make all kinds of power production work orderly, ensure the safe and stable operation of the power grid internally, and provide reliable power supply externally. The existing power grid dispatching system focuses on power system data acquisition, system monitoring, security verification, etc., but it is difficult to process natural language-based dispatching data information [2]. The dispatching system needs to convert the unstructured power grid dispatching data into data that can be recognized by the computer, and visualize the data to help the staff to quickly and comprehensively trace the fault causes and make auxiliary decisions when the power grid dispatching fault is handled, so as to improve the stability of the power system. In this context, it is necessary for power grid dispatching personnel to be familiar with field equipment and power regulations, and to repeatedly consult and memorize a large amount of non-(semi-) structured text information. Therefore, targeted and efficient natural language understanding technology should be studied to realize semantic analysis of scheduling text [3, 4].

Knowledge graph is a knowledge representation method, which is a visual mesh representation of entities and their interrelationships using triplets as a representation form [5, 6]. Power equipment, fault handling, business process and grid structure in power grid dispatching can be represented by graph structure, and power grid dispatching needs to integrate and analyze a large amount of data. By combining the natural language parsing technology of power text with knowledge graph technology, unstructured data in power knowledge can be integrated into the knowledge graph, which can reduce mistaken operations in intelligent decision support, optimize disposal strategies, and improve work efficiency [7].

At present, knowledge graph technology is still in the initial exploration stage in the power sector, and there is no research on knowledge graph in the field of power grid dispatching [8]. Literature [9] proposed the “neighborhood knowledge” model of power grid dispatching and the fine operation rule method of online discovery, but the content of knowledge graph is limited to the cross-section and its quantitative relationship. Literature [10] proposed the construction method of “ one power grid diagram ” to achieve comprehensive integration of power grid data, but did not consider the correlation with business scenario knowledge. Literature [11, 12] integrates existing power grid multi-source data to build power equipment knowledge graph and realize intelligent search and visualization, mainly focusing on integrated equipment management in the case of non-power grid faults. Literature [13] integrated the graph computing platform and proposed the integration method of power grid multi-source information system, which greatly improved the analysis level of complex systems on the power grid side, but ignored the improvement of the business knowledge level of regulators and the man-machine interaction of scenes. In terms of assisted decision-making for power grid dispatching, literature [14] aims to construct a knowledge graph for the basic platform of the dispatch system, assisting operation and maintenance personnel in completing business fault analysis of the dispatch automation system. It mainly focuses on the problem of automation operating system faults and does not involve power system faults. In general, the current research work mainly focuses on conceptual frameworks and has few specific implementation applications; Most of them are limited to partial map construction and single function implementation, and comprehensive scenarios are not considered insufficiently; Convenient human-computer interaction is missing, algorithm ignores the leading role of regulators.

Although knowledge graphs have been rapidly developed and applied in the field of electricity, research on the construction and intelligent assistance of knowledge graphs for power grid dispatch has not yet been conducted in depth. Therefore, this paper takes power grid dispatch data as the research object and designs and constructs a domain knowledge graph framework. Firstly, the BERT-BiLSTM-CRF model is proposed for entity recognition of power grid dispatching data. Then, a top-down ontology construction method is proposed to assist the construction of power dispatching group knowledge graph, and the visualization of power grid dispatching data is realized by using Neo4j graph database. Finally, the intelligent auxiliary decision-making is realized on the basis of power dispatching knowledge graph.

2.

ANALYSIS OF CHARACTERISTICS OF POWER GRID DISPATCHING DATA

The power grid dispatching service needs to process a large amount of text information, such as power outage plans, operation tickets, work tickets, and fault alarm messages. The syntactic characteristics of these texts are similar, and this paper takes the more complex text of power outage and power transmission as an example to study computer natural language understanding algorithms. The structure of power grid dispatching data is shown in Figure. 1, which generally includes the name of applicant, application number, work location, work content, work time, job application unit, etc. Among them, the work content and opinions are generally written in natural language, containing a large number of professional electricity vocabulary, which is difficult for computers to accurately identify.

Figure 1.

Data structure diagram of power dispatching.

00005_PSISDG13513_1351305_page_2_1.jpg

The characteristics of power grid dispatching data are as follows:

  • (1) A large amount of dispatching data is saved on the power grid dispatching platform, but as training samples, there is a lack of label information that makes it difficult to directly apply machine learning algorithms such as deep learning.

  • (2) There are various types of dispatching operations, and their understanding requires professional knowledge of electricity power, lacking conventional and available resource and syntax knowledge bases.

  • (3) The description of operation objects is complex and there exist numerous types. They are often defined by multiple nouns such as power station, voltage level, equipment type, and number, and some elements are often omitted in actual expression, resulting in subject detachment, which requires to be understood in combination with multi-level context. Figure. 2 is a simplified version of TPOP content. There exist a lot of terms such as “110kV Secondary Line of Secondary Street” and “Automatic Takeover to Stand-by Supply”, and each sentence needs to be accurately understood.

Figure. 2

BERT-BiLSTM-CRF entity recognition model.

00005_PSISDG13513_1351305_page_3_1.jpg

3.

KNOWLEDGE ENTITY RECOGNITION MODEL OF POWER GRID DISPATCHING BASED ON PBERT-BILSTM-CRF

Entity recognition is an information extraction technology that determines the boundary of data such as person names and place names with specific meanings. Power regulation data has the characteristics of having a large number of unique location words and abbreviations, which belong to text in the field of expertise. Therefore, when recognizing entities, it is necessary to fully consider the characteristics of the text. In order to address the issue of difficulty in accurately identifying power regulation entities, this paper proposes the PBERT-BiLSTM-CRF model as a named entity recognition model for implementing the field of power grid fault handling. The BERT-BILSTM-CRF power regulation entity recognition model mainly consists of three parts: BERT representation layer, BiLSTM feature extraction layer and CRF output layer. The entity recognition process is shown in Figure. 2.

3.1

BERT layer

The BERT layer is a knowledge representation model composed of multiple Transformer encoders that converts the input text sequence into a vector sequence representation, and each of which incorporates contextual information. The BERT layer captures word-level and sentence-level representations respectively through masking training and subsequent prediction training. Compared with traditional modesl that can only obtain semantic information in one direction, the BERT layer can obtain semantic information in any direction as the objective function. The addition of residual modules in the BERT layer improves the optimization ability of the model, which can effectively alleviate the gradient vanishing problem of the model. The BERT layer structure is shown in Figure. 3.

Figure. 3.

BERT layer structure.

00005_PSISDG13513_1351305_page_4_1.jpg

Firstly, power grid dispatching data texts after segmentation are input into the BERT layer in the form of segmentation units o1, o2, …, ou, and semantic features of segmentation units, contextual position features, and position features in sentence fragments are extracted. Finally, the Transformer encoder outputs the texts in the form of vectors h1, h2, …, hu represented by different class features.

  • (1) BERT overshadows the training process

    Masking training is aimed at improving the model’s efficiency in utilizing text and enhancing the range of text information acquisition. Masking training randomly covers 15% of the characters in the sentences as training samples, where 80% of the characters in the samples are replaced by masked token, 10% remain unchanged, and 10% replace randomly. Let the encoder predict the original vocabulary in the masked area after completing the replacement. Finally, the error between the actual characters and the predicted characters is calculated, and the model parameters are adjusted through backpropagation.

  • (2) BERT context prediction training

    Context prediction is the optimization of a model at the sentence level, which involves randomly replacing some sentences and determining their order. During context prediction training, the output of BERT is 1, indicating the existence of context relationships. BERT realizes the process of extracting power text features at the sentence level through context prediction training, the model parameters is further optimized, achieving the goal of improving the accuracy of downstream natural language processing tasks.

With the increase of the number of network layers, the training error periodically expands, and the accuracy of neural network gradually decreases. Assuming that the output of a designed neural network is H(x) = f(x) + x. Network is more easily optimized by adding residual learning, which makes the output more sensitive.

3.2

BiLSTM feature extraction layer

When entity recognition is performed on power grid dispatch texts, there is a strong semantic correlation between contextual texts. Therefore, LSTM models with arbitrary length sequences can be processed by introducing a built-in gating mechanism. LSTM selectively forgets unimportant sequence information while retaining the current input information. In order to better obtain contextual semantic information and expand backward knowledge acquisition method, forward LSTM is added on the basis of backward LSTM in the article to obtain forward hidden state and backward hidden state. The results of BiLST layer are shown in Figure. 4.

Figure. 4

BiLSTM layer.

00005_PSISDG13513_1351305_page_5_1.jpg

At time t, the output sequence of the forward LSTM hidden layer is 00005_PSISDG13513_1351305_page_5_2.jpg, and the input of h1 is W1. Starting with h2 and ∀h2h, the input is Wiht–1. At time t, the output sequence of the reverse LSTM hidden layer is 00005_PSISDG13513_1351305_page_5_3.jpg, and the input of s1 is W1. Starting with s2 and ∀Sj ∈ s, the input is Wj ⊕ sj–1. Performing technical output on Wk to obtain vector Tk, and Tk = hk⊕Wj⊕ sj–1.At this point, the normalization of output result means that only each location is independently classified, and no information that has been marked in the context is used. The LSTM state update expression is shown in the equation as follows.

00005_PSISDG13513_1351305_page_5_4.jpg
00005_PSISDG13513_1351305_page_5_5.jpg
00005_PSISDG13513_1351305_page_5_6.jpg
00005_PSISDG13513_1351305_page_5_7.jpg
00005_PSISDG13513_1351305_page_5_8.jpg

In the formulas, sigmoid is the activation function; tanh is the activation function; a is the gate control unit of LSTM; w is the hidden layer weight matrix; μ is the weight matrix of the input vector x; b is the offset term; Ct is the text information at time t of LSTM unit.

3.3

CRF output layer

Although Bi-LSTM considers the context information of power text, it cannot take the dependency relationship between power entity labels into account. Therefore, the model can consider the correlation between class labels by adding the CRF layer to the Bi-LSTM layer, and obtain the global optimal annotation results through the transfer matrix for global scoring.

Firstly, the transfer matrix A is set that the transfer scores between adjacent labels in the statement of power safety hazards can be represented by matrix element Ai,j. The total score of a label sequence is determined by the transfer of each label. Given the input sentence X = (x1, x2, … xn) and the output label sequence Y = (y1, y2, …yn), the total score of the label sequence is shown in the formula.

00005_PSISDG13513_1351305_page_5_9.jpg

Pi,j is the i-th character of hidden text in the formula and P ∈ Rn*k; yi is the score of the label; n is sentence label type; Ai,j is matrix element and A ∈ R(k+2)*(k+2).

Then, quotient the total correctly labeled score with the sum of all possible labeled scores, normalize the sequence path, and the sequence path is normalized to generate the probability of label sequence y under the condition of input sequence X. The probability is shown in the formula.

00005_PSISDG13513_1351305_page_6_1.jpg

During the training process, the logarithmic maximum likelihood estimation method is used to obtain the loss function and the logarithmic probability of the correct label sequence, as shown in the formula.

00005_PSISDG13513_1351305_page_6_2.jpg

Finally, the parameters are trained by the stochastic gradient descent learning algorithm. After obtaining the parameters, the dynamic programming algorithm Viterbi algorithm is used to obtain the output sequence with the maximum score, which is used as the final annotation result for the entities with safety hazards in power production, as shown in the formula.

00005_PSISDG13513_1351305_page_6_3.jpg

4.

RESEARCH ON THE CONSTRUCTION OF POWER REGULATION KNOWLEDGE MAP AND ASSISTED DECISION MAKING

4.1

Ontology assisted construction

Due to the relatively fixed physical information of the power grid dispatch text, the core elements can be further subdivided into various types of unstructured information. Therefore, this paper adopts the top-down ontology construction method to assist in constructing a knowledge graph of power grid dispatching. The process of ontology construction is as follows:

  • (1) Identifying the research fields and tasks. Knowledge graph is the mining and analysis of knowledge and its corresponding carriers by visualization technology, and the display of their internal relationships. Therefore, the characteristics of this field should be understood in detail during the construction process. When constructing an ontology, it should also be defined based on the characteristics of the field, and the levels and hierarchies should be clearly divided. The knowledge graph for power production safety hazards should be domain oriented, and the scope of ontology construction should be limited.

  • (2) Investigating the existing power domain ontology and considering its reusability. Ontology refers to the formal and detailed description of concepts in a certain domain, which has the characteristics of abstraction and generality. Therefore, when constructing the ontology in the power field, it is necessary to draw on the existing third-party knowledge system or relevant information in the field, and analyze and select the contained ontology. At present, this paper has borrowed from power safety regulations, Baidu Encyclopedia, and International Grid Corporation’s power safety work regulations.

  • (3) Making statistics of power grid dispatching ontology. This article comprehensively summarizes the relevant concepts, attributes, and relationships of power grid dispatch ontology under the guidance of power system experts. The essential elements of equipment in the power field are listed, such as transformers, inverters, circuit breakers, protective devices, UPS, etc.

  • (4) Constructing power grid dispatching ontology system. After the statistics of power grid dispatching ontology, the system construction of the power grid dispatch ontology can be carried out, and the superior concepts can cover the lower concepts. For example, transformer equipment includes booster transformers, inverters, voltage transformers, etc. All transformers and voltage transformers belong to the category of substation equipment.

  • (5) Defining attributes and relationships. After determining the categories of power production safety hazards, it is necessary to define attributes and relationships for each category determined in the previous step. Attributes are used to describe the inherent characteristics of the concept, such as the rated capacity of the transformer, rated voltage, rated current, capacity ratio, voltage ratio, etc. Relations are used to represent the relations between different concepts, such as the phenomenon relation between transformers and excessively high temperatures.

  • (6) Defining constraints on attribute values and relationships ensures that the consistency in the ontology, attributes, and relationships of safety hazards in power production, and the data quality can be improved.

In the construction of the knowledge graph for power grid dispatching, the construction of the power grid dispatching ontology system provides conceptual relationships for the construction of the knowledge graph. The effectiveness of constructing a knowledge graph for power grid dispatching is enhanced by the improvement of constraining entities, relationships and attributes.

4.2

Construction of knowledge graph

Knowledge storage is the storage of data generated in power dispatching texts. Power dispatching texts requires a high-performance database for storage management because of characteristic of long-term preservation and huge quantity. Therefore, Neo4j graph database is used to store safety hazards in power production using the Cypher operating language. Neo4j has all the characteristics of mature database such as atomicity, consistency, isolation and persistence. The graph structure can be used to store data more efficiently. Query and display functions can be provided through Neo4j Web visual interface.

The system takes user dialogue interaction as the main operation mode integrates the characteristics of MATLAB with high computational efficiency, knowledge graph Neo4j with high search efficiency and excellent visualization effect, and Python with friendly interface. Using Python equipped with AIML technology to complete MATLAB calculation, Neo4j display and search. The specific development process is shown in Figure. 5.

Figure. 5

Development process.

00005_PSISDG13513_1351305_page_7_1.jpg

4.3

Scheduling assistance question answering based on knowledge graph

In order to meet the demand for auxiliary Q&A in power grid dispatching, this paper combined the characteristics of power system operation, and designed the processing process of a dispatching auxiliary Q&A based on the knowledge graph of power grid dispatching and AIML. The example are shown in Figure. 6.

Figure. 6

Q&A processing flow.

00005_PSISDG13513_1351305_page_7_2.jpg

First, the ambiguity of the dialogue and the ambiguity of the input text are considered in the process of matching Q&A statements through “ pattern ”, such as “Which is the shortest power supply path from A to B?”, “Which is the shortest path of power supply distance from A to B”, etc., which are the same as the example problems in Figure. 4. The “srai” label is used to normalize the dispatching problem, and then unified processing is carried out. A common ambiguity dictionary is established to reduce ambiguity and standardize terms to address the issues of unclear units and non-standard terminologies such as “220 substation” and “load adjustment”. Variables are stored with tags “ think ” and “set” in the “template” response process after matching, and custom functions such as “shortest_path” are activated with the wildcard “#”. Generating Cypher action statements based on the “ get ” tag of parameter passing. The results are output by collocation of text, voice and Neo4j interactive interface, so as to achieve Q&A of intelligent retrieval between regulators and dispatching knowledge graph by interacting, which greatly reduces the threshold of graph database operation and improves work efficiency. In addition. In addition, during the fault scheduling process, the Q&A module can be accessed at any time to retrieve scheduling knowledge to assist in completing fault handling tasks.

4.4

Power grid dispatching fault information push and fault record

When the dispatching fault occurs, the fault information is transmitted back to the monitoring system of controller in real time. According to the location of the fault, the fault plan of the area can be automatically recommended and the related fault cases can be matched. At the same time, real-time fault information that includes fault equipment, location, status and phenomenon is matched with fault phenomena and fault cases in the fault dispatching knowledge graph of the fitted memory network by fitting human thinking and working mode, which involves three aspects of the single device fault case cluster, the congener device fault case cluster and the congener device fault handling. According to fault information, initial constraints are formed and entity links are established. Historical fault information is collected based on subgraph retrieval, path association of fault case clusters and fault handling knowledge, and knowledge search, calculation and recommendation are further achieved through path recall. Assuming that there are N types of faults in the congener device E = (e1, e2, …, en), and the sum of all possible fault phenomena are set as A. Then N types of faults should correspond to an empirical fault phenomenon subset Am = (a1, a2, …, am), and each fault case cluster C corresponds to a fault phenomenon subset. When device e1 fail and the fault phenomenon set is 1ae. The specific process is shown in Figure. 7. The case event clusters can be automatically generated, saved and displayed based on the construction of the fault case function module. Neo4j front-end interface can provide a visual display of fault case clusters and more fault information, which facilitates the identification of weak points in the power grid.

Figure. 7

Q&A processing flow.

00005_PSISDG13513_1351305_page_8_1.jpg

5.

EXPERIMENTAL ANALYSIS

This paper generated more than 40,000 operation sentences after sentence segmentation and formed a learning set by obtaining 9534 outage planning methods and protection opinions of a power grid company for 20 months from January 2020 to August 2021. Using conventional word segmentation and the new word discovery algorithm proposed in this paper, a total of 28863 words were selected to form a professional dictionary for power outage planning in power grid dispatching. Among them, there are 975 transformer related words, 32 inspection anomalies, 783 circuit related words, 5335 switches, 949 busbars, 15,340 tool brakes, 684 substation names, 88 generators, and 1847 other commonly used words.

(1) Evaluation of entity recognition mode

In this paper, Precision (P), Recall (R) and F1 Score are taken as evaluation indicators to evaluate the effectiveness, and the calculation formula is as follows.

00005_PSISDG13513_1351305_page_9_1.jpg
00005_PSISDG13513_1351305_page_9_2.jpg
00005_PSISDG13513_1351305_page_9_3.jpg

The effectiveness and rationality of the entity identification model for power production safety hazards can be evaluated through the evaluation index system.

In order to verify the validity and rationality of entity recognition model for power production safety hazards based on BERT-BiLSTM-CRF proposed in this paper, the dataset that consists of grid dispatching records are compared with dictionary-rule, BiLSTM-CRF and BERT-BiLSTM-CRF models. Table 1 shows the comparison of entity recognition on different models.

Table 1.

Comparison of three entity recognition models.

Contrast modelScore of PScore of RScore of F1
Dictionary - Rules0.70230.60590.6505
BiLSTM-CRF0.74170.62550.6787
ATT-BiLSTM-CRF0.72870.66980.6980
BERT-BiLSTM-CRF0.80250.81060.8065

The experimental results showed that the dictionary-rule based recognition method depends on the integrity and accuracy of the power grid dispatching dictionary. Incorrect recognition will be caused in the presence of typos in the power grid dispatching records. BiLSTM-CRF entity recognition model, ATT-BiLSTM-CRF entity recognition model and BERT-BiLSTM-CRF entity recognition model are developed on the basis of deep learning, which can explore the relationship the characters between themselves and the context of hidden text with higher accuracy. The performance of the BERT-BiLSTM-CRF entity recognition model is greatly promoted compared with the dictionary-rule recognition mode, increasing F1 score by about 0.16, recall rate by about 0.20 and accuracy rate by about 0.1. The entity recognition model of Bert-BiLSTM-CRF added the BERT vector expression layer based on the BiLSTM-CRF model, increasing F1 score by about 0.13, recall rate by about 0.19, and accuracy rate by about 0.06. The entity recognition model of ATT-BiLSTM-CRF has a certain improvement in performance compared with BiLSTM-CRF entity recognition model after incorporating attention mechanism. However, there is still some gap in accuracy, recall rate and F1 score compared with BERT-BiLSTM-CRF entity recognition model. The power grid dispatching named entity recognition model based on BERT-BilSTM-CRF utilizes BERT vector representation layer to obtain abstract features of text, fully considering the impact of context information on entities, and achieving the best entity extraction effect. Table 2 shows the experimental results of identifying various types of entities in power grid dispatching based on the BERT-BiLSTM-CRF model.

Table 2.

Comparison of entity recognition by category

Entity classScore of PScore of RScore of F1
Unit name81.8985.7983.79
Device name88.7285.6987.18
Discovery location72.4376.1874.25
phenomenon55.7968.7961.61
Personnel name92.4695.7794.09

6.

CONCLUSIONS

This paper proposed a research on the construction of power grid dispatching knowledge graph and intelligent assisted decision-making. Considering characteristics of regulation and operation tasks in actual scenarios and the power grid electroplating data, the power grid dispatching knowledge graph is constructed. Based on this, the power grid dispatching assisted decision-making system is established and developed to achieve the functions of data management, intelligent interaction and auxiliary decision-making. The validity of the entity recognition model was verified through the actual operation data of the power system, and the scientific and practical nature of each functional module of the developed system was effectively verified through decision query. The fault regulation ability of dispatchers and the safe operation level of the distribution network are improved by conducting knowledge guidance and recommendation decision-making in the task scenario, which can provide a certain reference for other provinces and cities to improve the ability of dispatching assisted decision-making.

7.

ACKNOWLEDGMENTS

This work is supported by State Grid Corporation Headquarters Science and Technology Project: Research and Application of Key Technologies for Heterogeneous Equipment Modeling and Dynamic State Estimation of Regional New Power System (5108-202218280A-2-296-XG).

8.

8.

REFERENCES

[1] 

Zhang Yao, Wang Aohan, Zhang Hong, “Overview of smart grid development in China,” Power System Protection and Control, 49 (05), 180 –187 (2021). Google Scholar

[2] 

Wan Qian, Zhu Liyue, Ouyang Feng, “Artificial intelligence based public opinion analysis system for radio and television,” Radio & TV Broadcast Engineering, 46 (12), 46 –52 (2019). Google Scholar

[3] 

Liu Wenxia, Huang Yuchen, Wan Haiyang, et al., “Application of complex network theory in vulnerability and robustness evaluation of energy internet Smart Power,” 49 (01), 14 –21 (2021). Google Scholar

[4] 

Yang Jian, Ye Qiuhong, Wang Huaijun, et al., “Research on big data technology in power failure prediction method,” Microcomputer Applications, 38 (07), 188 –190 (2022). Google Scholar

[5] 

Liu Jing, “Research on named entity recognition,” Computer Knowledge and Technology, 15 (09), 179 –180 (2019). Google Scholar

[6] 

Zhang Junfei, Bi Zhisheng, Wang Jing, et al., “Design of Chinese domain named entity recognition framework based on BLSTM-CRF,” Computing Technology and Automation, 38 (03), 117 –121 (2019). Google Scholar

[7] 

Pu Tianjiao, Qiao Ji, Han Xiao, et al., “Research and application of artificial intelligence in operation and maintenance for power equipment,” High Voltage Engineering, 46 (02), 369 –383 (2020). Google Scholar

[8] 

Zhao Hui, Pang Haiting, Feng Shanshan, et al., “Summary of Chinese named entity recognition technology,” Journal of Changchun University of Technology, 42 (05), 444 –450 (2021). Google Scholar

[9] 

Lavine B K, White C G, Davidson C E., “Genetic algorithms for variable selection and pattern recognition - ScienceDirect,” Comprehensive Chemometrics (Second Edition), 673 –700 (2020). https://doi.org/10.1016/B978-0-12-409547-2.14888-7 Google Scholar

[10] 

Yang Chenju, Sun Jun, Pi Qiandong, et al., “Hierarchical parsing based on CRF and multiple rules,” Journal of Jilin University(Science Edition), 58 (06), 1452 –1460 (2020). Google Scholar

[11] 

Palaz D, Magimai-Doss M, Collobert R., “End-to-end acoustic modeling using convolutional neural networks for HMM-based automatic speech recognition,” Speech Communication, 108 15 –32 (2019). https://doi.org/10.1016/j.specom.2019.01.004 Google Scholar

[12] 

Changki LEE., “LSTM-CRF models for named entity recognition,” The Institute of Electronics, Information and Communication Engineers, D (4), E100 (2017). Google Scholar

[13] 

Yan G, Lei G, Yefeng W, et al., “Constructing a Chinese electronic medical record corpus for named entity recognition on resident admit notes,” BMC medical informatics and decision making, 19 (Suppl 2), (2019). Google Scholar

[14] 

Xiaolin Li, Jiaying Fan, “Entity relationship extraction method based on dependency syntax analysis and rules,” Robotics Systems and Vehicle Technology, (2019). Google Scholar
(2025) Published by SPIE. Downloading of the abstract is permitted for personal use only.
Xue Yang, Yu Li, Qi Zhao, and Yi Wang "Research on knowledge graph construction and intelligent assisted decision-making of power grid dispatching", Proc. SPIE 13513, The International Conference Optoelectronic Information and Optical Engineering (OIOE2024), 1351305 (15 January 2025); https://doi.org/10.1117/12.3045346
Advertisement
Advertisement
RIGHTS & PERMISSIONS
Get copyright permission  Get copyright permission on Copyright Marketplace
KEYWORDS
Power grids

Decision making

Education and training

Data modeling

Transformers

Safety

Visualization

Back to Top