UOMOP
성 본문
% 데이터
masking_ratio = 0.1:0.1:0.9;
topk = [0.029, 0.042, 0.053, 0.06, 0.065, 0.067, 0.069, 0.072, 0.074]; % 예시 데이터
random = [0.028, 0.032, 0.036, 0.04, 0.044, 0.0455, 0.046, 0.046, 0.046]; % 예시 데이터
proposed = [0.027, 0.042, 0.055, 0.061, 0.064, 0.066, 0.066, 0.067, 0.069]; % 예시 데이터
% 그림 그리기
figure;
hold on;
plot(masking_ratio, proposed, ':r*', 'LineWidth', 2.5, 'MarkerSize', 12, 'DisplayName', 'Proposed'); % CBS 빨간 점선
plot(masking_ratio, topk, '--bs', 'LineWidth', 2.5, 'MarkerSize', 8, 'DisplayName', 'Top-K'); % TopK 파란 점선
plot(masking_ratio, random, '-.','Color', [0.85, 0.65, 0], 'Marker', '^', 'LineWidth', 2.5, 'MarkerSize', 8, 'DisplayName', 'Random'); % Random 노란 점선
hold off;
% 축 및 레이블 설정
xlabel('Masking ratio');
ylabel('Average of unmasked patches variance');
legend('Location', 'NorthWest');
ylim([0 0.1]);
grid on;
Comments