forked from arXiv/arxiv-browse
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds test for html sourced paper, arxivce-1356
Uses newer arxiv-base
- Loading branch information
Showing
10 changed files
with
122 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
------------------------------------------------------------------------------ | ||
\\ | ||
arXiv:2403.10561 | ||
From: Dimitris Spathis <example@example.com> | ||
Date: Thu, 14 Mar 2024 08:46:07 GMT (1kb,H) | ||
|
||
Title: A collection of the accepted papers for the Human-Centric Representation | ||
Learning workshop at AAAI 2024 | ||
Authors: Dimitris Spathis, Aaqib Saeed, Ali Etemad, Sana Tonekaboni, Stefanos | ||
Laskaridis, Shohreh Deldari, Chi Ian Tang, Patrick Schwab, Shyam Tailor | ||
Categories: cs.LG cs.AI | ||
License: http://creativecommons.org/licenses/by-nc-nd/4.0/ | ||
\\ | ||
This non-archival index is not complete, as some accepted papers chose to | ||
opt-out of inclusion. The list of all accepted papers is available on the | ||
workshop website. | ||
\\ |
Binary file not shown.
43 changes: 43 additions & 0 deletions
43
tests/data/abs_files/ps_cache/arxiv/html/2403/2403.10561v1/2403.10561.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<html> | ||
<head> | ||
<title>Human-Centric Representation Learning workshop at AAAI 2024</title> | ||
</head> | ||
|
||
<body> | ||
<h1>A collection of the accepted papers for the Human-Centric Representation Learning workshop at AAAI 2024</h1> | ||
|
||
|
||
Editors: Dimitris Spathis, Aaqib Saeed, Ali Etemad, Sana Tonekaboni, Stefanos Laskaridis, Shohreh Deldari, Chi Ian Tang, Patrick Schwab, Shyam Tailor<br /> | ||
|
||
<p>This non-archival index is not complete, as some accepted papers chose to opt-out of inclusion. The list of all accepted papers is available on the <a href="https://hcrl-workshop.github.io/2024/papers">workshop website</a>.</p> | ||
|
||
<!-- LaFFi: Leveraging Hybrid Natural Language Feedback for Fine-tuning Language Models --> | ||
LIST:arXiv:2401.00907 | ||
|
||
<!-- Evaluating Fairness in Self-supervised and Supervised Models for Sequential Data --> | ||
LIST:arXiv:2401.01640 | ||
|
||
<!-- Advancing Ante Hoc Explainable Models through Generative Adversarial Networks --> | ||
LIST:arXiv:2401.04647 | ||
|
||
<!-- H2G2-Net: A Hierarchical Heterogeneous Graph Generative Network Framework for Discovery of Multi-Modal Physiological Responses --> | ||
LIST:arXiv:2401.02905 | ||
|
||
<!-- Improving Activation Steering in Language Models with Mean-Centring --> | ||
LIST:arXiv:2312.03813 | ||
|
||
<!-- Learning Human-like Representations to Enable Learning Human Values --> | ||
LIST:arXiv:2312.14106 | ||
|
||
<!-- Semi-Supervised Graph Representation Learning with Human-centric Explanation for Predicting Fatty Liver Disease --> | ||
LIST:arXiv:2403.02786 | ||
|
||
<!-- Representation Learning for Wearable-Based Applications in the Case of Missing Data --> | ||
LIST:arXiv:2401.05437 | ||
|
||
<!-- Balancing Continual Learning and Fine-tuning for Human Activity Recognition --> | ||
LIST:arXiv:2401.02255 | ||
|
||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
def test_html_paper(client_with_test_fs): | ||
"""Test a paper with html source.""" | ||
resp = client_with_test_fs.head("/abs/2403.10561") | ||
assert resp.status_code == 200 | ||
|
||
resp = client_with_test_fs.get("/html/2403.10561/shouldnotexist.html") | ||
assert resp.status_code == 404 | ||
|
||
resp = client_with_test_fs.get("/html/2403.10561") | ||
assert resp.status_code == 200 | ||
assert "Human-Centric" in resp.data.decode() |