Spaces:
Running
Running
Ahmad Shallouf
commited on
Commit
•
3a89ad3
1
Parent(s):
27e40c0
updated some conditions
Browse files
.DS_Store
CHANGED
Binary files a/.DS_Store and b/.DS_Store differ
|
|
src/.DS_Store
CHANGED
Binary files a/src/.DS_Store and b/src/.DS_Store differ
|
|
src/app/.DS_Store
CHANGED
Binary files a/src/app/.DS_Store and b/src/app/.DS_Store differ
|
|
src/app/components/.DS_Store
CHANGED
Binary files a/src/app/components/.DS_Store and b/src/app/components/.DS_Store differ
|
|
src/app/components/body/.DS_Store
CHANGED
Binary files a/src/app/components/body/.DS_Store and b/src/app/components/body/.DS_Store differ
|
|
src/app/components/body/body.component.html
CHANGED
@@ -35,7 +35,7 @@
|
|
35 |
introduced in the paper
|
36 |
<a href="https://aclanthology.org/2024.lrec-main.238">"CAM 2.0: End-to-End Open Domain Comparative Question
|
37 |
Answering System"</a>
|
38 |
-
by our team
|
39 |
<a href="https://lrec-coling-2024.org">LREC-Coling 2024</a>.
|
40 |
</p>
|
41 |
<div class="section-content">
|
|
|
35 |
introduced in the paper
|
36 |
<a href="https://aclanthology.org/2024.lrec-main.238">"CAM 2.0: End-to-End Open Domain Comparative Question
|
37 |
Answering System"</a>
|
38 |
+
by our team which was presented at
|
39 |
<a href="https://lrec-coling-2024.org">LREC-Coling 2024</a>.
|
40 |
</p>
|
41 |
<div class="section-content">
|
src/app/components/body/datasets/dataset/dataset.component.html
CHANGED
@@ -4,15 +4,15 @@
|
|
4 |
<h2 style="margin-top: 15px">{{ datasetModel.name }} ({{ datasetModel.task }})</h2>
|
5 |
</mat-panel-title>
|
6 |
</mat-expansion-panel-header>
|
|
|
7 |
<p>{{ datasetModel.description }}</p>
|
8 |
-
|
|
|
9 |
This dataset was introduced in the following paper:
|
10 |
<a href="{{datasetModel.paper_link}}" target="_blank">{{ datasetModel.paper }}</a>
|
11 |
</p>
|
12 |
|
13 |
-
<button mat-raised-button (click)="goToUrl(datasetModel.link)" style="width: 99%; margin: 0.5%">Link to the
|
14 |
-
Dataset
|
15 |
-
</button>
|
16 |
|
17 |
<!-- Training Data Button -->
|
18 |
<button *ngIf="datasetModel.train"
|
|
|
4 |
<h2 style="margin-top: 15px">{{ datasetModel.name }} ({{ datasetModel.task }})</h2>
|
5 |
</mat-panel-title>
|
6 |
</mat-expansion-panel-header>
|
7 |
+
|
8 |
<p>{{ datasetModel.description }}</p>
|
9 |
+
|
10 |
+
<p *ngIf="datasetModel.paper_link">
|
11 |
This dataset was introduced in the following paper:
|
12 |
<a href="{{datasetModel.paper_link}}" target="_blank">{{ datasetModel.paper }}</a>
|
13 |
</p>
|
14 |
|
15 |
+
<button *ngIf="datasetModel.link" mat-raised-button (click)="goToUrl(datasetModel.link)" style="width: 99%; margin: 0.5%">Link to the Dataset </button>
|
|
|
|
|
16 |
|
17 |
<!-- Training Data Button -->
|
18 |
<button *ngIf="datasetModel.train"
|