yuqinie98 / PatchTST

An offical implementation of PatchTST: "A Time Series is Worth 64 Words: Long-term Forecasting with Transformers." (ICLR 2023) https://arxiv.org/abs/2211.14730
Apache License 2.0
1.51k stars 262 forks source link

Add gitignore and CRLF attributes. #51

Closed xkszltl closed 1 year ago

xkszltl commented 1 year ago
yuqinie98 commented 1 year ago

Hi! Thanks very much for pulling. Is this related to any specific concern that has been raised or you have?

xkszltl commented 1 year ago

Yes, gitignore is a basic git practice for every repo because tmp file from editor/os/runtime should never be tracked by git. If we submodule this repo, without gitignore the repo will be marked as dirty once we run anything from it, because python would create __pycache__ dirs inside.

xkszltl commented 1 year ago

The CRLF part is also a standard git practice across platforms. Windows client may set it somewhere else during installation, but that depends.

yuqinie98 commented 1 year ago

Thanks very much! I will merge it now.