From f918b209ada9068f6c668c082675798e598632e5 Mon Sep 17 00:00:00 2001
From: Simon <simon.leglaive@gmail.com>
Date: Wed, 26 Feb 2020 13:49:04 +0100
Subject: [PATCH] update headers

---
 SE_algorithms.py            | 17 +++++++++++++++--
 main.py                     | 16 ++++++++++++++--
 training/VAEs.py            | 17 +++++++++++++++--
 training/speech_dataset.py  | 17 +++++++++++++++--
 training/train_BRNN_WSJ0.py | 17 +++++++++++++++--
 training/train_FFNN_WSJ0.py | 17 +++++++++++++++--
 training/train_RNN_WSJ0.py  | 17 +++++++++++++++--
 7 files changed, 104 insertions(+), 14 deletions(-)

diff --git a/SE_algorithms.py b/SE_algorithms.py
index 605e842..f36bcc1 100644
--- a/SE_algorithms.py
+++ b/SE_algorithms.py
@@ -1,11 +1,24 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 """
-Copyright (c) by Inria and CentraleSupelec - 2019
+This code implements the speech enhancement method published in: S. Leglaive, 
+X. Alameda-Pineda, L. Girin, R. Horaud, "A recurrent variational autoencoder 
+for speech enhancement", IEEE International Conference on Acoustics Speech and 
+Signal Processing (ICASSP), Barcelona, Spain, 2020.
+
+Copyright (c) 2019-2020 by Inria and CentraleSupelec
 Authored by Simon Leglaive (simon.leglaive@centralesupelec.fr)
-License agreement in LICENSE.txt
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License (version 3) 
+as published by the Free Software Foundation.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program (LICENSE.txt). If not, see 
+<https://www.gnu.org/licenses/>.
 """
 
+
 my_seed = 0
 import numpy as np
 np.random.seed(my_seed)
diff --git a/main.py b/main.py
index 931fee2..43f463a 100644
--- a/main.py
+++ b/main.py
@@ -1,9 +1,21 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 """
-Copyright (c) by Inria and CentraleSupelec - 2019
+This code implements the speech enhancement method published in: S. Leglaive, 
+X. Alameda-Pineda, L. Girin, R. Horaud, "A recurrent variational autoencoder 
+for speech enhancement", IEEE International Conference on Acoustics Speech and 
+Signal Processing (ICASSP), Barcelona, Spain, 2020.
+
+Copyright (c) 2019-2020 by Inria and CentraleSupelec
 Authored by Simon Leglaive (simon.leglaive@centralesupelec.fr)
-License agreement in LICENSE.txt
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License (version 3) 
+as published by the Free Software Foundation.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program (LICENSE.txt). If not, see 
+<https://www.gnu.org/licenses/>.
 """
 
 my_seed = 0
diff --git a/training/VAEs.py b/training/VAEs.py
index 0037974..67ecf2e 100644
--- a/training/VAEs.py
+++ b/training/VAEs.py
@@ -1,11 +1,24 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 """
-Copyright (c) by Inria and CentraleSupelec - 2019
+This code implements the speech enhancement method published in: S. Leglaive, 
+X. Alameda-Pineda, L. Girin, R. Horaud, "A recurrent variational autoencoder 
+for speech enhancement", IEEE International Conference on Acoustics Speech and 
+Signal Processing (ICASSP), Barcelona, Spain, 2020.
+
+Copyright (c) 2019-2020 by Inria and CentraleSupelec
 Authored by Simon Leglaive (simon.leglaive@centralesupelec.fr)
-License agreement in LICENSE.txt
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License (version 3) 
+as published by the Free Software Foundation.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program (LICENSE.txt). If not, see 
+<https://www.gnu.org/licenses/>.
 """
 
+
 import torch
 from torch import nn
 from collections import OrderedDict
diff --git a/training/speech_dataset.py b/training/speech_dataset.py
index 65ac51f..45bda85 100644
--- a/training/speech_dataset.py
+++ b/training/speech_dataset.py
@@ -1,11 +1,24 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 """
-Copyright (c) by Inria and CentraleSupelec - 2019
+This code implements the speech enhancement method published in: S. Leglaive, 
+X. Alameda-Pineda, L. Girin, R. Horaud, "A recurrent variational autoencoder 
+for speech enhancement", IEEE International Conference on Acoustics Speech and 
+Signal Processing (ICASSP), Barcelona, Spain, 2020.
+
+Copyright (c) 2019-2020 by Inria and CentraleSupelec
 Authored by Simon Leglaive (simon.leglaive@centralesupelec.fr)
-License agreement in LICENSE.txt
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License (version 3) 
+as published by the Free Software Foundation.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program (LICENSE.txt). If not, see 
+<https://www.gnu.org/licenses/>.
 """
 
+
 import torch
 from torch.utils import data
 import os
diff --git a/training/train_BRNN_WSJ0.py b/training/train_BRNN_WSJ0.py
index 1d35103..0b7eec5 100644
--- a/training/train_BRNN_WSJ0.py
+++ b/training/train_BRNN_WSJ0.py
@@ -1,11 +1,24 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 """
-Copyright (c) by Inria and CentraleSupelec - 2019
+This code implements the speech enhancement method published in: S. Leglaive, 
+X. Alameda-Pineda, L. Girin, R. Horaud, "A recurrent variational autoencoder 
+for speech enhancement", IEEE International Conference on Acoustics Speech and 
+Signal Processing (ICASSP), Barcelona, Spain, 2020.
+
+Copyright (c) 2019-2020 by Inria and CentraleSupelec
 Authored by Simon Leglaive (simon.leglaive@centralesupelec.fr)
-License agreement in LICENSE.txt
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License (version 3) 
+as published by the Free Software Foundation.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program (LICENSE.txt). If not, see 
+<https://www.gnu.org/licenses/>.
 """
 
+
 my_seed = 0
 import numpy as np
 np.random.seed(my_seed)
diff --git a/training/train_FFNN_WSJ0.py b/training/train_FFNN_WSJ0.py
index c6bf8a6..5913200 100644
--- a/training/train_FFNN_WSJ0.py
+++ b/training/train_FFNN_WSJ0.py
@@ -1,11 +1,24 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 """
-Copyright (c) by Inria and CentraleSupelec - 2019
+This code implements the speech enhancement method published in: S. Leglaive, 
+X. Alameda-Pineda, L. Girin, R. Horaud, "A recurrent variational autoencoder 
+for speech enhancement", IEEE International Conference on Acoustics Speech and 
+Signal Processing (ICASSP), Barcelona, Spain, 2020.
+
+Copyright (c) 2019-2020 by Inria and CentraleSupelec
 Authored by Simon Leglaive (simon.leglaive@centralesupelec.fr)
-License agreement in LICENSE.txt
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License (version 3) 
+as published by the Free Software Foundation.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program (LICENSE.txt). If not, see 
+<https://www.gnu.org/licenses/>.
 """
 
+
 my_seed = 0
 import numpy as np
 np.random.seed(my_seed)
diff --git a/training/train_RNN_WSJ0.py b/training/train_RNN_WSJ0.py
index da0ddfb..eaf9833 100644
--- a/training/train_RNN_WSJ0.py
+++ b/training/train_RNN_WSJ0.py
@@ -1,11 +1,24 @@
 #!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 """
-Copyright (c) by Inria and CentraleSupelec - 2019
+This code implements the speech enhancement method published in: S. Leglaive, 
+X. Alameda-Pineda, L. Girin, R. Horaud, "A recurrent variational autoencoder 
+for speech enhancement", IEEE International Conference on Acoustics Speech and 
+Signal Processing (ICASSP), Barcelona, Spain, 2020.
+
+Copyright (c) 2019-2020 by Inria and CentraleSupelec
 Authored by Simon Leglaive (simon.leglaive@centralesupelec.fr)
-License agreement in LICENSE.txt
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU Affero General Public License (version 3) 
+as published by the Free Software Foundation.
+
+You should have received a copy of the GNU Affero General Public License
+along with this program (LICENSE.txt). If not, see 
+<https://www.gnu.org/licenses/>.
 """
 
+
 my_seed = 0
 import numpy as np
 np.random.seed(my_seed)
-- 
GitLab