Skip to content

Commit 90e596e

Browse files
dyuliudzinemon
andauthored
Update (#1)
* round 2 update starts * add code examples * header * research * team * open source * sponsors * update open source data file * allow pointer events on map * analyze * AID section update * open source Co-authored-by: Andrii S <[email protected]>
1 parent 3edf6cd commit 90e596e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1650
-324
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ bootstrap-vars.scss
33
/_site
44
.DS_Store
55
vendor/
6+
*.lock

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"cSpell.enabled": false
3+
}

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,6 @@ This is the home page for the sintel project at MIT.
2323
* **For Development** Run `gulp` to bundle assets (js/styles) and generate website into *_site* folder
2424
* **For Editing** should be using `bundle exec jekyll serve` to run server or *Option with force livereload browser `bundle exec jekyll serve --livereload`*
2525

26-
*Dev Note:* Check gulpfile.js for automated tasks, like `gulp purgecss` to update critical css
26+
*Dev Note:*
27+
- Check gulpfile.js for automated tasks, like `gulp purgecss` to update critical css
28+
- For local development, change url to localhost in `_config.yml`

_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ description: > # this means to ignore newlines until "baseurl:"
77
# baseurl: # the subpath of your site, e.g. /blog/
88
# sintel-dev.github.io
99

10-
url: "https://sintel-dev.github.io" # the base hostname & protocol for your site
11-
# url: "http://localhost:3000" # the base hostname & protocol for your site
10+
# url: "https://sintel-dev.github.io" # the base hostname & protocol for your site
11+
url: "http://localhost:3000" # the base hostname & protocol for your site
1212
# url: "https://sintel.dev" # the base hostname & protocol for your site
1313
twitter_username: jekyllrb
1414
github_username: jekyll

_data/design-team.yaml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +0,0 @@
1-
- name: SERGIU OJOC
2-
image: sergiu.png
3-
title: Frontend Developer
4-
info: DAI Lab, MIT
5-
- name: IULIA IONESCU
6-
image: iulia.png
7-
title: UI/UX Designer
8-
info: DAI Lab, MIT
9-
- name: ARASH AKHGARI
10-
image: arash.jpg
11-
title: Animator & Graphic Designer
12-
info: DAI Lab, MIT

_data/navigation.yml

Lines changed: 3 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,5 @@
11
items:
2-
- title: Libraries
3-
dropBar: libraries
4-
url:
5-
subItems: true
6-
isDropdown: true
7-
info_text:
8-
info_url:
9-
heading: Core Libraries
10-
items:
11-
- title: SigPro
12-
slug: sintel-dev/SigPro
13-
subtitle: Featurize time series with domain knowledge encoded for machine learning uses.
14-
image: /images/tabs/img/Sintel-interface-01.png
15-
icon: /images/tabs/sigpro.svg
16-
- title: Pyteller
17-
slug: sintel-dev/sintel
18-
subtitle: Forecast time series data with user-friendly APIs.
19-
image: /images/tabs/img/Sintel-interface-02.png
20-
icon: /images/tabs/pyteller.svg
21-
- title: ORION
22-
slug: sintel-dev/Orion
23-
subtitle: Detect time series anomalies (rare patterns) intelligently and flag them for expert review.
24-
image: /images/tabs/img/Sintel-interface-03.png
25-
icon: /images/tabs/orion.svg
26-
- title: MTV
27-
slug: sintel-dev/MTV
28-
subtitle: Contains a suite of visualization components to support human-in-the-loop analysis workflow.
29-
image: /images/tabs/img/Sintel-interface-04.png
30-
icon: /images/tabs/mtv.svg
31-
32-
- title: Developers
33-
isDropdown: true
34-
dropBar: resources
35-
subItems: true
36-
column_one:
37-
heading: Developer tools
38-
items:
39-
- title: Sintel Rest API
40-
icon: /images/nav/API-Icon.svg
41-
url: "#"
42-
- title: Python Client
43-
icon: /images/nav/Client-Icon.svg
44-
url: "#"
45-
- title: Documentation
46-
icon: /images/nav/Doc-Icon.svg
47-
url: "#"
48-
column_two:
49-
heading: Use Cases
50-
items:
51-
- title: Spacecraft
52-
subtitle: Monitor spacecraft telemetry and solve an unsupervised time series anomaly detection problem.
53-
image: /images/nav/SpaceCraft-Icon.svg
54-
cta_text: Read the post
55-
url: "https://ieeexplore.ieee.org/abstract/document/9552849"
56-
- title: Wind Turbine
57-
subtitle: Monitor wind energy production systems and solve a time series classification problem.
58-
image: /images/nav/WindTurbine-Icon.svg
59-
cta_text: Read the post
60-
url: "https://ieeexplore.ieee.org/abstract/document/9555810"
61-
- title: Water
62-
subtitle: Monitor water distribution and delivery networks and address time series classification and regression problems.
63-
image: /images/nav/Water-Icon.svg
64-
cta_text: Read the post
65-
url: "https://ieeexplore.ieee.org/abstract/document/9555810"
66-
info_text: "https://github.com/signals-dev"
67-
info_url: "https://github.com/signals-dev"
68-
- title: Publications
69-
url: "#publications"
70-
- title: Team
71-
url: "#team"
2+
- title: GitHub
3+
url: "https://github.com/sintel-dev"
724
- title: Blog
73-
url: "https://medium.com/@dailabmit"
74-
- title: Contact
75-
url: "#contact"
76-
5+
url: "https://medium.com/@dailabmit"

