vincenttruum commited on
Commit
cee17fa
โ€ข
1 Parent(s): cbecf0e
{1_Pooling โ†’ my_first_test/1_Pooling}/config.json RENAMED
File without changes
my_first_test/README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - setfit
5
+ - sentence-transformers
6
+ - text-classification
7
+ pipeline_tag: text-classification
8
+ ---
9
+
10
+ # my_first_test
11
+
12
+ This is a [SetFit model](https://github.com/huggingface/setfit) that can be used for text classification. The model has been trained using an efficient few-shot learning technique that involves:
13
+
14
+ 1. Fine-tuning a [Sentence Transformer](https://www.sbert.net) with contrastive learning.
15
+ 2. Training a classification head with features from the fine-tuned Sentence Transformer.
16
+
17
+ ## Usage
18
+
19
+ To use this model for inference, first install the SetFit library:
20
+
21
+ ```bash
22
+ python -m pip install setfit
23
+ ```
24
+
25
+ You can then run inference as follows:
26
+
27
+ ```python
28
+ from setfit import SetFitModel
29
+
30
+ # Download from Hub and run inference
31
+ model = SetFitModel.from_pretrained("my_first_test")
32
+ # Run inference
33
+ preds = model(["i loved the spiderman movie!", "pineapple on pizza is the worst ๐Ÿคฎ"])
34
+ ```
35
+
36
+ ## BibTeX entry and citation info
37
+
38
+ ```bibtex
39
+ @article{https://doi.org/10.48550/arxiv.2209.11055,
40
+ doi = {10.48550/ARXIV.2209.11055},
41
+ url = {https://arxiv.org/abs/2209.11055},
42
+ author = {Tunstall, Lewis and Reimers, Nils and Jo, Unso Eun Seo and Bates, Luke and Korat, Daniel and Wasserblat, Moshe and Pereg, Oren},
43
+ keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
44
+ title = {Efficient Few-Shot Learning Without Prompts},
45
+ publisher = {arXiv},
46
+ year = {2022},
47
+ copyright = {Creative Commons Attribution 4.0 International}
48
+ }
49
+ ```
config.json โ†’ my_first_test/config.json RENAMED
File without changes
config_sentence_transformers.json โ†’ my_first_test/config_sentence_transformers.json RENAMED
File without changes
model_head.pkl โ†’ my_first_test/model_head.pkl RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:6515d35c387f31ca1e066c8a3421e2efc1b2c98ecf14cb408fc3c9f590266d6a
3
  size 25463
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:62b292ee736d6c8c232f82486e83af12a381649095eb0d553688fa7a7bb09fd0
3
  size 25463
modules.json โ†’ my_first_test/modules.json RENAMED
File without changes
pytorch_model.bin โ†’ my_first_test/pytorch_model.bin RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9456dd79736cdf354759f8530865ed147ec49e7822e9299b6cb9088345fe4a45
3
  size 438013677
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:452b40aa43a2b1d9fae02f5a2bcc166f28ea28d5bfcd746127722db1940a0c98
3
  size 438013677
sentence_bert_config.json โ†’ my_first_test/sentence_bert_config.json RENAMED
File without changes
special_tokens_map.json โ†’ my_first_test/special_tokens_map.json RENAMED
File without changes
tokenizer.json โ†’ my_first_test/tokenizer.json RENAMED
File without changes
tokenizer_config.json โ†’ my_first_test/tokenizer_config.json RENAMED
File without changes
vocab.txt โ†’ my_first_test/vocab.txt RENAMED
File without changes