jwieting commited on
Commit
53d3e6e
1 Parent(s): 0ae896e

Update modeling_sim.py

Browse files
Files changed (1) hide show
  1. modeling_sim.py +1 -0
modeling_sim.py CHANGED
@@ -7,6 +7,7 @@ class SimModel(MobileBertPreTrainedModel):
7
  super().__init__(config)
8
  self.config = config
9
  self.encoder = MobileBertModel(config)
 
10
  # Initialize weights and apply final processing
11
  self.post_init()
12
 
 
7
  super().__init__(config)
8
  self.config = config
9
  self.encoder = MobileBertModel(config)
10
+ print(self.encoder)
11
  # Initialize weights and apply final processing
12
  self.post_init()
13