Editing
Whole Brain Emulation and the Science of Mind Upload
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} Whole Brain Emulation and the Science of Mind Upload is the "Study of the Digital Self"βthe investigation of the "Neuroscientific and Computational Project" (~2030sβFuture) of "Creating" a "Complete" and "Functional" "Computational Model" of a "Human Brain" by "Scanning," "Mapping," and "Simulating" "All" of its "Neural Connections" and "Dynamics" at "Sufficient Fidelity" to "Reproduce" "The Original" "Person's" "Memories," "Personality," and "Cognitive Functions." While "Neuroscience" (see Article 207) "Studies" "The Brain," **Whole Brain Emulation** (WBE) "Copies" it. From "Connectomics" and "Vitrification Scanning" to "Substrate Independence" and "The Upload Experience," this field explores "The Digital Afterlife." It is the science of "Cognitive Preservation," explaining why "The Mind" "May Be" "A Pattern" that "Can Run" on "Any Sufficient Substrate"βand how "Copying" "Yourself" raises the "Deepest Questions" about **"Identity," "Death,"** and **"What Makes You You."** </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Whole Brain Emulation''' (WBE) β "The Hypothetical" "Process" of "Scanning" a "Brain" at "Sufficient Resolution" and "Running" the "Resulting Computational Model" on "A Computer." * '''Connectome''' β (See Article 207). "The Complete Map" of "All" "Neural Connections" in "A Brain." The **Human Connectome** has ~**86 Billion Neurons** and ~**100 Trillion Synapses.** * '''Substrate Independence''' β "The Philosophical Thesis" (Functionalism) that "Mental States" "Depend" on "The Pattern" of "Computation," not "The Physical Material" "Running" it. * '''Functionalism''' β (See Article 111). "The Theory" that "Mental States" are "Defined" by "Their Functional Roles" (Inputs, Outputs, Relations) β "Not" "Their Physical Substrate." * '''Vitrification''' β "The Process" of "Chemically Preserving" a "Brain" in "Glass-Like State" (Cryogenic) for "Future Scanning" β "Offered" by "Companies like Alcor." * '''Cryonics''' β "The Practice" of "Preserving" "Dead Bodies" (or "Just Brains") at "Very Low Temperatures" in "Hope" of "Future Revival." * '''Connectomics''' β "The Scientific Field" of "Mapping Neural Connections" using "Electron Microscopy" and "AI Reconstruction." * '''The Identity Problem''' β "The Philosophical Question": Is "The Emulation" **"You"** or "A Copy" of "You"? * '''The Upload Experience''' β "The Phenomenological Question": "What does it" "Feel Like" to be "Uploaded"? "Is There" "Continuity of Consciousness"? * '''Mind Children''' β (Hans Moravec, 1988). "The Idea" that "WBE" "Will Create" **"Post-Biological Descendants"** of "Humanity." </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == WBE is understood through '''Pattern''' and '''Identity'''. '''1. The "Pattern" Argument (Substrate Independence)''': "You are your information, not your atoms." * (See Article 111). Every **7β10 Years**, "Almost Every Atom" in "Your Body" is "Replaced." * "Yet You" "Remain" "The Same Person" because the **"Pattern"** (Connections, Memories, Personality) "Persists." * If **"Pattern"** is "What Matters," then "Running" that "Pattern" on "Silicon" "Should" produce **"The Same Person."** * "Identity" is **"A Pattern."** '''2. The "Teleporter" Problem (Identity Continuity)''': "Is the copy you, or a stranger?" * (See Article 711). "If" a "Brain" is "Scanned" and "The Emulation" "Wakes Up" while "The Original" "Brain" is "Still Running," there are now **"Two of You."** * "Which One" is **"The Real You"**? * "If" the "Original" is "Destroyed" during "Scanning," is "The Upload" "A Continuation" or "A Copy Who Believes" they are "You"? * "Identity" is **"Contested."** '''3. The "Fidelity" Problem (Technical)''': "Close is not the same." * (See Article 207). "Current Technology" can "Map" the **"Connectome of a Worm"** (C. elegans, 302 Neurons). * "The Human Brain" is **"86 Billion Neurons"** with **"100 Trillion Synapses"** β "And" "Sub-synaptic Chemistry" may "Also" "Matter." * "Even" a **"99.9% Accurate"** "Copy" "Would Differ" from "The Original" in **"86 Million Neurons."** * "Fidelity" is **"The Technical Barrier."** '''The 'C. elegans' Complete Map (1986)'''': "Scientists" "Completed" the "First" "Full Connectome" β "The Worm" **C. elegans** (302 Neurons, 7,000 Synapses). It took **"12 years."** It proved that "Full" **"Connectomic Mapping"** is "Possible" but "Scales" "Catastrophically" with "Brain Size." "The Human Brain" is **"300 Million Times"** more complex. </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Scan Fidelity' (Calculating 'Identity Preservation' from Neural Mapping Accuracy):''' <syntaxhighlight lang="python"> def evaluate_upload_fidelity(neuron_accuracy_pct, synapse_accuracy_pct, chemical_accuracy_pct): """ Shows how fidelity requirements compound for WBE. """ # All three must be high for meaningful identity preservation combined_fidelity = (neuron_accuracy_pct / 100) * (synapse_accuracy_pct / 100) * (chemical_accuracy_pct / 100) neurons_wrong = int(86e9 * (1 - neuron_accuracy_pct / 100)) synapses_wrong = int(100e12 * (1 - synapse_accuracy_pct / 100)) if combined_fidelity > 0.999: return f"FIDELITY: HIGH. ({combined_fidelity:.4%}). Identity likely preserved." elif combined_fidelity > 0.99: return (f"FIDELITY: MODERATE. ({combined_fidelity:.3%}). " f"~{neurons_wrong:,.0f} wrong neurons. Personality drift likely.") else: return (f"FIDELITY: LOW. ({combined_fidelity:.2%}). " f"~{neurons_wrong:,.0f} wrong neurons. A different person.") # Current state-of-the-art (still far from human-scale) print(evaluate_upload_fidelity(99.9, 99.0, 90.0)) </syntaxhighlight> ; Science Landmarks : '''The 'Human Connectome Project'''' (2009β2015) β "Mapping" the "Large-Scale" "Structural Connectivity" of the **"Human Brain"** using "MRI." : '''The 'MICrONS' Project''' (Allen Institute) β "Creating" "The Largest" "Connectomic Map" of the **"Mouse Visual Cortex"** (1mmΒ³, 200,000 Neurons). : '''Nectome's Chemical Preservation''' β "A Startup" "Claiming" to "Preserve" **"Memory-Storing Synaptic Structure"** for "Future Scanning" β "But" "Requires" "The Patient" to be "Alive" for "Best Results." : '''OpenWorm Project''' β "A Running" "Computational Simulation" of **C. elegans** β "The First" "Digitally Emulated Organism." </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ WBE: Philosophical Positions on Identity ! Position !! Claim !! Implication |- | Functionalism || "The pattern is you. Substrate doesn't matter." || "WBE succeeds. Upload is you." |- | Biological Naturalism (Searle) || "Consciousness requires biology. Silicon can't be conscious." || "WBE fails. Upload is a zombie." |- | Gradual Replacement || "Replace neurons one by one with silicon. Continuity preserved." || "WBE works only if gradual." |- | Panpsychism (IIT) || "Phi determines consciousness. Silicon may have low Phi." || "WBE may not transfer consciousness." |- | Narrative Identity || "You are your story. The upload continues the story." || "WBE works if memories are intact." |} '''The Concept of "The Emulation Bootstrapping"''': Analyzing "The Bootstrap." (See Article 699). Even if "A WBE" is "Not" "Perfectly Identical" to "The Original," it "Could" **"Self-Modify"** using "Its Own" "Intelligence" to "Correct" "Errors" and "Converge" on a "More Accurate" "Representation." "The Uploaded Mind" "Becomes" "Its Own" "Continuity Project." "Identity" is **"Self-Authored."** </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating Whole Brain Emulation: # '''Consciousness''': Would "The Emulation" "Have" **"Qualia"** (see Article 711)? Or would it be "A Philosophical Zombie"? # '''Death''': If "WBE" "Succeeds," does "Death" "Cease" to be "Meaningful"? (see Article 695) # '''Rights''': Do "WBE" "Emulations" have **"Legal Rights"**? Can they "Own Property"? "Vote"? # '''Impact''': How does "WBE" "Change" the **"Population Demographics"** of "A Post-Biological" "Civilization"? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''The 'Connectome' AI Reconstructor''': (See Article 08). An "AI" that "Reconstructs" **"Full" "Connectomes"** from "Electron Microscopy" "Data" "10,000x Faster" than "Manual Annotation." # '''VR 'Upload' Experience''': (See Article 604). A "Walkthrough" of "The First" **"WBE" "Awakening"** β "From" "The Perspective" of "The Emulation." # '''The 'Digital' Person Ledger''': (See Article 533). A "Blockchain" for **"Registering"** "WBE Emulations" as **"Legal Persons"** with "Verifiable Identity." # '''Global 'Digital' Person Rights Charter''': (See Article 630). A "Planetary Agreement" on the **"Legal Status," "Rights,"** and **"Obligations"** of "Whole Brain Emulations." [[Category:Arts]] [[Category:Science]] [[Category:Philosophy]] [[Category:Ethics]] [[Category:History]] [[Category:Neuroscience]] [[Category:AI]] [[Category:Technology]] [[Category:Future Studies]] [[Category:Digital Immortality]] [[Category:Philosophy of Mind]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information