String diagrams¶
Motivation and connection to tensor networks¶
“Programming” a quantum computer requires from developers the ability to manipulate quantum gates (which can be seen as the “atomic” units of computation in this paradigm) in order to create quantum circuits, which can be further grouped into higher-order constructions. Working at such a low level compares to writing assembly in a classical computer, and is extremely hard for humans – especially on NLP tasks which contain many levels of abstractions.
In order to simplify NLP design on quantum hardware, lambeq
represents sentences as string diagrams (Fig. 2). This choice stems from the fact that a string diagram expresses computations in a monoidal category, an abstraction well-suited to model the way a quantum computer works and processes data.
From a more practical point of view, a string diagram can be seen as an enriched tensor network, a mathematical structure with many applications in quantum physics. Compared to tensor networks, string diagrams have some additional convenient properties, for example, they respect the order of words, and allow easy rewriting/modification of their structure.

Fig. 2 String diagram (a) and corresponding tensor network (b).¶
String diagrams and tensor networks constitute an ideal abstract representation of the compositional relations between the words in a sentence, in the sense that they remain close to quantum circuits, yet are independent of any low-level decisions (such as choice of quantum gates and construction of circuits representing words and sentences) that might vary depending on design choices and the type of quantum hardware that the experiment is running on.
Pregroup grammars¶
lambeq
’s string diagrams are equipped with types, which show the interactions between the words in a sentence according to the pregroup grammar formalism [Lam99]. In a pregroup grammar, each type
Note
In lambeq
, the adjoints of a type p
are represented as p.l
and p.r
, while the tensor product is the symbol @
.
When annotated with pregroup types, the diagram in Fig. 2 takes the following form:

Note that each wire in the sentence is labelled with an atomic type or an adjoint. In the above,
The transition from pregroups to vector space semantics is achieved by a mapping that sends atomic types to vector spaces (
Note
lambeq
’s string diagrams are objects of the class lambeq.backend.grammar.Diagram
.