Skip to content

Instantly share code, notes, and snippets.

@tam17aki
Last active February 13, 2025 14:41
Show Gist options
  • Save tam17aki/94c87968a3f0ba0360a918198a57e784 to your computer and use it in GitHub Desktop.
Save tam17aki/94c87968a3f0ba0360a918198a57e784 to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
"""A script to plot similarities.
Copyright (C) 2025 by Akira TAMAMORI
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
"""
import os
import matplotlib.pyplot as plt
import numpy as np
file_names = [
"log_0.05.txt",
"log_0.1.txt",
"log_0.15.txt",
"log_0.2.txt",
"log_0.25.txt",
"log_0.3.txt",
"log_0.35.txt",
"log_0.4.txt",
"log_0.5.txt",
"log_0.6.txt",
"log_0.7.txt",
"log_0.8.txt",
"log_0.9.txt",
]
logdir = os.path.join(os.getcwd(), "log")
plt.figure(figsize=(10, 6))
plt.xlabel("Number of state update", fontsize=14)
plt.ylabel("Directional Cosine", fontsize=14)
plt.title("Dynamics of recall process in associative memory", fontsize=16)
ax = plt.gca()
ax.tick_params(axis="x", labelsize=12)
ax.tick_params(axis="y", labelsize=12)
for file_name in file_names:
try:
data = np.loadtxt(os.path.join(logdir, file_name))
plt.plot(data, label=file_name, marker="o")
plt.xlim([0, 25])
except FileNotFoundError:
print(f"Error: File not found: {file_name}")
plt.grid(True)
plt.tight_layout()
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment