Skip to content

Commit

Permalink
Raw strings in the ML vs. IT example
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneCmb committed Oct 30, 2024
1 parent 9cfe96a commit c8a53d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/tutorials/plot_ml_vs_it.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,11 +185,11 @@ def it(x, y):
axs = np.ravel(axs)
plt.sca(axs[0])
plt.plot(it(x_red, y_red).squeeze())
plt.ylabel("$\partial \Omega_{[X_{1}, ..., X_{N}]}$ [Bits]")
plt.ylabel(r"$\partial \Omega_{[X_{1}, ..., X_{N}]}$ [Bits]")
plt.title("Redundant interactions", fontweight="bold")
plt.sca(axs[1])
plt.plot(it(x_syn, y_syn).squeeze())
plt.ylabel("$\partial \Omega_{[X_{1}, ..., X_{N}]}$ [Bits]")
plt.ylabel(r"$\partial \Omega_{[X_{1}, ..., X_{N}]}$ [Bits]")
plt.title("Synergistic interactions", fontweight="bold")
plt.show()

Expand Down

0 comments on commit c8a53d9

Please sign in to comment.