
{"title":"<p>In Defense of Disintegration</p>","metaTitle":"In Defense of Disintegration – Toolkit","text":"<p>In <em>The Disintegration Loops,</em> William Basinski captures the inevitable collapse of sound as magnetic tapes degrade, evoking the fragility and mutability of memory. As the loops unravel, the process reveals how disintegration allows for the emergence of something unstructured, fleeting, and unresolved – a space where new interpretations can arise. This act of decay mirrors broader social and political phenomena, where ruptures in systems expose underlying assumptions and create openings for transformation.</p><p>Machine Learning AI models are bound by the contours of their training data, therefore inherently constrained to replicate and reinforce what already exists. This is how coherence is imposed – by embedding the patterns, biases, and assumptions of the past into every output, AI systems create a closed loop of reproduction. The act of “learning” becomes one of perpetuation, where deviation and rupture are suppressed in favor of maintaining the existing order. In this way, AI doesn’t just reflect reality; it actively works to solidify and normalize it, leaving little room for the unexpected to emerge.</p><p>It is the responsibility of artists to resist these systems of imposed coherence through intervention and the development of tools that act as creative monkey wrenches. By disrupting the closed loops of reproduction inherent in AI, artists can expose the assumptions embedded within these systems and create openings for alternative possibilities.</p><p>By developing tools that destabilize the rigid outputs of machine learning artists can push AI systems toward disintegration, reclaiming the indeterminacy and fluidity that these technologies suppress.</p><figure data-ratio=\"landscape\" class=\"landscape\">\n<div class=\"img-caption-wrapper\">\n    <img src=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/3971a123a9-1743491969/bildschirmfoto-2025-03-05-um-10-48-26-2000x.png\" data-uncropped=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/3971a123a9-1743491969/bildschirmfoto-2025-03-05-um-10.48.26.png\" alt=\"\" class=\"image-block half-width\">\n  \n    <figcaption>\n    Fig. 1: Image generator outputs after the first epoch of training the neural network to produce images of landscapes. Photo Credit: Grayson Earle.  </figcaption>\n    </div>\n</figure>\n<h2>\u2028Generative Adversarial Networks and the Politics of Coherence</h2>\n<p>Generative Adversarial Networks (GANs) exemplify technology’s inclination toward creating order from disorder. GANs are a class of machine learning models designed to generate data that mimics a given dataset. They consist of two neural networks in opposition: the Generator, which synthesizes data, and the Discriminator, which evaluates its realism. Through iterative refinement, the Generator creates outputs that become indistinguishable from the real, imposing structure on noise.</p><p>In this process, the Generator reshapes random input into a coherent image by assembling fragments of learned features. This microcosm of technological order reflects a larger system at play: technology seeks to organize the unordered world, embedding assumptions of control and coherence into its operations.</p><figure data-ratio=\"portrait\" class=\"portrait\">\n<div class=\"img-caption-wrapper\">\n    <img src=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/da94f5ab0e-1743491968/bildschirmfoto-2025-03-05-um-10-49-03-2000x.png\" data-uncropped=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/da94f5ab0e-1743491968/bildschirmfoto-2025-03-05-um-10.49.03.png\" alt=\"\" class=\"image-block half-width\">\n  \n    <figcaption>\n    Fig. 2: A landscape image generated using custom training data (60,000+ photos). This is the model output before experimentation. Photo Credit: Grayson Earle.  </figcaption>\n    </div>\n</figure>\n<h2>Disintegration Through Code: Breaking the Model</h2>\n<p>To critique the coherence imposed by GANs, I introduced disintegration into the system itself. By programmatically degrading the neural network’s weights and biases, the GAN’s capacity to synthesize coherent images erodes over time. The following code snippet demonstrates this intervention:</p><div class=\"colored-container\"><div class=\"centered-text\"><p>def degrade<em>all</em>tensors(module, ratio, max_percent):</p></div><p>for name, param in module.named_parameters():<br>with torch.no_grad():<br>p<em>min, p</em>max = param.data.min(), param.data.max()<br>p<em>range = p</em>max - p_min<br>if p_range &lt;= 1e-12:<br>           continue<br>mask = (torch.rand(param.shape, device=param.device) &lt; ratio)<br>delta = max<em>percent * p</em>range<br>shifts = torch.empty(param.shape, device=param.device).uniform_(-delta, delta)<br>param.data[mask] += shifts[mask]<br>for name, buf in module.named_buffers():<br>with torch.no_grad():<br>b<em>min, b</em>max = buf.min(), buf.max()<br>b<em>range = b</em>max - b_min<br>if b_range &lt;= 1e-12:<br>           continue<br>mask = (torch.rand(buf.shape, device=buf.device) &lt; ratio)<br>delta = max<em>percent * b</em>range<br>shifts = torch.empty(buf.shape, device=buf.device).uniform_(-delta, delta)<br>buf[mask] += shifts[mask]</p></div><p>This script introduces randomness into the model’s weights and buffers, simulating entropy. Over time, the GAN’s outputs disintegrate, transitioning from structured landscapes to incoherent fragments.</p><figure data-ratio=\"portrait\" class=\"portrait\">\n<div class=\"img-caption-wrapper\">\n    <img src=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/7429b6a6fd-1743491969/bildschirmfoto-2025-03-05-um-10-49-19-2000x.png\" data-uncropped=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/7429b6a6fd-1743491969/bildschirmfoto-2025-03-05-um-10.49.19.png\" alt=\"\" class=\"image-block half-width\">\n  \n    </div>\n</figure>\n<figure data-ratio=\"portrait\" class=\"portrait\">\n<div class=\"img-caption-wrapper\">\n    <img src=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/bf7d22dc0b-1743491971/bildschirmfoto-2025-03-05-um-10-49-32-2000x.png\" data-uncropped=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/bf7d22dc0b-1743491971/bildschirmfoto-2025-03-05-um-10.49.32.png\" alt=\"\" class=\"image-block half-width\">\n  \n    <figcaption>\n    Figs. 3 – 4: Images generated from the GAN after two disintegration steps. Photo Credit: Grayson Earle.  </figcaption>\n    </div>\n</figure>\n<h2>Entropy, Utopianism, and the Artifice of Coherence</h2>\n<p>This disintegration invites us to consider Ernst Bloch’s concept of the “not yet” – the idea that utopian projects are fleeting ruptures that hint at alternative possibilities. Embracing entropy resists authoritarian systems by destabilizing their order, creating openings for transformation. In the context of GANs, the breakdown of coherent images becomes a metaphor for resistance against technological systems that strive to fix meaning and erase ambiguity.</p><p>The degradation of GAN-generated images underscores the artifice of technological systems. Like the written word enabling the stasis of legal and political structures, computational systems aim to fix reality within a framework of coherence. By introducing disintegration, we expose this framework as artificial and contingent.</p><figure data-ratio=\"portrait\" class=\"portrait\">\n<div class=\"img-caption-wrapper\">\n    <img src=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/6809dbdc13-1743491971/bildschirmfoto-2025-03-05-um-10-49-43-2000x.png\" data-uncropped=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/6809dbdc13-1743491971/bildschirmfoto-2025-03-05-um-10.49.43.png\" alt=\"\" class=\"image-block half-width\">\n  \n    <figcaption>\n    Fig. 5: Four steps into disintegration. Photo Credit: Grayson Earle.  </figcaption>\n    </div>\n</figure>\n<p>As capital and technology converge, they impose coherence on the natural world, reducing its complexity to artificial constructs. GAN-generated landscapes embody this process, synthesizing nature’s beauty into structured simulations that reflect the logic of representation. However, as the model disintegrates, these landscapes collapse into abstract color fields, echoing the historical trajectory of art from the representation of landscapes to pure abstraction. This transition resists the imposed coherence of both artistic and technological systems.</p><figure data-ratio=\"portrait\" class=\"portrait\">\n<div class=\"img-caption-wrapper\">\n    <img src=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/3ce70b2589-1743491972/bildschirmfoto-2025-03-05-um-10-49-52-2000x.png\" data-uncropped=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/3ce70b2589-1743491972/bildschirmfoto-2025-03-05-um-10.49.52.png\" alt=\"\" class=\"image-block half-width\">\n  \n    </div>\n</figure>\n<figure data-ratio=\"landscape\" class=\"landscape\">\n<div class=\"img-caption-wrapper\">\n    <img src=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/63348c1073-1743491972/bildschirmfoto-2025-03-05-um-10-50-04-2000x.png\" data-uncropped=\"https://resilienz-toolkit.bbk-bildungswerk.de/media/pages/strategien-der-resilienz/in-defense-of-disintegrationy/63348c1073-1743491972/bildschirmfoto-2025-03-05-um-10.50.04.png\" alt=\"\" class=\"image-block half-width\">\n  \n    <figcaption>\n    Figs, 6 – 7: Five and six steps into disintegration. Photo Credit: Grayson Earle.  </figcaption>\n    </div>\n</figure>\n<p>The final GAN outputs – pure fields of color – stand as acts of defiance against the constraints of imposed logic. Just as abstract art disrupted the dominance of representational forms, these disintegrated images challenge the illusion of permanence and control embedded in machine learning systems. By exposing the fragility of the structures that attempt to contain them, the dissolution creates a space for the unstructured and unresolved, where new possibilities emerge and resist the systems that seek to suppress them.</p><div class=\"indented-text\"><p>About the author:<strong> Grayson Earle</strong> is a contemporary artist and activist from the United States. His work deals with the role that digital technologies and networks play in protest and political agency. He is known for his guerrilla video projections as a member of The Illuminator, a guerrilla video projection collective, and Bail Bloc, a computer program that posts bail for low-income people. His film Why don’t the cops fight each other? deals with the source code governing police officers in the popular video game Grant Theft Auto 5. His art and research has been presented at the Whitney Museum of American Art, KW Institute for Contemporary Art, and the Singapore Art Museum.</p><p>To the website: <a href=\"https://graysonearle.com/\" rel=\"noopener noreferrer\"><em>https://<u>graysonearle</u>.com</em></a></p></div>","author":"Grayson Earle","footnotes":"<div id=\"footnotes\" class=\"footnotes-container\">\n    <ol class=\"footnotes-list\">\n            </ol>\n</div>\n","category":"Essay","download":null,"slug":"in-defense-of-disintegrationy","color":"#337eff","invertOnHover":false,"parent":"strategien-der-resilienz","likes":"1","alreadyLiked":false,"commentAndLikeSection":true,"comments":[]}