stas122 commited on
Commit
66fffbe
·
verified ·
1 Parent(s): e858b1c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -1
README.md CHANGED
@@ -4,6 +4,11 @@ language:
4
  - en
5
  base_model:
6
  - StentorLabs/Stentor-30M
 
 
 
 
 
7
  ---
8
  **Model Description**
9
 
@@ -90,7 +95,7 @@ The model was evaluated on several test categories:
90
  ```python
91
  from transformers import AutoTokenizer, AutoModelForCausalLM
92
 
93
- model_path = "path/to/stentor-python-30m"
94
  tokenizer = AutoTokenizer.from_pretrained(model_path)
95
  model = AutoModelForCausalLM.from_pretrained(model_path)
96
 
 
4
  - en
5
  base_model:
6
  - StentorLabs/Stentor-30M
7
+ pipeline_tag: text-generation
8
+ tags:
9
+ - python
10
+ - code-generation
11
+ - tiny-model
12
  ---
13
  **Model Description**
14
 
 
95
  ```python
96
  from transformers import AutoTokenizer, AutoModelForCausalLM
97
 
98
+ model_path = "stas122/stentor_python_30m"
99
  tokenizer = AutoTokenizer.from_pretrained(model_path)
100
  model = AutoModelForCausalLM.from_pretrained(model_path)
101