|
from typing import List |
|
from data.dataloader import build_dataloader |
|
|
|
from new_impl.cv.elasticdnn.api.online_model_v2 import ElasticDNN_OnlineModel |
|
|
|
import torch |
|
import sys |
|
from torch import nn |
|
from new_impl.cv.elasticdnn.api.model import ElasticDNN_OfflineSegFMModel, ElasticDNN_OfflineSegMDModel |
|
from new_impl.cv.elasticdnn.api.algs.md_pretraining_wo_fbs import ElasticDNN_MDPretrainingWoFBSAlg |
|
from new_impl.cv.elasticdnn.model.base import ElasticDNNUtil |
|
from new_impl.cv.elasticdnn.pipeline.offline.fm_to_md.base import FM_to_MD_Util |
|
from new_impl.cv.elasticdnn.pipeline.offline.fm_to_md.vit import FM_to_MD_ViT_Util |
|
from new_impl.cv.elasticdnn.pipeline.offline.fm_lora.base import FMLoRA_Util |
|
from new_impl.cv.elasticdnn.pipeline.offline.fm_lora.vit import FMLoRA_ViT_Util |
|
from beit import ElasticbeitUtil |
|
from utils.common.file import ensure_dir |
|
from utils.dl.common.model import LayerActivation, get_module, get_parameter |
|
from utils.common.exp import save_models_dict_for_init, get_res_save_dir |
|
from data import build_scenario |
|
from utils.dl.common.loss import CrossEntropyLossSoft |
|
import torch.nn.functional as F |
|
from utils.dl.common.env import create_tbwriter |
|
import os |
|
from utils.common.log import logger |
|
from utils.common.data_record import write_json |
|
|
|
from new_impl.cv.feat_align.main import OnlineFeatAlignModel, FeatAlignAlg |
|
import tqdm |
|
from new_impl.cv.feat_align.mmd import mmd_rbf |
|
from new_impl.cv.utils.elasticfm_da import init_online_model, elasticfm_da |
|
torch.cuda.set_device(1) |
|
device = 'cuda' |
|
app_name = 'cls' |
|
sd_sparsity = 0.8 |
|
|
|
settings = { |
|
'involve_fm': True |
|
} |
|
|
|
scenario = build_scenario( |
|
source_datasets_name=['GTA5Cls', 'SuperviselyPersonCls'], |
|
target_datasets_order=['CityscapesCls', 'BaiduPersonCls'] * 15, |
|
da_mode='close_set', |
|
data_dirs={ |
|
'GTA5Cls': '/data/zql/datasets/gta5_for_cls_task', |
|
'SuperviselyPersonCls': '/data/zql/datasets/supervisely_person_for_cls_task', |
|
'CityscapesCls': '/data/zql/datasets/cityscapes_for_cls_task', |
|
'BaiduPersonCls': '/data/zql/datasets/baiduperson_for_cls_task' |
|
}, |
|
) |
|
|
|
|
|
class ElasticDNN_ClsOnlineModel(ElasticDNN_OnlineModel): |
|
def get_accuracy(self, test_loader, *args, **kwargs): |
|
acc = 0 |
|
sample_num = 0 |
|
|
|
self.to_eval_mode() |
|
|
|
with torch.no_grad(): |
|
pbar = tqdm.tqdm(enumerate(test_loader), total=len(test_loader), dynamic_ncols=True, leave=False) |
|
for batch_index, (x, y) in pbar: |
|
x, y = x.to(self.device), y.to(self.device) |
|
output = self.infer(x) |
|
pred = F.softmax(output, dim=1).argmax(dim=1) |
|
correct = torch.eq(pred, y).sum().item() |
|
acc += correct |
|
sample_num += len(y) |
|
|
|
pbar.set_description(f'cur_batch_total: {len(y)}, cur_batch_correct: {correct}, ' |
|
f'cur_batch_acc: {(correct / len(y)):.4f}') |
|
|
|
acc /= sample_num |
|
return acc |
|
|
|
def get_elastic_dnn_util(self) -> ElasticDNNUtil: |
|
return ElasticbeitUtil() |
|
|
|
def get_fm_matched_param_of_md_param(self, md_param_name): |
|
|
|
self_param_name = md_param_name |
|
fm = self.models_dict['fm'] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if any([k in self_param_name for k in ['fbs', 'cls_token', 'pos_embed']]): |
|
return None |
|
|
|
p = get_parameter(self.models_dict['md'], self_param_name) |
|
if p.dim() == 0: |
|
return None |
|
elif p.dim() == 1 and 'layernorm' in self_param_name and 'weight' in self_param_name: |
|
return get_parameter(fm, self_param_name) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ('attention.attention.query' in self_param_name or 'attention.attention.key' in self_param_name or \ |
|
'attention.attention.value' in self_param_name) and ('weight' in self_param_name): |
|
ss = self_param_name.split('.') |
|
|
|
fm_qkv_name = '.'.join(ss[0: -1]) + '.fc' |
|
fm_qkv = get_module(fm, fm_qkv_name) |
|
|
|
fm_abs_name = '.'.join(ss[0: -1]) + '.ab' |
|
fm_abs = get_module(fm, fm_abs_name) |
|
|
|
if not hasattr(fm_abs, '_mul_lora_weight'): |
|
logger.debug(f'set _mul_lora_weight in {fm_abs_name}') |
|
setattr(fm_abs, '_mul_lora_weight', |
|
nn.Parameter(fm_abs[1].weight @ fm_abs[0].weight)) |
|
|
|
return torch.cat([ |
|
fm_qkv.weight.data, |
|
fm_abs._mul_lora_weight.data |
|
], dim=0) |
|
|
|
elif ('attention.attention.query' in self_param_name or 'attention.attention.key' in self_param_name or \ |
|
'attention.attention.value' in self_param_name) and ('bias' in self_param_name): |
|
ss = self_param_name.split('.') |
|
|
|
fm_qkv_name = '.'.join(ss[0: -1]) + '.fc.bias' |
|
return get_parameter(fm, fm_qkv_name) |
|
|
|
elif 'intermediate.dense' in self_param_name and 'weight' in self_param_name: |
|
fm_param_name = self_param_name.replace('.linear', '') |
|
return get_parameter(fm, fm_param_name) |
|
elif 'output.dense' in self_param_name and 'weight' in self_param_name: |
|
fm_param_name = self_param_name.replace('.linear', '') |
|
return get_parameter(fm, fm_param_name) |
|
else: |
|
|
|
return None |
|
|
|
|
|
def update_fm_param(self, md_param_name, cal_new_fm_param_by_md_param): |
|
if not ('attention.attention.query.weight' in md_param_name or 'attention.attention.key.weight' in md_param_name or 'attention.attention.value.weight' in md_param_name): |
|
matched_fm_param_ref = self.get_fm_matched_param_of_md_param(md_param_name) |
|
matched_fm_param_ref.copy_(cal_new_fm_param_by_md_param) |
|
else: |
|
new_fm_attn_weight, new_fm_lora_weight = torch.chunk(cal_new_fm_param_by_md_param, 2, 0) |
|
ss = md_param_name.split('.') |
|
fm = self.models_dict['fm'] |
|
|
|
fm_qkv_name = '.'.join(ss[0: -1]) + '.fc' |
|
fm_qkv = get_module(fm, fm_qkv_name) |
|
fm_qkv.weight.data.copy_(new_fm_attn_weight) |
|
|
|
|
|
fm_abs_name = '.'.join(ss[0: -1]) + '.ab' |
|
fm_abs = get_module(fm, fm_abs_name) |
|
fm_abs._mul_lora_weight.data.copy_(new_fm_lora_weight) |
|
|
|
def get_md_matched_param_of_fm_param(self, fm_param_name): |
|
return super().get_md_matched_param_of_fm_param(fm_param_name) |
|
|
|
def get_md_matched_param_of_sd_param(self, sd_param_name): |
|
|
|
|
|
|
|
self_param_name = sd_param_name |
|
md = self.models_dict['md'] |
|
if any([k in self_param_name for k in ['fbs', 'ab', 'embeddings']]): |
|
return None |
|
|
|
p = get_parameter(self.models_dict['sd'], self_param_name) |
|
if p.dim() == 0: |
|
return None |
|
elif p.dim() == 1 and ('LayerNorm' in self_param_name or 'layernorm' in self_param_name) and 'weight' in self_param_name: |
|
return get_parameter(md, self_param_name) |
|
|
|
|
|
if ('query' in self_param_name or 'key' in self_param_name or \ |
|
'value' in self_param_name) and ('weight' in self_param_name): |
|
|
|
|
|
return get_parameter(md, self_param_name) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
elif 'intermediate.dense.0.weight' in self_param_name: |
|
fm_param_name = '.'.join(self_param_name.split('.')[0: -2]) + '.linear.weight' |
|
return get_parameter(md, fm_param_name) |
|
|
|
elif 'output.dense' in self_param_name and 'weight' in self_param_name: |
|
fm_param_name = self_param_name |
|
return get_parameter(md, fm_param_name) |
|
|
|
else: |
|
|
|
return None |
|
|
|
def get_task_head_params(self): |
|
head = get_module(self.models_dict['sd'], 'classifier') |
|
return list(head.parameters()) |
|
|
|
|
|
|
|
class ClsOnlineFeatAlignModel(OnlineFeatAlignModel): |
|
def get_trained_params(self): |
|
|
|
qkv_and_norm_params = [p for n, p in self.models_dict['main'].named_parameters()] |
|
return qkv_and_norm_params |
|
|
|
def get_feature_hook(self): |
|
return LayerActivation(get_module(self.models_dict['main'], 'classifier'), False, self.device) |
|
|
|
def forward_to_get_task_loss(self, x, y): |
|
return F.cross_entropy(self.infer(x), y) |
|
|
|
def get_mmd_loss(self, f1, f2): |
|
return mmd_rbf(f1, f2) |
|
|
|
def infer(self, x, *args, **kwargs): |
|
return self.models_dict['main'](x).logits |
|
|
|
def get_accuracy(self, test_loader, *args, **kwargs): |
|
acc = 0 |
|
sample_num = 0 |
|
|
|
self.to_eval_mode() |
|
|
|
with torch.no_grad(): |
|
pbar = tqdm.tqdm(enumerate(test_loader), total=len(test_loader), dynamic_ncols=True, leave=False) |
|
for batch_index, (x, y) in pbar: |
|
x, y = x.to(self.device), y.to(self.device) |
|
output = self.infer(x) |
|
pred = F.softmax(output, dim=1).argmax(dim=1) |
|
correct = torch.eq(pred, y).sum().item() |
|
acc += correct |
|
sample_num += len(y) |
|
|
|
pbar.set_description(f'cur_batch_total: {len(y)}, cur_batch_correct: {correct}, ' |
|
f'cur_batch_acc: {(correct / len(y)):.4f}') |
|
|
|
acc /= sample_num |
|
return acc |
|
|
|
|
|
|
|
|
|
|
|
elasticfm_model = ElasticDNN_ClsOnlineModel('cls', init_online_model( |
|
|
|
|
|
|
|
|
|
'new_impl/cv/beit/results/beit_index.py/20231028/999999-180237-/data/zql/concept-drift-in-edge-projects/UniversalElasticNet/new_impl/cv/beit/beit_index.py/models/fm_best.pt', |
|
'new_impl/cv/beit/results/beit_index.py/20231028/999999-180237-/data/zql/concept-drift-in-edge-projects/UniversalElasticNet/new_impl/cv/beit/beit_index.py/models/md_best.pt', |
|
'cls', __file__ |
|
), device, { |
|
'md_to_fm_alpha': 1, |
|
'fm_to_md_alpha': 1 |
|
}) |
|
|
|
da_alg = FeatAlignAlg |
|
|
|
da_model = ClsOnlineFeatAlignModel |
|
da_alg_hyp = { |
|
'CityscapesCls': { |
|
'train_batch_size': 64, |
|
'val_batch_size': 512, |
|
'num_workers': 8, |
|
'optimizer': 'AdamW', |
|
'optimizer_args': {'lr': 4e-3/2, 'betas': [0.9, 0.999], 'weight_decay': 0.01}, |
|
|
|
'scheduler': '', |
|
'scheduler_args': {}, |
|
'num_iters': 100, |
|
'val_freq': 20, |
|
'sd_sparsity':sd_sparsity , |
|
'feat_align_loss_weight': 3.0 |
|
}, |
|
'BaiduPersonCls': { |
|
'train_batch_size': 64, |
|
'val_batch_size': 512, |
|
'num_workers': 8, |
|
'optimizer': 'SGD', |
|
'optimizer_args': {'lr': 1e-3/2, 'momentum': 0.9}, |
|
'scheduler': '', |
|
'scheduler_args': {}, |
|
'num_iters': 100, |
|
'val_freq': 20, |
|
'sd_sparsity': sd_sparsity, |
|
'feat_align_loss_weight': 0.3 |
|
} |
|
} |
|
|
|
|
|
elasticfm_da( |
|
[app_name], |
|
[scenario], |
|
[elasticfm_model], |
|
[da_alg], |
|
[da_alg_hyp], |
|
[da_model], |
|
device, |
|
settings, |
|
__file__, |
|
sys.argv[0] |
|
) |
|
|