[SOLVED] 留学生辅导

30 $

File Name: 留学生辅导.zip
File Size: 141.3 KB

SKU: 6350081479 Category: Tags: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,

Or Upload Your Assignment Here:


Before you start working on the exercise¶
Use Python version 3.7 up to 3.9. Make sure not to use Python 3.10
It is highly recommended to create a virtual environment for this course. You can find resources on how to create a virtual environment on the ISIS page of the course.

Copyright By PowCoder代写加微信 assignmentchef

Make sure that no assertions fail or exceptions occur, otherwise points will be subtracted.
Use all the variables given to a function unless explicitly stated otherwise. If you are not using a variable you are doing something wrong.
Read the whole task description before starting with your solution.
After you submit the notebook more tests will be run on your code. The fact that no assertions fail on your computer locally does not guarantee that you completed the exercise correctly.
Please submit only the notebook file with its original name. If you do not submit an ipynb file you will fail the exercise.
Edit only between YOUR CODE HERE and END YOUR CODE.
Verify that no syntax errors are present in the file.
Before uploading your submission, make sure everything runs as expected. First, restart the kernel (in the menubar, select KernelRestart) and then run all cells (in the menubar, select CellRun All).

import sys

if (3,7) <= sys.version_info[:2] <= (3, 9):print(“Correct Python version”)print(f”You are using a wrong version of Python: {‘.’.join(map(str,sys.version_info[:3]))}”) Exercise Sheet 4: Sampling, Simulation¶In this exercise sheet, we will simulate a Markov chain. In the first part, we will consider a pure Python based implementation where a single particle jumps from one position to another of the lattice, where all transitions to neighboring states have the same probability. Then, we will add probabilities for the transitions. Finally, the implementation will be parallelized to run many chains in parallel.Keep in mind that you can get the documentation of modules and functions using the help() function. # This cell is for grading. DO NOT remove itimport utilsfrom typing import Dict, Listfrom minified import max_allowed_loops, no_imports# Use unittest assertsimport unittestt = unittest.TestCase() Exercise 1: Random moves in a lattice (20 P)¶In this exercise, we will simulate the propagation of particles in a graph composed of 8 states (denoted by letters A-H) and stored in the variable S defined in the cell below. The lattice is the following:The particle starts in state A and then jumps randomly from its current state to one of its neighbors, all with same probability. Note that it cannot stay at the current position. The dictionary T defined in the cell below encode such transition behavior. # List of statesS = list(“ABCDEFGH”)# Dictionary of transitions”A”: “BE”,”B”: “AFC”,”C”: “BGD”,”D”: “CH”,”E”: “AF”,”F”: “EBG”,”G”: “FCH”,”H”: “GD”,print(f”States: {S}”)print(f”Transitions: {T}”) Using pure Python (i.e. no numpy functions), set the initial state to A and run it for 1999 iterations. Return the sequence of states visited by the particle as a list. Set the random seed of the module random to value 123 using the function random.seed before starting the simulation in order to produce deterministic results. import random@max_allowed_loops(1)@no_importsdef simulate(transitions: Dict[str, str]) -> List[str]:
Simulates a markov chain defined by the above transitions.
This function always sets the random seed to `123`. All simulations start with
initial state `A`. It always simulates 2000 steps including the initial state.
transitions (Dict[str, str]): A dictionary with eight keys [A-H]. For each key a string is
mapped as its value. Each of those strings can only contain the letters [A-H] each
letter can only appear once. `’A’: ‘BE’` means that from state `A` we can reach
the states `B` and `E` and no other state.
List[str]: A list of states (a string containing one of the letters [A-H])
that were visited during the simulation.
# YOUR CODE HERE
raise NotImplementedError(“Relplace this line with your code”)
# YOUR CODE HERE

X = simulate(T)

# Print the first 10 states
print(f”First 10 visited states –> {X[:10]}”)
t.assertIsInstance(X, List, “The state sequence must be a list”)
t.assertEqual(len(X), 2000)
t.assertIsInstance(X[0], str, “The state sequence must only contain strings”)
t.assertEqual(X[0], “A”, “The state sequence must start with A”)
t.assertTrue(all(x in S for x in X), “Your state sequence containes an invalid state”)
t.assertEqual(set(S), set(X), “Your list should contain each state at least once”)

# This cell is for grading. DO NOT remove it