_data/open-sources-libs.yml

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
- Library_name: Orion
2+
badge_name: Orion
3+
image_name: Orion
4+
Github_Link: "https://github.com/sintel-dev/Orion"
5+
github_owner: "sintel-dev"
6+
github_repo: "Orion"
7+
Theme: ML Task
8+
Text_in_it: "Identifies anomalous time series segments."
9+
website: https://signals-dev.github.io/Orion/
10+
Stackoverflow: ''
11+
slack_link: ''
12+
docs_link: "https://sintel.dev/Orion/"
13+
14+
- Library_name: Draco
15+
badge_name: Draco
16+
image_name: Draco
17+
Github_Link: "https://github.com/sintel-dev/Draco"
18+
github_owner: "sintel-dev"
19+
github_repo: "Draco"
20+
Theme: ML Tasks
21+
Text_in_it: "Classifies time series segments into particular categories."
22+
website: https://github.com/sintel-dev/Draco
23+
Stackoverflow: ''
24+
slack_link: ''
25+
docs_link: "https://sintel.dev/Draco/"
26+
27+
- Library_name: pyteller
28+
badge_name: pyteller
29+
image_name: pyteller
30+
Github_Link: "https://github.com/sintel-dev/pyteller"
31+
github_owner: "sintel-dev"
32+
github_repo: "pyteller"
33+
Theme: ML Tasks
34+
Text_in_it: "Predicts future values by analyzing past trends."
35+
website: https://github.com/sintel-dev/pyteller
36+
Stackoverflow: ''
37+
slack_link: ''
38+
docs_link: ''
39+
40+
- Library_name: ml-stars
41+
badge_name: ml-stars
42+
image_name: ml-stars
43+
Github_Link: "https://github.com/sintel-dev/ml-stars"
44+
github_owner: "sintel-dev"
45+
github_repo: "ml-stars"
46+
Theme: ML Tasks, Benchmarking
47+
Text_in_it: "Stores a collection of pipelines that will be used by Orion, Draco, and Pyteller."
48+
website: https://github.com/sintel-dev/ml-stars
49+
Stackoverflow:
50+
slack_link: ''
51+
docs_link: ""
52+
53+
- Library_name: TSGym
54+
badge_name: TSGym
55+
image_name: TSGym
56+
Github_Link: "https://github.com/sintel-dev/TSGym"
57+
github_owner: "sintel-dev"
58+
github_repo: "TSGym"
59+
Theme: Benchmarking
60+
Text_in_it: "Benchmarks machine learning models for different tasks."
61+
website: https://github.com/sintel-dev/TSGym
62+
Stackoverflow:
63+
slack_link: ''
64+
docs_link: ""
65+
66+
- Library_name: Sintel
67+
badge_name: Sintel
68+
image_name: Sintel
69+
Github_Link: "https://github.com/sintel-dev/sintel"
70+
github_owner: "sintel-dev"
71+
github_repo: "Sintel"
72+
Theme: User Interactions
73+
Text_in_it: "Enables your team to build human-in-the-loop analytics workflow with predefined RESTFul APIs and MongoDB Schema."
74+
website: https://github.com/sintel-dev/sintel
75+
Stackoverflow:
76+
slack_link: ''
77+
docs_link: "http://mtv.lids.mit.edu:3000/redoc"
78+
79+
- Library_name: MTV
80+
badge_name: MTV
81+
image_name: MTV
82+
Github_Link: "https://github.com/sintel-dev/MTV"
83+
github_owner: "sintel-dev"
84+
github_repo: "sintel"
85+
Theme: User Interactions
86+
Text_in_it: "Integrates a suite of visualization techniques to support complex analytic workflow with human-in-the-loop "
87+
website: https://github.com/sintel-dev/MTV
88+
Stackoverflow:
89+
slack_link: ''
90+
docs_link: ''
91+
92+
- Library_name: gpe
93+
badge_name: gpe
94+
image_name: gpe
95+
Github_Link: "https://github.com/sintel-dev/gpe"
96+
github_owner: "sintel-dev"
97+
github_repo: "gpe"
98+
Theme: Data Labeling
99+
Text_in_it: "Creates labeling functions to search occurrences of specific types of events in the past."
100+
website: https://github.com/sintel-dev/gpe
101+
Stackoverflow:
102+
slack_link: ''
103+
docs_link: ''
104+
105+
- Library_name: SigPro
106+
badge_name: SigPro
107+
image_name: SigPro
108+
Github_Link: "https://github.com/sintel-dev/SigPro"
109+
github_owner: "sintel-dev"
110+
github_repo: "SigPro"
111+
Theme: Signal Processing
112+
Text_in_it: "Featurizes time series with domain knowledge encoded for machine learning uses."
113+
website: https://sintel.dev
114+
Stackoverflow:
115+
slack_link: ''
116+
docs_link: ''

