CS week 4 Flashcards

(31 cards)

1
Q

What are atoms in the ising model of magnetism and what two variables control their behavior?

A

atoms are locations on a two-dimensional grid. They are controlled by the temperature of the magnet & the external magnetic field. Lower temperature -> more aligned spins, The external field could be caused by another magnet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How does the emergent property of lasers occur (synergetics)? What is the order parameter and enslavement?

A

Increased energy -> transition from unsynchronized (regular) to powerful coherent light. order parameter = the coherent laser light wave that emerges. The individual atoms move in a manner consistent with this emergent property = Enslavement.. Motion of the atoms contributes to the formation of the order parameter (laser light wave). + the laser light wave dominates the movement of the individual atoms = cyclical cause-and-effect relationship/strong emergence

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What did synergetics originate in?

A

in Haken’s work on lasers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the curie point?

A

The temperature at which the magnet loses its magnetic force .

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is The Boltzmann entropy is a function of?

A

the number of ways (W) in which a particular macrostate can be realized.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are glauber dynamics and why are they useful to model magnetism?

A

A technique that updates the spin states in a system based on energy differences and temperature, guiding it toward equilibrium. The normalization constant falls out of the equation. In this way we can simulate Ising systems with much larger than 20.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What do the two equations of the ising function define?

A
  1. H(x) -> the energy of a given state vector x
  2. P(X = x) The probability of a certain state
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How can the mean field behavior of a fully connected Ising network (also called the Curie—Weiss model), be described?

.

A

A cusp
* external field = normal variable.
* Temperature = splitting variable.
* The relationship to self-organization is that when we cool a hot magnet, at some threshold the spins begin to align and soon are all 1 or -1 . This is the pitchfork bifurcation, creating order out of disorder.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is the mean field behavior?

A

The emergent behavior of a magnet. The mean field behavior is the average magnetic field produced by all spins

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What are dissipative systems (chemistry)?.

A

systems far from thermodynamic equilibrium (due to high energy input) in which complex, sometimes chaotic, structures form due to long-range correlations between interacting particles.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Explain the idea of “local entropy”

A

Stengers and Prigogine (1978) argued that while entropy indeed increases in closed systems, the process of self-organization in open systems can create ordered structures, resulting in a net decrease in what they referred to as “local entropy

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does The second law of thermodynamics state?

A

that the total entropy of an isolated system always increases over time and never decreases, meaning that spontaneous processes in nature tend to move toward a state of increasing disorder or randomness.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does the theory of punctuated equilibria propose(biology)?

A

that species undergo long periods of stability interrupted by relatively short bursts of rapid evolutionary change

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are irreversible transitions and what does this say about catastrophes?

A

Irreversible transitions refer to changes in a system that cannot be reversed by simply reversing the conditions that caused the change, often resulting in a permanent change in the state or structure of the system (e. Frying an egg). While the catastrophe models we previously discussed exhibited symmetrical transitions (sudden jumps in the business card are symmetric), Prigogine’s research revealed that this symmetry does not always hold true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What idea did Kaufmann introduce (biology)?

A

the concept of self-organization into evolutionary theory. He argues that the small incremental steps in neo-Darwinistic processes cannot fully explain natural evolution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a hypercycle?

A

A hypercycle is a network of self-replicating molecules or entities that mutually support each other’s production, leading to an increase in complexity and stability beyond what individual entities could achieve alone.

17
Q

What is a cellular automaton (CA) (usually)?

A

It is usually a two-dimensional grid of cells, where cells interact with their neighbors, as in the 2D Ising model, but this can be generalized to more or less dimensions.

18
Q

What is the difference between feedforward and reccurent neural networks?

A

Feedforward = process information in a single forward pass. recurrent =directed cycles, allowing them to capture temporal dependencies.

19
Q

Conway’s game of life: For each cell, the next state for all cells is computedgiven the states of its neighbors,. What is this called?

A

synchronous updating

20
Q

What is backpropagation?

A

A mechanism to update specific connections such that this mismatch or error is minimized over time.

21
Q

Describe the general or unrestricted Boltzmann machine

A
  • a recurrent unsupervised model.
  • Basically an ising model where the connections between nodes have continuous values..
    Training phase:
  • edge weights are updated according to the Hebb rule
    Test phase:
  • present partial states by setting some (not all) nodes to the values of a particular learned input pattern
  • By the Glauber dynamics, we update the remaining states that should take on the values belonging to the pattern - This pattern completion task is typical for ANNs.
22
Q

What is the difference between general/unrestricted and restricted Boltzmann machines?

A
  • General = any node can be connected to any other node and each node is an input node.
  • RBM = nodes are organized in layers, with connections between layers but not within layers. (much more popular because of its computational efficiency)
23
Q

What are Genetic algorithms?

A

a class of optimization algorithms inspired by the process of natural selection, where solutions to a problem evolve over generations

24
Q

What is The Elo rating system?

A

A self-organizing method of calculating the relative skill levels of players in head-to-head games based on the results of their games.

25
What does cybernetics study?
circular causal and feedback mechanisms in complex systems, focusing on how systems: * regulate themselves, * process information * adapt to changes in their environment.
26
seven key properties of self-organization clearly identified in brain systems
* dynamic system growth. * modular connectivity, * unsupervised learning * adaptive ability, * functional resiliency, * functional plasticity, * from-local-to-global functional organization,
27
What 3 types of objects are there in netlogo?
* patches - cells in a world grid (CA); * turtles - agents that move around * links - connect turtles
28
What does Edelmans theory of neural Darwinism suggest?
that the development of the brain’s neural connections is based on a process of competition and selection, rather than being pre-wired in the genes
29
One of the key pieces of evidence for Self-Organized Criticality in the brain
comes from studies of the distribution of sizes of neural activity events, which has been found to follow a power law distribution,
30
What is the core proposition of integrated information theory (ITT)?
that consciousness is equivalent to a system’s ability to integrate informatio
31