Skip to content

Commit b18132d

Browse files
authored
More citations (#673)
* check lexsort * check lexsort * lexsort comment * lexsort comment * fix GPU identification bug * Create README.md * Update README.md * Create README.md * Create README.md * Update README.md * Create README.md * Update README.md * Update README.md * Create README.md * Create README.md * Create README.md
1 parent 1695717 commit b18132d

File tree

8 files changed

+17
-1
lines changed

8 files changed

+17
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ Here is a list of models built on `Qlib`.
283283
- [GBDT based on LightGBM (Guolin Ke, et al. NIPS 2017)](examples/benchmarks/LightGBM/)
284284
- [GBDT based on Catboost (Liudmila Prokhorenkova, et al. NIPS 2018)](examples/benchmarks/CatBoost/)
285285
- [MLP based on pytorch](examples/benchmarks/MLP/)
286-
- [LSTM based on pytorch (Sepp Hochreiter, et al. Neural omputation 1997)](examples/benchmarks/LSTM/)
286+
- [LSTM based on pytorch (Sepp Hochreiter, et al. Neural computation 1997)](examples/benchmarks/LSTM/)
287287
- [GRU based on pytorch (Kyunghyun Cho, et al. 2014)](examples/benchmarks/GRU/)
288288
- [ALSTM based on pytorch (Yao Qin, et al. IJCAI 2017)](examples/benchmarks/ALSTM)
289289
- [GATs based on pytorch (Petar Velickovic, et al. 2017)](examples/benchmarks/GATs/)

examples/benchmarks/GRU/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Gated Recurrent Unit (GRU)
2+
* Paper: [Learning Phrase Representations using RNN Encoder–Decoder for Statistical Machine Translation](https://aclanthology.org/D14-1179.pdf).

examples/benchmarks/LSTM/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Long Short-Term Memory (LSTM)
2+
* Paper: [Long Short-Term Memory](https://direct.mit.edu/neco/article-abstract/9/8/1735/6109/Long-Short-Term-Memory?redirectedFrom=fulltext).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Localformer

examples/benchmarks/MLP/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Multi-Layer Perceptron (MLP)

examples/benchmarks/TCN/README.md

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# TCN
2+
* Code: [https://github.com/locuslab/TCN](https://github.com/locuslab/TCN)
3+
* Paper: [An Empirical Evaluation of Generic Convolutional and Recurrent Networks for Sequence Modeling](https://arxiv.org/abs/1803.01271).
4+

examples/benchmarks/TabNet/README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# TabNet
2+
* Code: [https://github.com/dreamquark-ai/tabnet](https://github.com/dreamquark-ai/tabnet)
3+
* Paper: [TabNet: Attentive Interpretable Tabular Learning](https://arxiv.org/pdf/1908.07442.pdf).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Transformer
2+
* Code: [https://github.com/tensorflow/tensor2tensor](https://github.com/tensorflow/tensor2tensor)
3+
* Paper: [Attention is All you Need](https://proceedings.neurips.cc/paper/2017/file/3f5ee243547dee91fbd053c1c4a845aa-Paper.pdf).

0 commit comments

Comments
 (0)