Skip to content

Commit 5751f51

Browse files
author
DEKHTIARJonathan
committed
Setup Refactoring Executed
Signed-off-by: DEKHTIARJonathan <contact@jonathandekhtiar.eu>
1 parent b986859 commit 5751f51

File tree

202 files changed

+927
-1335
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

202 files changed

+927
-1335
lines changed

CHANGELOG.md

Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/)
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
<!--
9+
10+
============== Guiding Principles ==============
11+
12+
* Changelogs are for humans, not machines.
13+
* There should be an entry for every single version.
14+
* The same types of changes should be grouped.
15+
* Versions and sections should be linkable.
16+
* The latest version comes first.
17+
* The release date of each version is displayed.
18+
* Mention whether you follow Semantic Versioning.
19+
20+
============== Types of changes (keep the order) ==============
21+
22+
* `Added` for new features.
23+
* `Changed` for changes in existing functionality.
24+
* `Deprecated` for soon-to-be removed features.
25+
* `Removed` for now removed features.
26+
* `Fixed` for any bug fixes.
27+
* `Security` in case of vulnerabilities.
28+
* `Dependencies Update` in case of vulnerabilities.
29+
* `Contributors` to thank the contributors that worked on this PR.
30+
31+
============== How To Update The Changelog for a New Release ==============
32+
33+
** Always Keep The Unreleased On Top **
34+
35+
To release a new version, please update the changelog as followed:
36+
1. Rename the `Unreleased` Section to the Section Number
37+
2. Recreate an `Unreleased` Section on top
38+
3. Update the links at the very bottom
39+
40+
======================= START: TEMPLATE TO KEEP IN CASE OF NEED ===================
41+
42+
** DO NOT MODIFY THIS SECTION ! **
43+
44+
## [Unreleased]
45+
46+
### Added
47+
48+
### Changed
49+
50+
### Dependencies Update
51+
52+
### Deprecated
53+
54+
### Fixed
55+
56+
### Removed
57+
58+
### Security
59+
60+
### Contributors
61+
62+
** DO NOT MODIFY THIS SECTION ! **
63+
64+
======================= END: TEMPLATE TO KEEP IN CASE OF NEED ===================
65+
66+
-->
67+
68+
<!-- YOU CAN EDIT FROM HERE -->
69+
70+
## [Unreleased]
71+
72+
### Added
73+
74+
### Changed
75+
- Additional Collections Repositories merged into core `nemo_toolkit` package (PR #289) - @DEKHTIARJonathan
76+
77+
### Dependencies Update
78+
79+
### Deprecated
80+
81+
### Fixed
82+
83+
### Removed
84+
85+
### Security
86+
87+
### Contributors
88+
89+
## [0.9.0] - 2019-12-16
90+
91+
This release contains new features, new models and quality improvements for NeMo.
92+
93+
### Highlights
94+
95+
* Added "nemo_tts" - a Speech Synthesis collection with necessary modules for Tacotron2 and WaveGlow
96+
* Added Mandarin support into nemo_asr and nemo_nlp
97+
* Updated ASR and TTS checkpoints including Mandarin ASR
98+
* Documentation now translated to Mandarin https://nvidia.github.io/NeMo/chinese/intro.html
99+
* Export functionality for deployment
100+
* General improvements and bug-fixes
101+
102+
## [0.8.2] - 2019-11-14
103+
104+
This is a quality improvement release for NeMo.
105+
106+
### Highlights
107+
108+
* Bugfixes
109+
* Support for Pytorch 1.3
110+
111+
## [0.8.1] - 2019-12-16
112+
113+
This is a quality improvement release for NeMo.
114+
115+
### Highlights
116+
117+
* Added introductory ASR tutorial explaining how to get started with deep learning for ASR
118+
* Re-organization of NeMo NLP library
119+
* More efficient BERT pre-training implementation
120+
* General improvements and bugfixes
121+
* Support for CPU-only scenario
122+
123+
### Special thanks to our external contributors
124+
- David Pollack @dhpollack
125+
- Harisankar Haridas @harisankarh
126+
- Dilshod Tadjibaev @antimora
127+
128+
## [0.8.0] - 2019-12-16
129+
130+
The first public release of NVIDIA Neural Modules: NeMo.
131+
132+
This release also includes nemo_asr'' and nemo_nlp'' collections for Speech Recognition and Natural Language Processing.
133+
134+
Please refer to the documentation here: https://nvidia.github.io/NeMo/
135+
136+
[Unreleased]: https://github.com/NVIDIA/NeMo/compare/v0.9.0...master
137+
[0.9.0]: https://github.com/NVIDIA/NeMo/compare/v0.8.2...v0.9.0
138+
[0.8.2]: https://github.com/NVIDIA/NeMo/compare/v0.8.1...v0.8.2
139+
[0.8.1]: https://github.com/NVIDIA/NeMo/compare/r0.8...v0.8.1
140+
[0.8.0]: https://github.com/NVIDIA/NeMo/tree/r0.8

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN git clone -n https://github.com/onnx/onnx-tensorrt.git && cd onnx-tensorrt &
3030

3131
WORKDIR /workspace/nemo
3232

33-
COPY requirements.txt .
33+
COPY requirements/requirements_docker.txt requirements.txt
3434
RUN pip install --disable-pip-version-check -U -r requirements.txt
3535

3636
COPY . .
File renamed without changes.

collections/nemo_asr/LICENSE

Lines changed: 0 additions & 201 deletions
This file was deleted.

collections/nemo_asr/setup.py

Lines changed: 0 additions & 35 deletions
This file was deleted.

0 commit comments

Comments
 (0)