mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 17:23:01 +00:00
DeepLabv3+: fix pathing again
This commit is contained in:
parent
7e1f271bf4
commit
440e693dfc
1 changed files with 1 additions and 1 deletions
|
@ -210,7 +210,7 @@ plt.savefig(os.path.join(DIR_OUTPUT, "val_acc.png"))
|
||||||
|
|
||||||
# Loading the Colormap
|
# Loading the Colormap
|
||||||
colormap = loadmat(
|
colormap = loadmat(
|
||||||
os.path.join(DIR_OUTPUT, "human_colormap.mat")
|
os.path.join(os.path.dirname(DIR_OUTPUT), "human_colormap.mat")
|
||||||
)["colormap"]
|
)["colormap"]
|
||||||
colormap = colormap * 100
|
colormap = colormap * 100
|
||||||
colormap = colormap.astype(np.uint8)
|
colormap = colormap.astype(np.uint8)
|
||||||
|
|
Loading…
Reference in a new issue