0

I am trying to build an AutoEncoder, where I am trying to de-noise the signal.

Now, for example, the amplitude range of my input signal varies in between -47 to +32. But while I am getting the decoded signal (reconstructed one), that signal only ranges in between 0 to +1 amplitude.

How can I get my reconstructed signal with the same amplitude range of -47 to +32?

1
  • 1
    You can just scale the output, like output * (32 - (-47)) + (-47) Commented Nov 2, 2018 at 13:29

1 Answer 1

2

I guess the question is whether your returned signal is a faithful representation of the input signal (but it's just constrained to the range 0 to 1)?

If so, you could simply multiply it by 79, and then subtract 47.

We'd need to see code if it's more than just a scaling issue.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.