Skip to content

Commit 617a865

Browse files
committed
kp-feat-table adjustments
1 parent f956b6a commit 617a865

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

thesis/tables.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,11 @@ def bar_plot(model):
189189
feat_modes = FEATURE_MODES + ['cnn']
190190
tables = get_all_tables(model)
191191
index = np.arange(len(tables.keys()))
192-
group_width = 0.7
192+
group_width = 0.75
193193
bar_width = group_width / len(feat_modes)
194194
cmap = mpl.cm.get_cmap('tab10')
195195
colors = {feat: cmap(i/10) for i, feat in enumerate(feat_modes)}
196-
fig = plt.figure(figsize=textwidth_to_figsize(0.7, 3/5))
196+
fig = plt.figure(figsize=textwidth_to_figsize(0.5, 3/4))
197197

198198
for i, kp in zip(index, tables.keys()):
199199
group = tables[kp]
@@ -316,7 +316,7 @@ def model_comparison():
316316
# dgcnn_seg_table()
317317
# time_table()
318318
# point_net_seg_table()
319-
# bar_plot('DGCNN_seg')
319+
bar_plot('DGCNN_seg')
320320
# bar_plot('DSEGAE_reg_aug_1024')
321321
# seg_table('DGCNN', 'image')
322-
model_comparison()
322+
# model_comparison()

0 commit comments

Comments
 (0)