Implement a function that returns a list of the relative frequencies of each state.

@max_allowed_loops(1)
@no_imports
def compute_histogram(
valid_states: List[str], state_sequence: List[str]
) -> List[float]:
Returns a list of percentages relating as to how many times each state
has been visited according to the `state_sequence` list

valid_states (List[str]): A list of all valid states
state_sequence (List[str]): A sequence of states for which we
want to calculate the frequencies
List[float]: A list of length 8. Contains the percentage `[0-1]` of occurances of each state
in the `state_sequence`.
# YOUR CODE HERE
raise NotImplementedError(“Relplace this line with your code”)
# YOUR CODE HERE

h = compute_histogram(S, X)
print(f”frequencies -> {h}”)
t.assertIsInstance(h, list)
# Check if the histogram is a valid probability distribution
print(f”sum -> {sum(h)}”)
t.assertAlmostEqual(sum(h), 1.0)

t.assertTrue(all(f < 0.2 for f in h))”””This cell is for grading.DO NOT remove it””” Using the above compute_histogram function, produce a bar plot using matplotlib (matplotlib.pyplot.bar) showing the fraction of the time the particle is found in a given state, averaged over the whole simulation. Do not call plt.show in the function (it is automatically called because of %matplotlib inline import matplotlib.pyplot as plt%matplotlib inline@max_allowed_loops(0)@no_importsdef plot_histogram(valid_states: List[str], frequencies: List[float]) -> None:
Plots a bar graph of a provided histogram.

valid_states (List[str]): The list of states
frequencies (List[float]): The frequency of each state
# YOUR CODE HERE
raise NotImplementedError(“Relplace this line with your code”)
# YOUR CODE HERE

# Plot the histogram of the above defined sequence X
h = compute_histogram(S, X)
plot_histogram(S, h)

Exercise 2: Adding a special state (10 P)¶
Suppose now that the rule (defined by the transition dictionary) is modified such that everytime the particle is in state F, it always moves to E in the next step.

Modify the code to handle this special case, and create a bar plot for the new states distribution. Make sure to not modify the original transition dictionary. To achieve this, you can have a look at the copy module, but every working solution is accepted.

@max_allowed_loops(0)
@no_imports
def modify_transitions(transitions: Dict[str, str]) -> Dict[str, str]:
Creates a modified transition dictionary without modifing the provided one.

This function creates a new transition dictionary such that from state `F` the only
possible following state is `E`.

transitions (dict): A dictionary that describes the possible transitions from each state
dict: A modified transition dict where from state `F` only state `E` can follow
# YOUR CODE HERE
raise NotImplementedError(“Relplace this line with your code”)
# YOUR CODE HERE

new_T = modify_transitions(T)
print(f”new_T[‘F’] = {new_T[‘F’]}”)
print(f”T[‘F’] = {T[‘F’]}”)
t.assertIsInstance(new_T, Dict)
t.assertIsNot(T, new_T, “T and new_T should not be the same instance”)

new_T = modify_transitions(T)
new_X = simulate(new_T)
h = compute_histogram(S, new_X)
plot_histogram(S, h)

Exercise 3: Exact solution to the previous exercise (15 P)¶
For simple Markov chains, a number of statistics can be obtained analytically from the structure of the transition model, in particular, by analysis of the transition matrix.

Implement a function that converts a string state id to an integer. ‘A’ maps to 0 and so on. The ord function can be very useful for tasks like this
Compute the transition matrices associated to the models of exercise 1 and 2 (make sure that each row in these matrices sums to 1).

This last function computes in closed form the stationary distribution associated to a given transition matrix P (i.e. the one we would get if running the simulation with such transition matrix for infinitely many time steps and looking at state frequencies).

Build a function that converts the string state into a numeric index

def state_string_to_index(state: str) -> int:
Converts the state string into a numerical index, where:

state (str): A state string in with len(state) == 1
int: The index of the state
# YOUR CODE HERE
raise NotImplementedError(“Relplace this line with your code”)
# YOUR CODE HERE

# Test state_string_to_index
A_idx = state_string_to_index(“A”)
t.assertNotIsInstance(A_idx, float)
t.assertEqual(A_idx, 0)

# This cell is for grading. DO NOT remove it

import numpy as np

@max_allowed_loops(3)
@no_imports
def to_matrix(transition: Dict[str, str]) -> np.ndarray:
Converts a transition dictionary into a transition matrix. The first row
represents the propability of moving from the first state to every state.

If the state dict is irreflexive (we cannot go from one state to the same
state) the sum of the diagonal is 0.

The sum of each row should be 1.

All the elements in the matrix are values in [0-1].

transition (Dict[str, str]): A dictionary describing the possible
transitions from each state.

np.ndarray: The transition matrix (ndim=2) that represents the same
(uniform) transitions as the transition dict
# YOUR CODE HERE
raise NotImplementedError(“Relplace this line with your code”)
# YOUR CODE HERE

matrix_T = to_matrix(T)
print(matrix_T.round(2))

t.assertIsInstance(matrix_T, np.ndarray)
np.testing.assert_allclose(np.sum(matrix_T, axis=1), 1.0)

# This cell is for grading. DO NOT remove it

Exercise 4: Adding non-uniform transition probabilities (25 P)¶
We consider the original lattice defined by the variable T. We set transition probabilities for each state to be such that:

The probability of moving vertically is the same as the probability of moving horizontally for states that have only two connections.
For states with 3 connections the probability of moving vertically is 0.5 while the probability of moving left is always twice the probability of moving right.

Hints: You can notice that for each state, the transitions towards other states are always listed from left to right in the dictionary T. Also note that characters A-H can be mapped to integer values using the Python function ord(), thus, giving a direct relation between state names and indices of the transition matrix.

b) Now implement the build_transition_matrix according to the rules defined above.

