Update chatNT.py
Browse files
chatNT.py
CHANGED
@@ -607,6 +607,11 @@ class TorchMultiOmicsModel(PreTrainedModel):
|
|
607 |
print("(debug) Type config : ", type(config))
|
608 |
|
609 |
print("(debug) config : ", config)
|
|
|
|
|
|
|
|
|
|
|
610 |
|
611 |
super().__init__(config=config)
|
612 |
self.gpt_config = config.gpt_config
|
|
|
607 |
print("(debug) Type config : ", type(config))
|
608 |
|
609 |
print("(debug) config : ", config)
|
610 |
+
print("(debug) config type : ", type(config))
|
611 |
+
print("(debug) gpt config : ", config.gpt_config)
|
612 |
+
print("(debug) gpt config type : ", type(config.gpt_config))
|
613 |
+
print("(debug) esm config : ", config.esm_config)
|
614 |
+
print("(debug) esm config type : ", type(config.esm_config))
|
615 |
|
616 |
super().__init__(config=config)
|
617 |
self.gpt_config = config.gpt_config
|