Skip to content

Commit

Permalink
Deploying to gh-pages from @ 2b63a95 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
Honry committed Jul 29, 2024
1 parent 76a2428 commit 172d1bc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rnnoise/rnnoise.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class RNNoise {
initialHiddenState: vadGruInitialH,
returnSequence: true,
resetAfter: false,
activations: [this.builder_.sigmoid(), this.builder_.relu()],
activations: ['sigmoid', 'relu'],
});
const vadGruYTransposed = this.builder_.transpose(
vadGruY, {permutation: [2, 0, 1, 3]});
Expand All @@ -104,7 +104,7 @@ export class RNNoise {
initialHiddenState: noiseGruInitialH,
returnSequence: true,
resetAfter: false,
activations: [this.builder_.sigmoid(), this.builder_.relu()],
activations: ['sigmoid', 'relu'],
});
const noiseGruYTransposed = this.builder_.transpose(
noiseGruY, {permutation: [2, 0, 1, 3]});
Expand All @@ -131,7 +131,7 @@ export class RNNoise {
initialHiddenState: denoiseGruInitialH,
returnSequence: true,
resetAfter: false,
activations: [this.builder_.sigmoid(), this.builder_.relu()],
activations: ['sigmoid', 'relu'],
});
const denoiseGruYTransposed = this.builder_.transpose(
denoiseGruY, {permutation: [2, 0, 1, 3]});
Expand Down

0 comments on commit 172d1bc

Please sign in to comment.