Instructions to use SEBIS/code_trans_t5_base_code_documentation_generation_javascript with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use SEBIS/code_trans_t5_base_code_documentation_generation_javascript with Transformers:
# Use a pipeline as a high-level helper # Warning: Pipeline type "summarization" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("summarization", model="SEBIS/code_trans_t5_base_code_documentation_generation_javascript")# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("SEBIS/code_trans_t5_base_code_documentation_generation_javascript") model = AutoModel.from_pretrained("SEBIS/code_trans_t5_base_code_documentation_generation_javascript") - Notebooks
- Google Colab
- Kaggle
wei commited on
Commit ·
2b84546
1
Parent(s): 7b28039
Update from weiding
Browse files
.Rhistory
ADDED
|
File without changes
|
README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
-
---
|
|
|
|
| 2 |
tags:
|
| 3 |
- summarization
|
| 4 |
widget:
|
| 5 |
- text: "function isStandardBrowserEnv ( ) { if ( typeof navigator !== 'undefined' && ( navigator . product === 'ReactNative' || navigator . product === 'NativeScript' || navigator . product === 'NS' ) ) { return false ; } return ( typeof window !== 'undefined' && typeof document !== 'undefined' ) ; }"
|
| 6 |
|
| 7 |
-
---
|
|
|
|
| 1 |
+
---
|
| 2 |
+
#yaml file
|
| 3 |
tags:
|
| 4 |
- summarization
|
| 5 |
widget:
|
| 6 |
- text: "function isStandardBrowserEnv ( ) { if ( typeof navigator !== 'undefined' && ( navigator . product === 'ReactNative' || navigator . product === 'NativeScript' || navigator . product === 'NS' ) ) { return false ; } return ( typeof window !== 'undefined' && typeof document !== 'undefined' ) ; }"
|
| 7 |
|
| 8 |
+
---
|