Skip to content

Commit db91702

Browse files
authored
fix url bugs in research section (#2)
1 parent 1047a31 commit db91702

File tree

3 files changed

+24
-37
lines changed

3 files changed

+24
-37
lines changed

_data/publications.yaml

Lines changed: 20 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
- title: >-
22
Sintel: A Machine Learning Framework to Extract Insights from Signals
33
subtitle: >-
4-
Sarah Alnegheimish, Dongyu Liu, Carles Sala, Laure Berti-Equille, Kalyan Veeramachaneni
4+
Sarah Alnegheimish, Dongyu Liu, Carles Sala, Laure Berti-Équille, Kalyan Veeramachaneni
55
tag: SIGMOD
6-
tag_text: International Conference on Management of Data, 2022
6+
tag_text: ACM SIGMOD/PODS International Conference on Management of Data, 2022
77
image: /images/publications/sintel.png
88
links:
9-
- name: "pdf"
10-
url: ""
11-
- name: "talk"
12-
url: ""
139
- name: "code"
14-
url: ""
15-
- name: "media"
16-
url: ""
17-
- name: "blog"
18-
url: ""
19-
- name: "bib"
20-
url: ""
10+
url: "https://github.com/sintel-dev"
2111
- title: >-
2212
MTV: Visual Analytics for Detecting, Investigating, and Annotating Anomalies in Multivariate Time Series
2313
subtitle: >-
@@ -27,38 +17,35 @@
2717
image: /images/publications/mtv.png
2818
links:
2919
- name: "pdf"
30-
url: ""
31-
- name: "talk"
32-
url: ""
33-
- name: "code"
34-
url: ""
35-
- name: "media"
36-
url: ""
37-
- name: "blog"
38-
url: ""
20+
url: "https://dl.acm.org/doi/pdf/10.1145/3512950"
3921
- name: "bib"
40-
url: ""
22+
url: "http://dongyu.tech/resource/bib/mtv_2021_cscw.html"
23+
- name: "code"
24+
url: "https://github.com/sintel-dev/MTV"
25+
- name: "video"
26+
url: "https://dai.lids.mit.edu/wp-content/uploads/2022/04/cscw-mtv.mp4"
27+
4128
- title: >-
4229
TadGAN: Time Series Anomaly Detection Using Generative Adversarial Networks
4330
subtitle: >-
4431
Alexander Geiger, Dongyu Liu, Sarah Alnegheimish, Alfredo Cuesta-Infante, Kalyan Veeramachaneni
4532
tag: BigData
4633
tag_text: IEEE International Conference on BigData, 2020
4734
image: /images/publications/tadgan.svg
48-
cta_text: GitHub stars > 450
49-
cta_url: "https://ieeexplore.ieee.org/abstract/document/9552849"
35+
cta_text: GitHub stars > 600
36+
cta_url: "https://github.com/sintel-dev/Orion"
5037
links:
5138
- name: "pdf"
52-
url: ""
39+
url: "http://dongyu.tech/resource/paper/tadgan_2020_ieeebigdata.pdf"
40+
- name: "bib"
41+
url: "http://dongyu.tech/resource/bib/tadgan_2020_ieeebigdata.html"
5342
- name: "talk"
54-
url: ""
43+
url: "https://www.youtube.com/watch?v=jIDj2dhU99k"
5544
- name: "code"
56-
url: ""
57-
- name: "media"
58-
url: ""
45+
url: "https://github.com/sintel-dev/Orion"
46+
- name: "news"
47+
url: "https://news.mit.edu/2020/warning-time-measurements-ai-1217"
5948
- name: "blog"
60-
url: ""
61-
- name: "bib"
62-
url: ""
49+
url: "https://medium.com/mit-data-to-ai-lab/time-series-anomaly-detection-in-the-era-of-deep-learning-f0237902224a"
6350

6451

_data/use-cases.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
- title: Spacecraft
2-
subtitle: Monitor spacecraft telemetry and solve an unsupervised time series anomaly detection problem.
1+
- title: Satellite
2+
subtitle: Monitor satellite telemetry and solve an unsupervised time series anomaly detection problem.
33
image: /images/use-cases/rocket.svg
44
cta_text:
55
cta_url: "https://medium.com/@dailabmit"

_includes/publications.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
<p class=" mb-1">
2424
Download:
2525
{% for link in item.links %}
26-
<a href="{{ link.cta_url }}">[{{ link.name }}]</a>
26+
<a href="{{ link.url }}" target="_blank">[{{ link.name }}]</a>
2727
{% endfor %}
2828
{% if item.cta_url != null and item.cta_text != null%}
2929
| 🏆
30-
<a href="{{ item.cta_url }}" class="text-warning">{{ item.cta_text }}</a>
30+
<a href="{{ item.cta_url }}" target="_blank" class="text-warning">{{ item.cta_text }}</a>
3131
{% endif %}
3232
</p>
3333
</div>

0 commit comments

Comments
 (0)