#ai #llm #transhumanism #poetry #art # [[Epistemic status]] #shower-thought #to-digest # Related - [[Automatic differentiation]] - [[en.wikipedia.org - Automatic Differentiation - Wikipedia]] - [[Multimodal]] - [[Algebra]] - [[Multimodal second brain exploration]] - [[GPT3]] # TODO > [!TODO] TODO # Augmenting your brain with AI multimodality - Example2 Write a poem about the beauty of automatic differentiation ![camo made of teeth, smiling, abstract, cryptic, dots, stipple, lines, splotch, color tearing, pitch bending, faceless people, dark, ominous, eerie, minimal, points, technical, old painting ](https://lexica-serve-encoded-images.sharif.workers.dev/md/081f0177-a66d-43b0-97d7-71b9beb82c28) The beauty of automatic differentiation Is a sight to behold, It takes the tediousness of derivatives And makes it much more bold. ![medium: chalk on whiteboard, Notation, Symbols, Lines, Sequences, Interpretation, Instructions, Communication, Visuality, Process, form, line, character, surface, space, material, immaterial, sensual, symbolic, conceptual, Series, Variations, Temporalization, Processualization, Notation, Instruction, Form, Sign, Symbol, Movement, Parallel, Sequential, Disordered, Unconnected, Static, Visual, Mental, Iconic, Imaginative. Creative, large-scale, multi-part, process, drawing, repetition, variation, order, chaos, improvisation](https://lexica-serve-encoded-images.sharif.workers.dev/md/09e6901c-a5c4-4334-bbcd-73a46b1389e6) The power of the chain rule Can be seen in its light, It takes the complex and makes it simple In a way that's quite a sight. ![wizard holding a calculator ](https://lexica-serve-encoded-images.sharif.workers.dev/md/01c9e275-0507-4952-9041-06b43352412d) The derivatives of derivatives Can be found with ease, No more tedious calculations To put you at your ease. ![“stock market chart found in cave drawing by archaeologists, award winning”](https://lexica-serve-encoded-images.sharif.workers.dev/md/0d646ba6-d05a-4036-be8a-dec5b65dfcfa) ## Under the hood ```js // GET https://lexica.art/api/v1/search?q=apples const lexicaBeforeAfter = async (tags) => { document.body.style.cursor = "wait"; const selection = window.getSelection().toString(); const url = `https://lexica.art/api/v1/search?q=${encodeURIComponent(selection)}&n=2`; const response = await fetch(url).then(response => response.json()); document.body.style.cursor = "default"; console.log(response); // add 1 image before and after selection return `![${response.images[0].prompt}](${response.images[0].src})\n\n${selection}\n\n![${response.images[1].prompt}](${response.images[1].src})`; } module.exports = lexicaBeforeAfter; ```