mgubri commited on
Commit
5904cb3
·
verified ·
1 Parent(s): 3483dc0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -7
README.md CHANGED
@@ -10,6 +10,7 @@ model-index:
10
  results: []
11
  datasets:
12
  - mandarjoshi/trivia_qa
 
13
  ---
14
 
15
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
@@ -28,16 +29,10 @@ This model is a fine-tuned version of [microsoft/deberta-v3-base](https://huggin
28
 
29
  More information needed
30
 
31
- ## Training and evaluation data
32
-
33
- More information needed
34
-
35
  ## Training procedure
36
 
37
  ### Training hyperparameters
38
 
39
- **TODO**: update the values below
40
-
41
  This model was trained with the code available on the [parameterlab/apricot GitHub repository](https://github.com/parameterlab/apricot) using the following command:
42
 
43
  ```shell
@@ -49,4 +44,31 @@ python3 run_regression_experiment.py --model-identifier lmsys/vicuna-7b-v1.5 --d
49
  - Transformers 4.32.0
50
  - Pytorch 2.0.0+cu117
51
  - Datasets 2.14.6
52
- - Tokenizers 0.13.3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  results: []
11
  datasets:
12
  - mandarjoshi/trivia_qa
13
+ library_name: transformers
14
  ---
15
 
16
  <!-- This model card has been generated automatically according to the information the Trainer had access to. You
 
29
 
30
  More information needed
31
 
 
 
 
 
32
  ## Training procedure
33
 
34
  ### Training hyperparameters
35
 
 
 
36
  This model was trained with the code available on the [parameterlab/apricot GitHub repository](https://github.com/parameterlab/apricot) using the following command:
37
 
38
  ```shell
 
44
  - Transformers 4.32.0
45
  - Pytorch 2.0.0+cu117
46
  - Datasets 2.14.6
47
+ - Tokenizers 0.13.3
48
+
49
+ ## Citation
50
+
51
+ If you find 🍑 Apricot models useful for your work, please cite our paper:
52
+
53
+ ``` latex
54
+ @inproceedings{ulmer-etal-2024-calibrating,
55
+ title = "Calibrating Large Language Models Using Their Generations Only",
56
+ author = "Ulmer, Dennis and
57
+ Gubri, Martin and
58
+ Lee, Hwaran and
59
+ Yun, Sangdoo and
60
+ Oh, Seong",
61
+ editor = "Ku, Lun-Wei and
62
+ Martins, Andre and
63
+ Srikumar, Vivek",
64
+ booktitle = "Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
65
+ month = aug,
66
+ year = "2024",
67
+ address = "Bangkok, Thailand",
68
+ publisher = "Association for Computational Linguistics",
69
+ url = "https://aclanthology.org/2024.acl-long.824",
70
+ doi = "10.18653/v1/2024.acl-long.824",
71
+ pages = "15440--15459",
72
+ abstract = "As large language models (LLMs) are increasingly deployed in user-facing applications, building trust and maintaining safety by accurately quantifying a model{'}s confidence in its prediction becomes even more important. However, finding effective ways to calibrate LLMs{---}especially when the only interface to the models is their generated text{---}remains a challenge. We propose APRICOT (Auxiliary prediction of confidence targets): A method to set confidence targets and train an additional model that predicts an LLM{'}s confidence based on its textual input and output alone. This approach has several advantages: It is conceptually simple, does not require access to the target model beyond its output, does not interfere with the language generation, and has a multitude of potential usages, for instance by verbalizing the predicted confidence or using it to re-prompting the LLM to accurately reflecting its uncertainty. We show how our approach performs competitively in terms of calibration error for white-box and black-box LLMs on closed-book question-answering to detect incorrect LLM answers.",
73
+ }
74
+ ```