_data/publications.yaml

Lines changed: 53 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,64 @@
11
- title: >-
2-
TadGAN: Time Series Anomaly Detection Using Generative Adversarial Networks
2+
Sintel: A Machine Learning Framework to Extract Insights from Signals
33
subtitle: >-
4-
Alexander Geiger, Dongyu Liu, Sarah Alnegheimish, Alfredo Cuesta-Infante, Kalyan Veeramachaneni
5-
tag: BigData
6-
tag_text: IEEE International Conference on BigData, 2020
7-
download_text: "[pdf] [talk] [code] [media] [blog] [bib]"
8-
image: /images/Publication-Icon.svg
9-
cta_text: GitHub start > 450
10-
cta_url: "https://ieeexplore.ieee.org/abstract/document/9552849"
4+
Sarah Alnegheimish, Dongyu Liu, Carles Sala, Laure Berti-Equille, Kalyan Veeramachaneni
5+
tag: SIGMOD
6+
tag_text: International Conference on Management of Data, 2022
7+
image: /images/publications/sintel.png
8+
links:
9+
- name: "pdf"
10+
url: ""
11+
- name: "talk"
12+
url: ""
13+
- name: "code"
14+
url: ""
15+
- name: "media"
16+
url: ""
17+
- name: "blog"
18+
url: ""
19+
- name: "bib"
20+
url: ""
1121
- title: >-
12-
TadGAN: Time Series Anomaly Detection Using Generative Adversarial Networks
22+
MTV: Visual Analytics for Detecting, Investigating, and Annotating Anomalies in Multivariate Time Series
1323
subtitle: >-
14-
Alexander Geiger, Dongyu Liu, Sarah Alnegheimish, Alfredo Cuesta-Infante, Kalyan Veeramachaneni
15-
tag: BigData
16-
tag_text: IEEE International Conference on BigData, 2020
17-
download_text: "[pdf] [talk] [code] [media] [blog] [bib]"
18-
image: /images/Publication-Icon.svg
19-
cta_text: GitHub start > 450
20-
cta_url: "https://ieeexplore.ieee.org/abstract/document/9552849"
24+
Dongyu Liu, Sarah Alnegheimish, Alexandra Zytek, Kalyan Veeramachaneni
25+
tag: CSCW
26+
tag_text: The ACM Conference on Computer Supported Cooperative Work, 2022
27+
image: /images/publications/mtv.png
28+
links:
29+
- name: "pdf"
30+
url: ""
31+
- name: "talk"
32+
url: ""
33+
- name: "code"
34+
url: ""
35+
- name: "media"
36+
url: ""
37+
- name: "blog"
38+
url: ""
39+
- name: "bib"
40+
url: ""
2141
- title: >-
2242
TadGAN: Time Series Anomaly Detection Using Generative Adversarial Networks
2343
subtitle: >-
2444
Alexander Geiger, Dongyu Liu, Sarah Alnegheimish, Alfredo Cuesta-Infante, Kalyan Veeramachaneni
2545
tag: BigData
2646
tag_text: IEEE International Conference on BigData, 2020
27-
download_text: "[pdf] [talk] [code] [media] [blog] [bib]"
28-
image: /images/Publication-Icon.svg
29-
cta_text: GitHub start > 450
47+
image: /images/publications/tadgan.svg
48+
cta_text: GitHub stars > 450
3049
cta_url: "https://ieeexplore.ieee.org/abstract/document/9552849"
50+
links:
51+
- name: "pdf"
52+
url: ""
53+
- name: "talk"
54+
url: ""
55+
- name: "code"
56+
url: ""
57+
- name: "media"
58+
url: ""
59+
- name: "blog"
60+
url: ""
61+
- name: "bib"
62+
url: ""
63+
64+

_data/rd-team.yaml

Lines changed: 0 additions & 20 deletions
This file was deleted.

_data/sponsors.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
- name: ses
2+
image: images/sponsors/ses.jpeg
3+
url: "https://www.ses.com/"
4+
width: 12rem
5+
- name: iberdrola
6+
image: images/sponsors/iberdrola.png
7+
url: "https://www.iberdrola.com/"
8+
width: 20rem

0 commit comments

Comments
 (0)