From 425bdd33030da30ec4bcd489a47d2d81a3f04856 Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Sun, 5 Mar 2023 07:51:53 -0500 Subject: [PATCH] Remove copyright years --- README.md | 2 +- neural_style.py | 2 +- stylize.py | 2 +- vgg.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a20dcf6..2bbb890 100644 --- a/README.md +++ b/README.md @@ -137,7 +137,7 @@ If you use this implementation in your work, please cite the following: ## License -Copyright (c) 2015-2021 Anish Athalye. Released under GPLv3. See +Copyright (c) Anish Athalye. Released under GPLv3. See [LICENSE.txt][license] for details. [net]: https://www.vlfeat.org/matconvnet/models/imagenet-vgg-verydeep-19.mat diff --git a/neural_style.py b/neural_style.py index d75a111..15616d4 100644 --- a/neural_style.py +++ b/neural_style.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2021 Anish Athalye. Released under GPLv3. +# Copyright (c) Anish Athalye. Released under GPLv3. import os import math diff --git a/stylize.py b/stylize.py index 17e509e..e919953 100644 --- a/stylize.py +++ b/stylize.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2021 Anish Athalye. Released under GPLv3. +# Copyright (c) Anish Athalye. Released under GPLv3. import os import time diff --git a/vgg.py b/vgg.py index 1292987..f6ce320 100644 --- a/vgg.py +++ b/vgg.py @@ -1,4 +1,4 @@ -# Copyright (c) 2015-2021 Anish Athalye. Released under GPLv3. +# Copyright (c) Anish Athalye. Released under GPLv3. import numpy as np import scipy.io