Sefika commited on
Commit
d06ceb3
·
verified ·
1 Parent(s): b2c722d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +8 -15
README.md CHANGED
@@ -1,16 +1,9 @@
1
- ---
2
- license: apache-2.0
3
- datasets:
4
- - nvidia/HelpSteer2
5
- language:
6
- - en
7
- library_name: allennlp
8
- pipeline_tag: text-classification
9
- tags:
10
- - art
11
- metrics:
12
- - f1
13
- ---
14
 
15
- ## 📖 Introduction
16
- Sample Model Card for ML Schema
 
 
 
 
 
1
+ # My Model
2
+ This is my model card.
 
 
 
 
 
 
 
 
 
 
 
3
 
4
+ ## Usage
5
+ ```python
6
+ from transformers import AutoModel, AutoTokenizer
7
+ tokenizer = AutoTokenizer.from_pretrained("Sefika/sample_model")
8
+ model = AutoModel.from_pretrained("Sefika/sample_model")
9
+