Skip to content

Commit 94b8e8a

Browse files
committed
ok
1 parent 525564f commit 94b8e8a

File tree

5,378 files changed

+1425868
-0
lines changed

Some content is hidden

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

5,378 files changed

+1425868
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: "[Model/Framework] What is the problem?"
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
Related to **Model/Framework(s)**
11+
*(e.g. GNMT/PyTorch or FasterTransformer/All)*
12+
13+
**Describe the bug**
14+
A clear and concise description of what the bug is.
15+
16+
**To Reproduce**
17+
Steps to reproduce the behavior:
18+
1. Install '...'
19+
2. Set "..."
20+
2. Launch '...'
21+
22+
**Expected behavior**
23+
A clear and concise description of what you expected to happen.
24+
25+
**Environment**
26+
Please provide at least:
27+
* Container version (e.g. pytorch:19.05-py3):
28+
* GPUs in the system: (e.g. 8x Tesla V100-SXM2-16GB):
29+
* CUDA driver version (e.g. 418.67):
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: "[Model/Framework or something else] Feature requested"
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
Related to **Model/Framework(s) or something else (describe)**
11+
12+
*Examples:*
13+
* *GNMT/PyTorch*
14+
* *AMP*
15+
* *Tensorflow 2.0*
16+
* *Jupyter notebooks*
17+
18+
**Is your feature request related to a problem? Please describe.**
19+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
20+
21+
**Describe the solution you'd like**
22+
A clear and concise description of what you want to happen.
23+
24+
**Describe alternatives you've considered**
25+
A clear and concise description of any alternative solutions or features you've considered.
26+
27+
**Additional context**
28+
Add any other context or screenshots about the feature request here.

.github/workflows/cla.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: "DCO Assistant"
2+
on:
3+
issue_comment:
4+
types: [created]
5+
pull_request_target:
6+
types: [opened,closed,synchronize]
7+
8+
permissions:
9+
actions: write
10+
contents: write
11+
pull-requests: write
12+
statuses: write
13+
14+
jobs:
15+
DCOAssistant:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: "DCO Assistant"
19+
if: (github.event.comment.body == 'recheck' || github.event.comment.body == 'I have read the DCO Document and I hereby sign the DCO') || github.event_name == 'pull_request_target'
20+
uses: contributor-assistant/[email protected]
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
with:
24+
path-to-signatures: '.github/dco/signatures.json'
25+
path-to-document: 'https://developercertificate.org/'
26+
branch: 'dco-do-not-remove'
27+
allowlist: user1,bot*
28+
use-dco-flag: true
29+
custom-notsigned-prcomment: '<br/>Thank you for your submission. Before we can accept your contribution, please sign our [Developer Certificate of Origin](https://developercertificate.org) by posting a comment with the content exactly as below.<br/>'

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
repos.cfg
2+
repos_init.cfg
3+
nvtool*

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "PyTorch/SpeechRecognition/Jasper/external/triton-inference-server"]
2+
path = PyTorch/SpeechRecognition/Jasper/external/triton-inference-server
3+
url = https://github.com/NVIDIA/triton-inference-server.git
4+
branch = r19.12
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea
2+
__pycache__
3+
.DS_Store
4+
*.egg-info
5+
.vscode
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
ARG FROM_IMAGE_NAME=nvcr.io/nvidia/pytorch:20.10-py3
2+
FROM ${FROM_IMAGE_NAME}
3+
4+
# ARG UNAME
5+
# ARG UID
6+
# ARG GID
7+
# RUN groupadd -g $GID -o $UNAME
8+
# RUN useradd -m -u $UID -g $GID -o -s /bin/bash $UNAME
9+
# USER $UNAME
10+
11+
ADD . /workspace/fastspeech
12+
WORKDIR /workspace/fastspeech
13+
14+
RUN sh ./scripts/install.sh

CUDA-Optimized/FastSpeech/LICENSE

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved.
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are met:
5+
* Redistributions of source code must retain the above copyright
6+
notice, this list of conditions and the following disclaimer.
7+
* Redistributions in binary form must reproduce the above copyright
8+
notice, this list of conditions and the following disclaimer in the
9+
documentation and/or other materials provided with the distribution.
10+
* Neither the name of the NVIDIA CORPORATION nor the
11+
names of its contributors may be used to endorse or promote products
12+
derived from this software without specific prior written permission.
13+
14+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
15+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
16+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
17+
DISCLAIMED. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY
18+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
19+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
20+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
21+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
23+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include fastspeech/hparams/*.yaml
2+
recursive-include fastspeech/trt/plugins *.so

0 commit comments

Comments
 (0)