# An adjacency matrix is a way to represent a graph as a matrix of booleans (or integers). # The graph here has 5 nodes (numbered 0 to 4) and edges defined by the edges list. # Example edges: (0, 1) ...
from utils import remove_comments_and_docstrings, tree_to_token_index, index_to_code_token, tree_to_variable_index, tree_to_token_index_pro # src_raw_train, src_raw ...