|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- # Copyright (c) Alibaba, Inc. and its affiliates.
- import glob
- import os
- import shutil
- import tempfile
- import unittest
-
- import json
- import numpy as np
- import torch
- from torch import nn
- from torch.optim import SGD
- from torch.optim.lr_scheduler import StepLR
-
- from modelscope.metrics.builder import MetricKeys
- from modelscope.trainers import build_trainer
- from modelscope.utils.constant import LogKeys, ModeKeys, ModelFile
- from modelscope.utils.test_utils import (DistributedTestCase,
- create_dummy_test_dataset, test_level)
-
- dummy_dataset_small = create_dummy_test_dataset(
- np.random.random(size=(5, )), np.random.randint(0, 4, (1, )), 20)
-
- dummy_dataset_big = create_dummy_test_dataset(
- np.random.random(size=(5, )), np.random.randint(0, 4, (1, )), 40)
-
-
- class DummyModel(nn.Module):
-
- def __init__(self):
- super().__init__()
- self.linear = nn.Linear(5, 4)
- self.bn = nn.BatchNorm1d(4)
-
- def forward(self, feat, labels):
- x = self.linear(feat)
-
- x = self.bn(x)
- loss = torch.sum(x)
- return dict(logits=x, loss=loss)
-
-
- def train_func(work_dir, dist=False):
- json_cfg = {
- 'train': {
- 'work_dir': work_dir,
- 'dataloader': {
- 'batch_size_per_gpu': 2,
- 'workers_per_gpu': 1
- },
- 'hooks': [{
- 'type': 'EvaluationHook',
- 'interval': 1
- }]
- },
- 'evaluation': {
- 'dataloader': {
- 'batch_size_per_gpu': 1,
- 'workers_per_gpu': 1,
- 'shuffle': False
- },
- 'metrics': ['seq_cls_metric']
- }
- }
-
- config_path = os.path.join(work_dir, ModelFile.CONFIGURATION)
- with open(config_path, 'w') as f:
- json.dump(json_cfg, f)
-
- model = DummyModel()
- optimmizer = SGD(model.parameters(), lr=0.01)
- lr_scheduler = StepLR(optimmizer, 2)
- trainer_name = 'EpochBasedTrainer'
- kwargs = dict(
- cfg_file=config_path,
- model=model,
- data_collator=None,
- train_dataset=dummy_dataset_big,
- eval_dataset=dummy_dataset_small,
- optimizers=(optimmizer, lr_scheduler),
- max_epochs=3,
- device='gpu',
- launcher='pytorch' if dist else None)
-
- trainer = build_trainer(trainer_name, kwargs)
- trainer.train()
-
-
- @unittest.skipIf(not torch.cuda.is_available(), 'cuda unittest')
- class TrainerTestSingleGpu(unittest.TestCase):
-
- def setUp(self):
- print(('Testing %s.%s' % (type(self).__name__, self._testMethodName)))
- self.tmp_dir = tempfile.TemporaryDirectory().name
- if not os.path.exists(self.tmp_dir):
- os.makedirs(self.tmp_dir)
-
- def tearDown(self):
- super().tearDown()
- shutil.rmtree(self.tmp_dir)
-
- @unittest.skipUnless(test_level() >= 1, 'skip test in current test level')
- def test_single_gpu(self):
- train_func(self.tmp_dir)
-
- results_files = os.listdir(self.tmp_dir)
- json_files = glob.glob(os.path.join(self.tmp_dir, '*.log.json'))
- self.assertEqual(len(json_files), 1)
-
- with open(json_files[0], 'r') as f:
- lines = [i.strip() for i in f.readlines()]
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.TRAIN,
- LogKeys.EPOCH: 1,
- LogKeys.ITER: 10,
- LogKeys.LR: 0.01
- }, json.loads(lines[0]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.TRAIN,
- LogKeys.EPOCH: 1,
- LogKeys.ITER: 20,
- LogKeys.LR: 0.01
- }, json.loads(lines[1]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.EVAL,
- LogKeys.EPOCH: 1,
- LogKeys.ITER: 20
- }, json.loads(lines[2]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.TRAIN,
- LogKeys.EPOCH: 2,
- LogKeys.ITER: 10,
- LogKeys.LR: 0.01
- }, json.loads(lines[3]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.TRAIN,
- LogKeys.EPOCH: 2,
- LogKeys.ITER: 20,
- LogKeys.LR: 0.01
- }, json.loads(lines[4]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.EVAL,
- LogKeys.EPOCH: 2,
- LogKeys.ITER: 20
- }, json.loads(lines[5]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.TRAIN,
- LogKeys.EPOCH: 3,
- LogKeys.ITER: 10,
- LogKeys.LR: 0.001
- }, json.loads(lines[6]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.TRAIN,
- LogKeys.EPOCH: 3,
- LogKeys.ITER: 20,
- LogKeys.LR: 0.001
- }, json.loads(lines[7]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.EVAL,
- LogKeys.EPOCH: 3,
- LogKeys.ITER: 20
- }, json.loads(lines[8]))
- self.assertIn(f'{LogKeys.EPOCH}_1.pth', results_files)
- self.assertIn(f'{LogKeys.EPOCH}_2.pth', results_files)
- self.assertIn(f'{LogKeys.EPOCH}_3.pth', results_files)
- for i in [0, 1, 3, 4, 6, 7]:
- self.assertIn(LogKeys.DATA_LOAD_TIME, lines[i])
- self.assertIn(LogKeys.ITER_TIME, lines[i])
- for i in [2, 5, 8]:
- self.assertIn(MetricKeys.ACCURACY, lines[i])
-
-
- @unittest.skipIf(not torch.cuda.is_available()
- or torch.cuda.device_count() <= 1, 'distributed unittest')
- class TrainerTestMultiGpus(DistributedTestCase):
-
- def setUp(self):
- print(('Testing %s.%s' % (type(self).__name__, self._testMethodName)))
- self.tmp_dir = tempfile.TemporaryDirectory().name
- if not os.path.exists(self.tmp_dir):
- os.makedirs(self.tmp_dir)
-
- def tearDown(self):
- super().tearDown()
- shutil.rmtree(self.tmp_dir)
-
- @unittest.skipUnless(test_level() >= 1, 'skip test in current test level')
- def test_multi_gpus(self):
- self.start(train_func, num_gpus=2, work_dir=self.tmp_dir, dist=True)
-
- results_files = os.listdir(self.tmp_dir)
- json_files = glob.glob(os.path.join(self.tmp_dir, '*.log.json'))
- self.assertEqual(len(json_files), 1)
-
- with open(json_files[0], 'r') as f:
- lines = [i.strip() for i in f.readlines()]
-
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.TRAIN,
- LogKeys.EPOCH: 1,
- LogKeys.ITER: 10,
- LogKeys.LR: 0.01
- }, json.loads(lines[0]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.EVAL,
- LogKeys.EPOCH: 1,
- LogKeys.ITER: 10
- }, json.loads(lines[1]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.TRAIN,
- LogKeys.EPOCH: 2,
- LogKeys.ITER: 10,
- LogKeys.LR: 0.01
- }, json.loads(lines[2]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.EVAL,
- LogKeys.EPOCH: 2,
- LogKeys.ITER: 10
- }, json.loads(lines[3]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.TRAIN,
- LogKeys.EPOCH: 3,
- LogKeys.ITER: 10,
- LogKeys.LR: 0.001
- }, json.loads(lines[4]))
- self.assertDictContainsSubset(
- {
- LogKeys.MODE: ModeKeys.EVAL,
- LogKeys.EPOCH: 3,
- LogKeys.ITER: 10
- }, json.loads(lines[5]))
- self.assertIn(f'{LogKeys.EPOCH}_1.pth', results_files)
- self.assertIn(f'{LogKeys.EPOCH}_2.pth', results_files)
- self.assertIn(f'{LogKeys.EPOCH}_3.pth', results_files)
- for i in [0, 2, 4]:
- self.assertIn(LogKeys.DATA_LOAD_TIME, lines[i])
- self.assertIn(LogKeys.ITER_TIME, lines[i])
- for i in [1, 3, 5]:
- self.assertIn(MetricKeys.ACCURACY, lines[i])
-
-
- if __name__ == '__main__':
- unittest.main()
|