rahulnair23 commited on
Commit
22c7d63
·
1 Parent(s): 0ad8c9c

arxiv spaces integration

Browse files
Files changed (2) hide show
  1. README.md +14 -1
  2. executors.py +1 -0
README.md CHANGED
@@ -10,4 +10,17 @@ pinned: false
10
  license: apache-2.0
11
  ---
12
 
13
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  license: apache-2.0
11
  ---
12
 
13
+ Demo for paper on [Ranking Large Language Models without Ground Truth](https://arxiv.org/abs/2402.14860).
14
+
15
+ ```
16
+ @misc{dhurandhar2024rankinglargelanguagemodels,
17
+ title={Ranking Large Language Models without Ground Truth},
18
+ author={Amit Dhurandhar and Rahul Nair and Moninder Singh and Elizabeth Daly and Karthikeyan Natesan Ramamurthy},
19
+ year={2024},
20
+ eprint={2402.14860},
21
+ archivePrefix={arXiv},
22
+ primaryClass={cs.CL},
23
+ url={https://arxiv.org/abs/2402.14860},
24
+ }
25
+ ```
26
+
executors.py CHANGED
@@ -14,6 +14,7 @@ import csv, os
14
  from functools import partial
15
  import logging
16
 
 
17
  logger = logging.getLogger(__name__)
18
 
19
 
 
14
  from functools import partial
15
  import logging
16
 
17
+ logging.basicConfig(level=logging.INFO)
18
  logger = logging.getLogger(__name__)
19
 
20