@max_allowed_loops(3)
@no_imports
def build_transition_matrix(transition: Dict[str, str]) -> np.ndarray:
Builds a transition matrix from a transition dictionary, similarly to
`to_matrix` function. However, this function does not create a uniform
distribution among the following states.

If the the next valid states are two then the distribution is uniform.

If the the next valid states are three, then moving vertically should have a
50% chance and moving left twice as much as moving right.

Like in the `to_matrix` function the sum of each row should be 1.

transition (Dict[str,str]) A dictionary describing the possible
transitions from each state.
np.ndarray: A transition matrix
# YOUR CODE HERE
raise NotImplementedError(“Relplace this line with your code”)
# YOUR CODE HERE

# Test build_transition_matrix
P = build_transition_matrix(T)
print(P.round(3))

t.assertIsInstance(P, np.ndarray)
np.testing.assert_allclose(P.sum(axis=1), 1.0)
np.testing.assert_allclose(P[1, 2], 0.16666667)

# This cell is for grading. DO NOT remove it

Exercise 5: Simulation for multiple particles (30 P)¶
In this exercise we want to accelerate the simulation of particles in a markov chain. Our motivation is to approximate the stationary distribution of a given markov chain.

We let 1000 particles evolve simultaneously in the system described in Exercise 4. The initial state of these particles is pseudo-random and given by the function utils.getinitialstate().

Using the function utils.mcstep() that was introduced during the lecture, simulate this system for 500 time steps.
The mcstep function is similar to the one shown in the lecture.

For reproducibility, give seed values to the function utils.mcstep corresponding to the current time step of the simulation (i.e. from 0 to 499).

As a reference you can compare the output of your function to the output of utils.getstationary which calculates an analytical solution. The outputs of the two functions are not expected to be exactly equal (after all we only calculate an approximation). The two outputs should be equal to 1 decimal place.

@max_allowed_loops(1)
@no_imports
def simulate_1000(transition: Dict[str, str]) -> np.ndarray:
Simulates 1000 particles for 500 time steps, in order to approximate
the stationary distribution.

transition (Dict[str, str]): A transition dict, that will be
converted into a transition matrix using the
`build_transition_matrix` function.
np.ndarray: The estimated stationary distribution vector (ndim=1)

# YOUR CODE HERE
raise NotImplementedError(“Relplace this line with your code”)
# YOUR CODE HERE

# For reference this is the actual stationary distribution
print(utils.getstationary(build_transition_matrix(T)).round(4))

stationary_distribution = simulate_1000(T)
print(stationary_distribution)
t.assertIsInstance(stationary_distribution, np.ndarray)
t.assertEqual(stationary_distribution.shape, (8,))
np.testing.assert_allclose(np.sum(stationary_distribution), 1)

程序代写 CS代考加微信: assignmentchef QQ: 1823890830 Email: [email protected]

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[SOLVED] 留学生辅导
30 $