Skip to content

Commit

Permalink
smaller stochastic depth
Browse files Browse the repository at this point in the history
  • Loading branch information
v-chen_data committed Nov 29, 2024
1 parent 7824d90 commit 25898a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/algorithms/algorithm_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,19 +207,19 @@
'model': (
composer_resnet,
{
'model_name': 'resnet50',
'model_name': 'resnet18',
'num_classes': 2,
},
),
'dataset': (
RandomImageDataset,
{
'shape': (3, 224, 224),
'shape': (3, 32, 32),
},
),
'kwargs': {
'stochastic_method': 'block',
'target_layer_name': 'ResNetBottleneck',
'target_layer_name': 'BasicBlock',
'drop_rate': 0.2,
'drop_distribution': 'linear',
'drop_warmup': '0.0dur',
Expand Down

0 comments on commit 25898a8

Please sign in to comment.