[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"doc-detail-128262-en":3,"doc-seo-128262-105":30,"detail-sidebar-cat-0-en-105":92},{"code":4,"msg":5,"data":6},0,"success",{"doc_id":7,"user_id":8,"nickname":9,"user_avatar":10,"doc_module":4,"category_id":11,"category_name":12,"doc_title":13,"doc_description":14,"doc_content":15,"file_id":16,"file_url":17,"file_type":18,"file_size":19,"view_count":20,"is_deleted":4,"is_public":20,"is_downloadable":20,"audit_status":20,"page_count":21,"language":22,"language_code":23,"site_id":24,"html_lang":23,"table_of_contents":25,"faqs":26,"seo_title":27,"seo_description":14,"update_tm":28,"read_time":29},128262,2336475104957,"Seraphina","https://ap-avatar.wpscdn.com/avatar/22000c4c6bd8a5076e1?x-image-process=image/resize,m_fixed,w_180,h_180&k=1787554080175789136",8,"Research & Report","LASE - Learned Adjacency Spectral Embeddings - 图神经网络中基于算法展开的设计与应用","LASE提出一种基于图输入的神经架构，用于学习节点的邻接谱嵌入（Adjacency Spectral Embeddings, ASE）。该方法结合梯度下降与算法展开，将每次梯度迭代截断并重解释为图神经网络（GNN）中的层，从而训练参数化模型以逼近ASE。模型得到的嵌入具备可解释性、参数高效性，并能在存在未观测边的输入下保持鲁棒，同时在推理阶段可控复杂度。LASE层融合GCN与全连接GAT以表征所需图特征，并通过稀疏注意力与解耦层参数等改进实现更优的误差-计算权衡，性能可优于高度优化的特征分解例程；同时可无缝集成到更大的（半）监督图表示学习流水线，用于判别式ASE并在链路预测与节点分类任务中取得领先表现。","LASE: Learned Adjacency Spectral Embeddings  \nSofía Pé[rez Casulo](rez Casulo sperez@fing. edu.uy)[ sperez@fing. edu.uy](rez Casulo sperez@fing. edu.uy)  \nFacultad de Ingeniería Universidad de la República  \n[Marcelo Fiori](Marcelo Fiori mfiori@fing. edu.uy)[ mfiori@fing. edu.uy](Marcelo Fiori mfiori@fing. edu.uy)  \nFacultad de Ingeniería Universidad de la República  \n[Federico Larroca](Federico Larroca flarroca@fing. edu.uy)[ flarroca@fing. edu.uy](Federico Larroca flarroca@fing. edu.uy)  \nFacultad de Ingeniería Universidad de la República  \nGonzalo Mateos [gmateosb@ece. rochester. edu](gmateosb@ece. rochester. edu)  \nDepartment of Electrical and Computer Engineering University of Rochester  \nReviewed on OpenReview: [https: // openreview. net/ forum? id= J65NBLWrmh](https: // openreview. net/ forum? id= J65NBLWrmh)  \nAbstract  \nWe put forth a principled design of a neural architecture to learn nodal Adjacency Spectral Embeddings (ASE) from graph inputs. By bringing to bear the gradient descent (GD) method and leveraging the technique of algorithm unrolling, we truncate and re-interpret each GD iteration as a layer in a graph neural network (GNN) that is trained to approximate the ASE. Accordingly, we call the resulting embeddings and our parametric model Learned ASE (LASE), which is interpretable, parameter efficient, robust to inputs with unobserved edges, and offers controllable complexity during inference. LASE layers combine Graph Convolutional Network (GCN) and fully-connected Graph Attention Network (GAT) modules, which is intuitively pleasing since GCN-based local aggregations alone are insufficient to express the sought graph eigenvectors. We propose several refinements to the unrolled LASE architecture (such as sparse attention in the GAT module and decoupled layerwise parameters) that offer favorable approximation error versus computation tradeoffs;  \neven outperforming heavily-optimized eigendecomposition routines from scientific computing libraries. Because LASE is a differentiable function with respect to its parameters as well as its graph input, we can seamlessly integrate it as a trainable module within a larger (semi-)supervised graph representation learning pipeline. The resulting end-to-end system effectively learns “discriminative ASEs” that exhibit competitive performance in supervised link prediction and node classification tasks, outperforming a GNN even when the latter is endowed with open loop, meaning task-agnostic, precomputed spectral positional encodings.  \n1 Introduction  \nGraphs are natural models of relational data, spanning domains as diverse as social networks, molecular biology, recommender systems, and knowledge graphs. Graph representation learning (GRL) has emerged as a powerful framework for extracting meaningful patterns from such structured data, enabling downstream machine learning tasks. At its core, this approach seeks to encode nodes (also edges, or entire subgraphs) into low-dimensional vectors –known as node embeddings– that capture both local and global graph structural properties. These learned representations facilitate scalable, flexible, and effective learning, driving advancements in applications such as drug discovery, fraud detection, and personalized recommendations.  \nObjectives, context, and motivating challenges. Here we revisit spectral node embeddings derived from the eigendecomposition of the graph’s adjacency matrix; see e.g., (Lim et al., 2023) and note extensions to Laplacian embeddings are straightforward. Spectral embeddings are central to unsupervised node clustering methods (von Luxburg, 2007), which intuitively motivates why information encoded in the graph eigenvectors may be used to specify vertex positions in latent space. This intuition is further justified if we assume that the graph’s structure stems from a Random Dot Product Graph (RDPG) (Athreya et al., 2017), a generative model that subsumes the classic Stochastic Block Model (SBM) and which has cl","cbCaipB1aUTaclHd","https://ap.wps.com/l/cbCaipB1aUTaclHd","pdf",4863099,1,31,"English","en",105,"# Introduction\n## Graph representation learning and node embeddings\n## Spectral embeddings and limitations of eigendecomposition\n## Objectives: learned ASE via neural architecture","[{\"question\":\"什么是LASE（Learned ASE）？\",\"answer\":\"LASE是一种参数化神经架构，用于从图输入中学习节点的邻接谱嵌入（ASE），并以层级化的方式逼近谱嵌入。\"},{\"question\":\"LASE如何将梯度下降与图神经网络联系起来？\",\"answer\":\"通过算法展开思路，将每次梯度下降迭代截断并重解释为GNN中的一层，从而把逼近ASE的目标转化为可训练的网络结构。\"},{\"question\":\"LASE相较于直接做邻接矩阵特征分解有哪些优势？\",\"answer\":\"特征分解在边部分缺失或归纳式设置需要重算时会带来不可行或高计算成本问题；LASE能避免该开销，并保持对未观测边输入的鲁棒性。\"}]","LASE - Learned Adjacency Spectral Embeddings - 图神经网络中基于算法展开的设计与应用 | PDF",1785946316,78,{"code":4,"msg":31,"data":32},"ok",{"site_id":24,"language":23,"slug":33,"title":13,"keywords":34,"description":14,"schema_data":35,"social_meta":87,"head_meta":89,"extra_data":91,"updated_unix":28},"lase-learned-adjacency-spectral-embeddings-design-and-applications-of-algorithm-unrolling-for-gnns","",{"@graph":36,"@context":86},[37,54,69],{"@type":38,"itemListElement":39},"BreadcrumbList",[40,44,48,51],{"item":41,"name":42,"@type":43,"position":20},"https://docshare.wps.com","Home","ListItem",{"item":45,"name":46,"@type":43,"position":47},"https://docshare.wps.com/document/","Document",2,{"item":49,"name":12,"@type":43,"position":50},"https://docshare.wps.com/document/research-report/",3,{"item":52,"name":13,"@type":43,"position":53},"https://docshare.wps.com/document/lase-learned-adjacency-spectral-embeddings-design-and-applications-of-algorithm-unrolling-for-gnns/128262/",4,{"url":52,"name":13,"@type":55,"author":56,"headline":13,"publisher":58,"fileFormat":61,"inLanguage":23,"description":14,"dateModified":62,"datePublished":63,"encodingFormat":61,"isAccessibleForFree":64,"interactionStatistic":65},"DigitalDocument",{"name":9,"@type":57},"Person",{"url":41,"name":59,"@type":60},"DocShare","Organization","application/pdf","2026-08-25","2026-08-05",true,{"@type":66,"interactionType":67,"userInteractionCount":20},"InteractionCounter",{"@type":68},"ViewAction",{"@type":70,"mainEntity":71},"FAQPage",[72,78,82],{"name":73,"@type":74,"acceptedAnswer":75},"什么是LASE（Learned ASE）？","Question",{"text":76,"@type":77},"LASE是一种参数化神经架构，用于从图输入中学习节点的邻接谱嵌入（ASE），并以层级化的方式逼近谱嵌入。","Answer",{"name":79,"@type":74,"acceptedAnswer":80},"LASE如何将梯度下降与图神经网络联系起来？",{"text":81,"@type":77},"通过算法展开思路，将每次梯度下降迭代截断并重解释为GNN中的一层，从而把逼近ASE的目标转化为可训练的网络结构。",{"name":83,"@type":74,"acceptedAnswer":84},"LASE相较于直接做邻接矩阵特征分解有哪些优势？",{"text":85,"@type":77},"特征分解在边部分缺失或归纳式设置需要重算时会带来不可行或高计算成本问题；LASE能避免该开销，并保持对未观测边输入的鲁棒性。","https://schema.org",{"og:url":52,"og:type":88,"og:title":13,"og:site_name":59,"og:description":14},"article",{"robots":90,"canonical":52},"index,follow",{"doc_id":7,"site_id":24},{"code":4,"msg":5,"data":93},[94,98,102,106,111,116,121,124,129,132,136],{"id":20,"doc_module":4,"doc_module_name":46,"category_name":95,"show_sort_weight":96,"slug":97},"Story & Novel",90,"story-novel",{"id":47,"doc_module":4,"doc_module_name":46,"category_name":99,"show_sort_weight":100,"slug":101},"Literature",80,"literature",{"id":53,"doc_module":4,"doc_module_name":46,"category_name":103,"show_sort_weight":104,"slug":105},"Exam",70,"exam",{"id":107,"doc_module":4,"doc_module_name":46,"category_name":108,"show_sort_weight":109,"slug":110},5,"Comic",60,"comic",{"id":112,"doc_module":4,"doc_module_name":46,"category_name":113,"show_sort_weight":114,"slug":115},6,"Technology",50,"technology",{"id":117,"doc_module":4,"doc_module_name":46,"category_name":118,"show_sort_weight":119,"slug":120},7,"Healthcare",40,"healthcare",{"id":11,"doc_module":4,"doc_module_name":46,"category_name":12,"show_sort_weight":122,"slug":123},30,"research-report",{"id":125,"doc_module":4,"doc_module_name":46,"category_name":126,"show_sort_weight":127,"slug":128},9,"Religion & Spirituality",20,"religion-spirituality",{"id":127,"doc_module":4,"doc_module_name":46,"category_name":130,"show_sort_weight":127,"slug":131},"World Cup","world-cup",{"id":133,"doc_module":4,"doc_module_name":46,"category_name":134,"show_sort_weight":133,"slug":135},10,"Lifestyle","lifestyle",{"id":137,"doc_module":4,"doc_module_name":46,"category_name":138,"show_sort_weight":107,"slug":139},19,"General","general"]