From aacb2bf640ba8342bb49f3a6c285d00fac523540 Mon Sep 17 00:00:00 2001 From: Francois Fleuret Date: Thu, 19 Dec 2019 13:59:11 +0100 Subject: [PATCH] Added a public domain header to all the sources. --- ae_size.py | 5 +++++ confidence.py | 5 +++++ denoising-ae-field.py | 5 +++++ hallu.py | 5 +++++ lazy_linear.py | 5 +++++ mi_estimator.py | 21 ++++----------------- 6 files changed, 29 insertions(+), 17 deletions(-) diff --git a/ae_size.py b/ae_size.py index 8afb101..067a7fa 100755 --- a/ae_size.py +++ b/ae_size.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Any copyright is dedicated to the Public Domain. +# https://creativecommons.org/publicdomain/zero/1.0/ + +# Written by Francois Fleuret + import math from torch import nn from torch import Tensor diff --git a/confidence.py b/confidence.py index 1be3420..4530fbc 100755 --- a/confidence.py +++ b/confidence.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Any copyright is dedicated to the Public Domain. +# https://creativecommons.org/publicdomain/zero/1.0/ + +# Written by Francois Fleuret + import math import torch, torchvision diff --git a/denoising-ae-field.py b/denoising-ae-field.py index 2aa3648..47e6ab4 100755 --- a/denoising-ae-field.py +++ b/denoising-ae-field.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Any copyright is dedicated to the Public Domain. +# https://creativecommons.org/publicdomain/zero/1.0/ + +# Written by Francois Fleuret + import math import matplotlib.pyplot as plt diff --git a/hallu.py b/hallu.py index 7da66a6..b738b52 100755 --- a/hallu.py +++ b/hallu.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Any copyright is dedicated to the Public Domain. +# https://creativecommons.org/publicdomain/zero/1.0/ + +# Written by Francois Fleuret + # ImageMagick's montage to make the mosaic # # montage hallu-*.png -tile 5x6 -geometry +1+1 result.png diff --git a/lazy_linear.py b/lazy_linear.py index b3d3165..2fa6a29 100755 --- a/lazy_linear.py +++ b/lazy_linear.py @@ -1,5 +1,10 @@ #!/usr/bin/env python +# Any copyright is dedicated to the Public Domain. +# https://creativecommons.org/publicdomain/zero/1.0/ + +# Written by Francois Fleuret + from torch import nn, Tensor ###################################################################### diff --git a/mi_estimator.py b/mi_estimator.py index 02e9db9..68fd51f 100755 --- a/mi_estimator.py +++ b/mi_estimator.py @@ -1,22 +1,9 @@ #!/usr/bin/env python -######################################################################### -# This program is free software: you can redistribute it and/or modify # -# it under the terms of the version 3 of the GNU General Public License # -# as published by the Free Software Foundation. # -# # -# This program is distributed in the hope that it will be useful, but # -# WITHOUT ANY WARRANTY; without even the implied warranty of # -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # -# General Public License for more details. # -# # -# You should have received a copy of the GNU General Public License # -# along with this program. If not, see . # -# # -# Written by Francois Fleuret, (C) Idiap Research Institute # -# # -# Contact for comments & bug reports # -######################################################################### +# Any copyright is dedicated to the Public Domain. +# https://creativecommons.org/publicdomain/zero/1.0/ + +# Written by Francois Fleuret import argparse, math, sys from copy import deepcopy -- 2.20.1