Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
neural_filters
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
software
neural_filters
Commits
96a6087f
Commit
96a6087f
authored
Mar 22, 2018
by
Francois Marelli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
LogMSELoss
parent
eebe3e0c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
1 deletion
+56
-1
neural_filters/LogMSELoss.py
neural_filters/LogMSELoss.py
+54
-0
neural_filters/__init__.py
neural_filters/__init__.py
+2
-1
No files found.
neural_filters/LogMSELoss.py
0 → 100644
View file @
96a6087f
import
torch
from
torch.nn
import
MSELoss
class
LogMSELoss
(
MSELoss
):
r"""Creates a criterion that measures the logarithmic mean squared error between
`n` elements in the input `x` and target `y`:
:math:`{loss}(x, y) = \
log(
1/n \
sum |x_i - y_i|^
2 + epsilon)`
`x` and `y` arbitrary shapes with a total of `n` elements each.
The sum operation still operates over all the elements, and divides by `n`.
The division by `n` can be avoided if one sets the internal variable
`size_average` to ``False``.
To get a batch of losses, a loss per batch element, set `reduce` to
``False``. These losses are not averaged and are not affected by
`size_average`.
The epsilon is a positive float used to avoid log(0) leading to NaN.
Args:
size_average (bool, optional): By default, the losses are averaged
over observations for each minibatch. However, if the field
size_average is set to ``False``, the losses are instead summed for
each minibatch. Only applies when reduce is ``True``. Default: ``True``
reduce (bool, optional): By default, the losses are averaged
over observations for each minibatch, or summed, depending on
size_average. When reduce is ``False``, returns a loss per batch
element instead and ignores size_average. Default: ``True``
epsilon (float, optional): add a small positive term to the MSE before
taking the log to avoid NaN with log(0). Default: ``0.05``
Shape:
- Input: :math:`(N, *)` where `*` means, any number of additional
dimensions
- Target: :math:`(N, *)`, same shape as the input
Examples::
>>> loss = neural_filters.LogMSELoss()
>>> input = autograd.Variable(torch.randn(3, 5), requires_grad=True)
>>> target = autograd.Variable(torch.randn(3, 5))
>>> output = loss(input, target)
>>> output.backward()
"""
def
__init__
(
self
,
size_average
=
True
,
reduce
=
True
,
epsilon
=
0.05
):
super
(
LogMSELoss
,
self
).
__init__
(
size_average
,
reduce
)
self
.
epsilon
=
epsilon
def
forward
(
self
,
input
,
target
):
loss
=
super
(
LogMSELoss
,
self
).
forward
(
input
,
target
)
return
torch
.
log
(
loss
+
self
.
epsilon
)
\ No newline at end of file
neural_filters/__init__.py
View file @
96a6087f
...
...
@@ -2,4 +2,5 @@ from .NeuralFilterCell import *
from
.NeuralFilter1P
import
*
from
.NeuralFilter2R
import
*
from
.NeuralFilter2CC
import
*
from
.NeuralFilter2CD
import
*
\ No newline at end of file
from
.NeuralFilter2CD
import
*
from
.LogMSELoss
import
*
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment