Chantal commited on
Commit
e7184d5
1 Parent(s): 51af647

Delete RaDialog_config.py

Browse files
Files changed (1) hide show
  1. RaDialog_config.py +0 -27
RaDialog_config.py DELETED
@@ -1,27 +0,0 @@
1
- from transformers import PretrainedConfig
2
- from typing import List
3
-
4
-
5
- class RaDialogConfig(PretrainedConfig):
6
- model_type = "resnet"
7
-
8
- def __init__(
9
- self,
10
-
11
- **kwargs,
12
- ):
13
- if block_type not in ["basic", "bottleneck"]:
14
- raise ValueError(f"`block_type` must be 'basic' or bottleneck', got {block_type}.")
15
- if stem_type not in ["", "deep", "deep-tiered"]:
16
- raise ValueError(f"`stem_type` must be '', 'deep' or 'deep-tiered', got {stem_type}.")
17
-
18
- self.block_type = block_type
19
- self.layers = layers
20
- self.num_classes = num_classes
21
- self.input_channels = input_channels
22
- self.cardinality = cardinality
23
- self.base_width = base_width
24
- self.stem_width = stem_width
25
- self.stem_type = stem_type
26
- self.avg_down = avg_down
27
- super().__init__(**kwargs)