whackthejacker commited on
Commit
91987b2
·
verified ·
1 Parent(s): d877c0b

Update model.py

Browse files
Files changed (1) hide show
  1. model.py +1 -2
model.py CHANGED
@@ -1,4 +1,4 @@
1
- ```python
2
  import torch.nn as nn
3
  from transformers import AutoModelForCausalLM
4
 
@@ -38,4 +38,3 @@ class CodeGenerator(nn.Module):
38
  torch.Tensor: The output tensor containing the generated code.
39
  """
40
  return self.model(input_ids)[0]
41
- ```
 
1
+
2
  import torch.nn as nn
3
  from transformers import AutoModelForCausalLM
4
 
 
38
  torch.Tensor: The output tensor containing the generated code.
39
  """
40
  return self.model(input_ids)[0]