You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"<a href=\"https://colab.research.google.com/github/ContextLab/memory-models-course/blob/main/content/assignments/Assignment_1%3AHopfield_Networks/hopfield_assignment_template.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
11
+
]
12
+
},
13
+
{
14
+
"cell_type": "markdown",
15
+
"id": "4112dba2",
16
+
"metadata": {
17
+
"id": "4112dba2"
18
+
},
19
+
"source": [
20
+
"# Assignment 1: Hopfield Networks\n",
21
+
"\n",
22
+
"This notebook provides a suggested starter template for completing the [Hopfield network assignment](https://contextlab.github.io/memory-models-course/assignments/Assignment_1%3AHopfield_Networks/README.html).\n",
23
+
"\n",
24
+
"You should submit your assignment by uploading your completed notebook to [Canvas](https://canvas.dartmouth.edu/courses/71051/assignments/517353). Please ensure that your notebook runs without errors in [Google Colaborator](https://colab.research.google.com/)."
25
+
]
26
+
},
27
+
{
28
+
"cell_type": "markdown",
29
+
"id": "13a772fc",
30
+
"metadata": {
31
+
"id": "13a772fc"
32
+
},
33
+
"source": [
34
+
"## Setup\n",
35
+
"\n",
36
+
"Import necessary libraries and define helper functions."
37
+
]
38
+
},
39
+
{
40
+
"cell_type": "code",
41
+
"execution_count": null,
42
+
"id": "3487ab4e",
43
+
"metadata": {
44
+
"id": "3487ab4e"
45
+
},
46
+
"outputs": [],
47
+
"source": [
48
+
"import numpy as np\n",
49
+
"import matplotlib.pyplot as plt\n",
50
+
"\n",
51
+
"# Define any helper functions here"
52
+
]
53
+
},
54
+
{
55
+
"cell_type": "markdown",
56
+
"id": "a38cd155",
57
+
"metadata": {
58
+
"id": "a38cd155"
59
+
},
60
+
"source": [
61
+
"## Task 1: Memory Storage and Retrieval\n",
62
+
"\n",
63
+
"Implement the Hebbian learning rule and update dynamics."
0 commit comments