SiddharthAK commited on
Commit
83bb0e4
·
verified ·
1 Parent(s): a80190d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
app.py CHANGED
@@ -584,15 +584,17 @@ with gr.Blocks(title="SPLADE Demos", css=css) as demo:
584
  allow_flagging="never"
585
  )
586
 
587
- # --- MODIFIED CITATION BLOCK ---
588
  gr.Markdown(
589
  """
590
  ---
591
  ### References
592
 
593
- 1. Lassance, C., Déjean, H., Formal, T., & Clinchant, S. (2024). **SPLADE-v3: New baselines for SPLADE**. *arXiv preprint arXiv:2403.06789*. Available at: [https://arxiv.org/abs/2403.06789](https://arxiv.org/abs/2403.06789)
594
 
595
- 2. (Placeholder for your second reference) Example Author, B. (Year). **Title of Second Paper**. *Journal/Conference Name, Volume*(Issue), Pages. Available at: [https://example.com/second_paper](https://example.com/second_paper)
 
 
596
  """
597
  )
598
 
 
584
  allow_flagging="never"
585
  )
586
 
587
+ # --- UPDATED CITATION BLOCK WITH TWO REFERENCES ---
588
  gr.Markdown(
589
  """
590
  ---
591
  ### References
592
 
593
+ This demo utilizes **SPLADE** models. For more details, please refer to the following papers:
594
 
595
+ 1. Formal, T., Lassance, C., Piwowarski, B., & Clinchant, S. (2022). **From Distillation to Hard Negative Sampling: Making Sparse Neural IR Models More Effective**. *arXiv preprint arXiv:2205.04733*. Available at: [https://arxiv.org/abs/2205.04733](https://arxiv.org/abs/2205.04733)
596
+
597
+ 2. Lassance, C., Déjean, H., Formal, T., & Clinchant, S. (2024). **SPLADE-v3: New baselines for SPLADE**. *arXiv preprint arXiv:2403.06789*. Available at: [https://arxiv.org/abs/2403.06789](https://arxiv.org/abs/2403.06789)
598
  """
599
  )
600