Add `CITATION.cff` (#9139)

Co-authored-by: Jirka Borovec <Borda@users.noreply.github.com>
This commit is contained in:
Carlos Mocholí 2021-09-07 02:58:20 +02:00 committed by GitHub
parent 392c577825
commit 54e95d3e28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 21 deletions

18
CITATION.cff Normal file
View File

@ -0,0 +1,18 @@
cff-version: 1.2.0
message: "If you want to cite the framework, feel free to use this (but only if you loved it 😊)"
title: "PyTorch Lightning"
abstract: "The lightweight PyTorch wrapper for high-performance AI research. Scale your models, not the boilerplate."
date-released: 2019-03-30
authors:
- family-names: "William"
given-names: "Falcon"
- name: "The PyTorch Lightning team"
version: 1.4
doi: 10.5281/zenodo.3828935
license: "Apache-2.0"
url: "https://www.pytorchlightning.ai"
repository-code: "https://github.com/PyTorchLightning/pytorch-lightning"
keywords:
- machine learning
- deep learning
- artificial intelligence

View File

@ -23,6 +23,9 @@ include *.md
# Include the license file
include LICENSE
# Include the citation info
include *.cff
exclude *.sh
exclude *.svg
recursive-include pytorch_lightning *.py

View File

@ -429,24 +429,3 @@ grid train --grid_gpus 4 my_model.py --learning_rate 'uniform(1e-6, 1e-1, 20)' -
The above command will launch (20 * 4) experiments each running on 4 GPUs (320 GPUs!) - by making ZERO changes to
your code.
______________________________________________________________________
## Licence
Please observe the Apache 2.0 license that is listed in this repository.
In addition, the Lightning framework is Patent Pending.
## BibTeX
If you want to cite the framework feel free to use this (but only if you loved it 😊) or [zenodo](https://zenodo.org/record/3828935#.YC45Lc9Khqs):
```bibtex
@article{falcon2019pytorch,
title={PyTorch Lightning},
author={Falcon, WA, et al.},
journal={GitHub. Note: https://github.com/PyTorchLightning/pytorch-lightning},
volume={3},
year={2019}
}
```