Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yeliudev committed Oct 22, 2020
1 parent aeeff9d commit 61d13a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@

</div>

NNCore is a core library that provides common functionalities for Machine Learning and Deep Learning researchers. This project aims at helping people focus more on science but not engineering during researches. The essential functionalities include but are not limited to:
NNCore is a library that provides common functionalities for Machine Learning and Deep Learning researchers. This project aims at helping users focus more on science but not engineering during researches. The essential functionalities include but are not limited to:

* Universal I/O APIs
* Efficient implementations of layers and losses that are not included in PyTorch
* Extended methods for distributed trainings
* Extended methods for distributed training
* More powerful data loading techniques
* An engine that can take over the whole training and testing process, with all the baby-sitting works (stage control, optimizer configuration, lr scheduling, checkpoint management, metrics & tensorboard writing, etc.) done automatically. See an [example](https://github.com/yeliudev/nncore/blob/master/examples/mnist.py) for details.

Note that some methods in the library work with PyTorch 1.3+, but the installation of PyTorch is not necessary.
Note that some methods in the library work with PyTorch 1.4+, but the installation of PyTorch is not necessary.

## Continuous Integration

Expand Down
2 changes: 1 addition & 1 deletion examples/mnist.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def forward(self, data, **kwargs):


def main():
# Load config from files
# Load config from file
cfg = nncore.Config.from_file('examples/config.py')
cfg.freeze()

Expand Down

0 comments on commit 61d13a3

Please sign in to comment.