Skip to main content

On Forgetting

I saw a post on Twitter today. Someone asked, “There are a number of techniques to help one recall and remember anything. From a neuroscience perspective, is it possible to intentionally learn to forget?”

Questions and thoughts like this are amusing. Someone appends the word "neuroscience" to a question or remark that is, in a way, about neuroscience. But it is also capable of being thought of in simpler, broader terms.

The term neuroscience sometimes invokes ideas of complex explanations—often for totally mundane things. The mere use of the word in a discussion can make any argument sound more authoritative than it actually may be.

What I'm trying to say is that, it seems to me that, more often than we might expect, neuroscience is about… other things. (Unless you work in a lab somewhere.)

For example, take the question "How can I use the power of neuroscience to forget bad memories?" Practical, useful answers probably have very little to do with neuroscience itself.

I believe it’s both more helpful and accurate to think of “forgetting” as one's brain recontextualizing and reshaping itself. 

We find ourselves on the outside of an old context we were once in and now in a new context we've yet to become fully self-aware of.

And I can't shake the intuition that, a lot of what happens during such a change, relies on messy meaning-making processes, rather than formulaic things we can pin down exactly with computational models.

I’m also not convinced that “forgetting” is a completely achievable objective in the first place--to literally be able to erase a memory. Episodic and long-term memories tend to stick around. This is a feature of the mind, not a bug.

For example, our brain remembers that time we burned our hand on the stove, so in the future, we don't do that again. Initially, we wince. But later, our brain molds itself around this memory. Without the ability to store information over large time scales, neither language, relationships, nor our own personal identities would develop.

Your memories probably don't change much. It’s your perception that rotates as you learn new things about your memories. There’s a lot of literature to support this hypothesis (brain plasticity, constructivism, memory consolidation, etc.).

But our brains are also imperfect—prone to distortion, illusions, and biases. Sometimes it wishes it could more clearly remember things. And other times, it wishes it could forget them.

In the spirit of Hebbian theory—"what fires together, wires together"—it seems to me that the only way to even come close to “forgetting” a memory is to replace it with a more powerful one. 

In other words, you think you want to forget, but what you really want is to think new thoughts. And thinking new thoughts requires either noticing new things—or seeing old things in new ways—or visiting new places, either figuratively and/or literally.

The primary paradox of the past is this: the past has a grip on us, not because of the past itself, but because we're unable to conceptualize things that haven't occurred.

In the end, I tend to believe that forgetting is more about changing how we understand and relate to our memories than anything to do with forgetting itself. 

Comments

Popular posts from this blog

yt-dlp Archiving, Improved

One annoying thing about YouTube is that, by default, some videos are now served in .webm format or use VP9 encoding. However, I prefer storing media in more widely supported codecs and formats, like .mp4, which has broader support and runs on more devices than .webm files. And sometimes I prefer AVC1 MP4 encoding because it just works out of the box on OSX with QuickTime, as QuickTime doesn't natively support VP9/VPO9. AVC1-encoded MP4s are still the most portable video format. AVC1 ... is by far the most commonly used format for the recording, compression, and distribution of video content, used by 91% of video industry developers as of September 2019. [ 1 ] yt-dlp , the command-line audio/video downloader for YouTube videos, is a great project. But between YouTube supporting various codecs and compatibility issues with various video players, this can make getting what you want out of yt-dlp a bit more challenging: $ yt-dlp -f "bestvideo[ext=mp4]+bestaudio[ext=m4a]/best...

Latin1 vs UTF8

Latin1 was the early default character set for encoding documents delivered via HTTP for MIME types beginning with /text . Today, only around only 1.1% of websites on the internet use the encoding, along with some older applications. However, it is still the most popular single-byte character encoding scheme in use today. A funny thing about Latin1 encoding is that it maps every byte from 0 to 255 to a valid character. This means that literally any sequence of bytes can be interpreted as a valid string. The main drawback is that it only supports characters from Western European languages. The same is not true for UTF8. Unlike Latin1, UTF8 supports a vastly broader range of characters from different languages and scripts. But as a consequence, not every byte sequence is valid. This fact is due to UTF8's added complexity, using multi-byte sequences for characters beyond the general ASCII range. This is also why you can't just throw any sequence of bytes at it and ex...

Unlearning, or Proof by Contradiction

Sometimes, we have to unlearn the things we initially learned. And I don't mean this in the sense of having been deliberately deceived. Rather, I mean that to some extent, there are actually many situations in life that involve necessary lies —or believing things that are wrong for perfectly rational reasons . Sometimes it is only after we have consumed and digested such a falsehood that we can see the truth at all. Really, this form of learning is not unlike some parts of math. Consider a mathematical proof in which we begin by assuming that something is one way. But by the end of the proof, we may realize, through contradiction, that it's actually another way. Let us take the number 2 and generously hypothesize that the square root of 2 is actually rational . If this assumption were true, we should be able to prove it with an equation. Let the square root of 2 be the lowest form of $\frac{p}{q}$. Since squares of even numbers are even, and squares of odd numbers a...