-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5b11451
commit 3766daa
Showing
36 changed files
with
21,990 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Dependencies | ||
/node_modules | ||
|
||
# Production | ||
/build | ||
|
||
# Generated files | ||
.docusaurus | ||
.cache-loader | ||
|
||
# Misc | ||
.DS_Store | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* |
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,33 @@ | ||
# Website | ||
|
||
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator. | ||
|
||
## Installation | ||
|
||
```console | ||
yarn install | ||
``` | ||
|
||
## Local Development | ||
|
||
```console | ||
yarn start | ||
``` | ||
|
||
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server. | ||
|
||
## Build | ||
|
||
```console | ||
yarn build | ||
``` | ||
|
||
This command generates static content into the `build` directory and can be served using any static contents hosting service. | ||
|
||
## Deployment | ||
|
||
```console | ||
GIT_USER=<Your GitHub username> USE_SSH=true yarn deploy | ||
``` | ||
|
||
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch. |
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,3 @@ | ||
module.exports = { | ||
presets: [require.resolve('@docusaurus/core/lib/babel/preset')], | ||
} |
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,4 @@ | ||
{ | ||
"label": "Classic Time Series Models", | ||
"position": 2 | ||
} |
4 changes: 4 additions & 0 deletions
4
website/docs/classic-time-series-models/autoregressive-model.md
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,4 @@ | ||
--- | ||
title: Autoregressive Model (AR) | ||
slug: /autoregressive | ||
--- |
4 changes: 4 additions & 0 deletions
4
website/docs/classic-time-series-models/vector-autoregressive-model.md
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,4 @@ | ||
--- | ||
title: Vector Autoregressive Model (VAR) | ||
slug: /vector | ||
--- |
4 changes: 4 additions & 0 deletions
4
website/docs/deep-sequence-to-sequence-models/Seq2Seq-with-GRU.md
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,4 @@ | ||
--- | ||
title: Seq2Seq with GRU | ||
slug: /seq2seq-GRU | ||
--- |
4 changes: 4 additions & 0 deletions
4
website/docs/deep-sequence-to-sequence-models/Seq2Seq-with-LSTM.md
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,4 @@ | ||
--- | ||
title: Seq2Seq with LSTM | ||
slug: /seq2seq-lstm | ||
--- |
4 changes: 4 additions & 0 deletions
4
website/docs/deep-sequence-to-sequence-models/_category_.json
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,4 @@ | ||
{ | ||
"label": "Deep Sequence to Sequence Models", | ||
"position": 3 | ||
} |
4 changes: 4 additions & 0 deletions
4
website/docs/deepspatiotemporal-sequence-models/Convolutional-LSTM.md
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,4 @@ | ||
--- | ||
title: Convolutional LSTM | ||
slug: /convolutional-lstm | ||
--- |
4 changes: 4 additions & 0 deletions
4
website/docs/deepspatiotemporal-sequence-models/Diffusion-Convolutional-LSTM.md
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,4 @@ | ||
--- | ||
title: Diffusion Convolutional LSTM | ||
slug: /diffusion-convolutional-lstm | ||
--- |
4 changes: 4 additions & 0 deletions
4
website/docs/deepspatiotemporal-sequence-models/_category_.json
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,4 @@ | ||
{ | ||
"label": "Deep Spatiotemporal Sequence Models", | ||
"position": 4 | ||
} |
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,7 @@ | ||
--- | ||
sidebar_position: 1 | ||
title: Introduction | ||
slug: / | ||
--- | ||
|
||
# Introduction |
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,4 @@ | ||
--- | ||
title: AutoODE | ||
slug: /autoode | ||
--- |
4 changes: 4 additions & 0 deletions
4
website/docs/physics-guided-deep-sequence-models/Hybrid-AutoODE.md
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,4 @@ | ||
--- | ||
title: Hybrid AutoODE | ||
slug: /hybrid-autoode | ||
--- |
4 changes: 4 additions & 0 deletions
4
website/docs/physics-guided-deep-sequence-models/_category_.json
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,4 @@ | ||
{ | ||
"label": "Physics-Guided Deep Sequence Models", | ||
"position": 5 | ||
} |
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,134 @@ | ||
const lightCodeTheme = require("prism-react-renderer/themes/github"); | ||
const darkCodeTheme = require("prism-react-renderer/themes/dracula"); | ||
|
||
/** @type {import('@docusaurus/types').DocusaurusConfig} */ | ||
module.exports = { | ||
title: "TorchTS", | ||
tagline: "Time series forecasting with PyTorch", | ||
url: "https://rose-stl-lab.github.io", | ||
baseUrl: "/", | ||
onBrokenLinks: "throw", | ||
onBrokenMarkdownLinks: "warn", | ||
favicon: "img/logo2.png", | ||
scripts: [ | ||
"https://buttons.github.io/buttons.js", | ||
"https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js", | ||
], | ||
stylesheets: [ | ||
"https://fonts.googleapis.com/css?family=IBM+Plex+Mono:500,700|Source+Code+Pro:500,700|Source+Sans+Pro:400,400i,700", | ||
], | ||
|
||
organizationName: "Rose-STL-Lab", // Usually your GitHub org/user name. | ||
projectName: "torchTS", // Usually your repo name. | ||
themeConfig: { | ||
// colorMode: { | ||
// defaultMode: "light", | ||
// disableSwitch: true, | ||
// }, | ||
navbar: { | ||
title: "TorchTS", | ||
logo: { | ||
alt: "My Site Logo", | ||
src: "img/logo2.png", | ||
}, | ||
items: [ | ||
{ | ||
type: "doc", | ||
docId: "intro", | ||
position: "left", | ||
label: "Docs", | ||
}, | ||
{ | ||
href: "https://github.com/Rose-STL-Lab/torchts", | ||
label: "GitHub", | ||
position: "right", | ||
}, | ||
], | ||
}, | ||
footer: { | ||
links: [ | ||
{ | ||
title: "Docs", | ||
items: [ | ||
{ | ||
label: "Getting Started", | ||
to: "docs", | ||
}, | ||
// { | ||
// label: 'Tutorials', | ||
// to: '/tutorials', | ||
// }, | ||
// { | ||
// label: 'API', | ||
// to: '/api', | ||
// }, | ||
], | ||
}, | ||
{ | ||
title: "Community", | ||
items: [ | ||
{ | ||
label: "Slack", | ||
href: "https://github.com/Rose-Stl-Lab/torchTS", | ||
}, | ||
{ | ||
label: "Discord", | ||
href: "https://github.com/Rose-Stl-Lab/torchTS", | ||
}, | ||
], | ||
}, | ||
{ | ||
title: "More", | ||
items: [ | ||
{ | ||
html: ` | ||
<a target="_blank" rel="noreferrer noopener" class="github-button" | ||
href="https://github.com/Rose-stl-lab/torchts" | ||
data-icon="octicon-star" | ||
data-count-href="/Rose-stl-lab/torchts/stargazers" | ||
data-show-count="true" | ||
data-count-aria-label="# stargazers on GitHub" | ||
aria-label="Star this project on GitHub">Star</a> | ||
`, | ||
}, | ||
{ | ||
label: "GitHub", | ||
href: "https://github.com/Rose-stl-lab/torchts", | ||
}, | ||
{ | ||
label: "Edit Docs on GitHub", | ||
href: "https://github.com/Rose-stl-lab/torchts/", | ||
}, | ||
], | ||
}, | ||
], | ||
copyright: `Copyright © ${new Date().getFullYear()} TorchTS Team`, | ||
logo: { | ||
src: "img/octopus-128x128.png", | ||
}, | ||
}, | ||
prism: { | ||
theme: lightCodeTheme, | ||
darkTheme: darkCodeTheme, | ||
}, | ||
fonts: { | ||
fontMain: ["Source Sans Pro", "sans-serif"], | ||
fontCode: ["IBM Plex Mono", "monospace"], | ||
}, | ||
}, | ||
presets: [ | ||
[ | ||
"@docusaurus/preset-classic", | ||
{ | ||
docs: { | ||
sidebarPath: require.resolve("./sidebars.js"), | ||
// Please change this to your repo. | ||
editUrl: "https://github.com/Rose-STL-Lab/torchTS/edit/main/website/", | ||
}, | ||
theme: { | ||
customCss: require.resolve("./src/css/custom.css"), | ||
}, | ||
}, | ||
], | ||
], | ||
}; |
Oops, something went wrong.