mirror of
https://github.com/safishamsi/graphify.git
synced 2026-07-12 10:27:11 +00:00
77966a7622
detect, extract (AST + call-graph), build, cluster, analyze, report, export PDF extraction, tree-sitter AST, pyvis HTML, schema validation
7 lines
132 B
Python
7 lines
132 B
Python
class Transformer:
|
|
def __init__(self, d_model: int):
|
|
self.d_model = d_model
|
|
|
|
def forward(self, x):
|
|
return x
|