Update README.md
Browse files
README.md
CHANGED
@@ -47,6 +47,20 @@ Improved version to be uploaded soon.
|
|
47 |
Final Train Loss: **4.69**
|
48 |
Final Eval Loss: **4.40**
|
49 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
## Example Usage
|
51 |
|
52 |
```python
|
@@ -63,15 +77,3 @@ outputs = model.generate(**inputs)
|
|
63 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
64 |
'''
|
65 |
|
66 |
-
## Notes
|
67 |
-
|
68 |
-
Trained on subset of OpenCodeReasoning due to Colab memory limits
|
69 |
-
|
70 |
-
Use PeftModel with t5-small base
|
71 |
-
|
72 |
-
Metrics used: Loss (BLEU skipped due to output structure)
|
73 |
-
|
74 |
-
|
75 |
-
## License
|
76 |
-
|
77 |
-
Apache 2.0
|
|
|
47 |
Final Train Loss: **4.69**
|
48 |
Final Eval Loss: **4.40**
|
49 |
|
50 |
+
|
51 |
+
## Notes
|
52 |
+
|
53 |
+
Trained on subset of OpenCodeReasoning due to Colab memory limits
|
54 |
+
|
55 |
+
Use PeftModel with t5-small base
|
56 |
+
|
57 |
+
Metrics used: Loss (BLEU skipped due to output structure)
|
58 |
+
|
59 |
+
|
60 |
+
## License
|
61 |
+
Apache 2.0
|
62 |
+
|
63 |
+
|
64 |
## Example Usage
|
65 |
|
66 |
```python
|
|
|
77 |
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
78 |
'''
|
79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|