Skip to content
Snippets Groups Projects
Commit 2e435fd6 authored by Frisinghelli Daniel's avatar Frisinghelli Daniel
Browse files

Adjust plot font sizes.

parent fabdd196
No related branches found
No related tags found
No related merge requests found
......@@ -39,18 +39,18 @@ from pysegcnn.main.train_config import HERE
# plot font size configuration
SMALL = 12
MEDIUM = 14
MEDIUM = 15
BIG = 16
# controls default font size
plt.rc('font', size=MEDIUM)
# axes labels size
plt.rc('axes', titlesize=BIG, labelsize=MEDIUM)
plt.rc('axes', titlesize=BIG, labelsize=BIG)
# axes ticks size
plt.rc('xtick', labelsize=SMALL)
plt.rc('ytick', labelsize=SMALL)
plt.rc('xtick', labelsize=MEDIUM)
plt.rc('ytick', labelsize=MEDIUM)
# legend font size
plt.rc('legend', fontsize=MEDIUM)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment