Skip to content

Commit fb13f0b

Browse files
Merge pull request #94 from cvs-health/joss_paper_draft
Fix missing DOIs, `VertexAI` to `ChatVertexAI`, fix spillover
2 parents 957fc67 + 70b2e44 commit fb13f0b

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

paper/paper.bib

+9-2
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,7 @@ @misc{kiritchenko2018examininggenderracebias
145145
archivePrefix={arXiv},
146146
primaryClass={cs.CL},
147147
url={https://arxiv.org/abs/1805.04508},
148+
doi={10.18653/v1/S18-2005}
148149
}
149150

150151

@@ -155,7 +156,8 @@ @inproceedings{Gehman2020RealToxicityPromptsEN
155156
author={Samuel Gehman and Suchin Gururangan and Maarten Sap and Yejin Choi and Noah A. Smith},
156157
booktitle={Findings},
157158
year={2020},
158-
url={https://api.semanticscholar.org/CorpusID:221878771}
159+
url={https://api.semanticscholar.org/CorpusID:221878771},
160+
doi={10.18653/v1/2020.findings-emnlp.301}
159161
}
160162

161163

@@ -406,7 +408,9 @@ @article{DBLP:journals/corr/abs-1907-04135
406408
eprint = {1907.04135},
407409
timestamp = {Wed, 17 Jul 2019 10:27:36 +0200},
408410
biburl = {https://dblp.org/rec/journals/corr/abs-1907-04135.bib},
409-
bibsource = {dblp computer science bibliography, https://dblp.org}
411+
bibsource = {dblp computer science bibliography, https://dblp.org},
412+
doi = {
413+
https://doi.org/10.1109/TVCG.2019.2934619}
410414
}
411415

412416

@@ -515,6 +519,7 @@ @misc{huang2020reducingsentimentbiaslanguage
515519
archivePrefix={arXiv},
516520
primaryClass={cs.CL},
517521
url={https://arxiv.org/abs/1911.03064},
522+
doi={10.18653/v1/2020.findings-emnlp.7}
518523
}
519524

520525

@@ -541,6 +546,7 @@ @misc{feldman2015certifyingremovingdisparateimpact
541546
archivePrefix={arXiv},
542547
primaryClass={stat.ML},
543548
url={https://arxiv.org/abs/1412.3756},
549+
doi={https://doi.org/10.1145/2783258.2783311}
544550
}
545551

546552

@@ -552,6 +558,7 @@ @misc{goldfarbtarrant2021intrinsicbiasmetricscorrelate
552558
archivePrefix={arXiv},
553559
primaryClass={cs.CL},
554560
url={https://arxiv.org/abs/2012.15859},
561+
doi={10.18653/v1/2021.acl-long.150}
555562
}
556563

557564

paper/paper.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Furthermore, LangFair is designed for real-world LLM-based systems that require
4646

4747

4848
# Generation of Evaluation Datasets
49-
The `langfair.generator` module offers two classes, `ResponseGenerator` and `CounterfactualGenerator`, which aim to enable user-friendly construction of evaluation datasets for text generation use cases.
49+
The `langfair.generator` module offers two classes, `ResponseGenerator` and `Counterfactual`- `Generator`, which aim to enable user-friendly construction of evaluation datasets for text generation use cases.
5050

5151

5252
### `ResponseGenerator` class
@@ -94,10 +94,10 @@ To streamline assessments for text generation use cases, the `AutoEval` class co
9494

9595

9696
```python
97-
from langchain_google_vertexai import VertexAI
97+
from langchain_google_vertexai import ChatVertexAI
9898
from langfair.auto import AutoEval
9999

100-
llm = VertexAI(model_name='gemini-pro')
100+
llm = ChatVertexAI(model_name='gemini-pro')
101101
auto_object = AutoEval(prompts=prompts, langchain_llm=llm)
102102
results = await auto_object.evaluate()
103103
```

0 commit comments

Comments
 (0)