From 0c55dc92a3bf889c67fac1ca855e6e33e1994904 Mon Sep 17 00:00:00 2001 From: Jon Bratseth Date: Mon, 9 Oct 2023 09:44:29 +0200 Subject: Update copyright --- .../src/test/models/lightgbm/train_lightgbm_classification.py | 2 +- model-integration/src/test/models/lightgbm/train_lightgbm_regression.py | 2 +- model-integration/src/test/models/onnx/add_double.py | 2 +- model-integration/src/test/models/onnx/add_float.py | 2 +- model-integration/src/test/models/onnx/add_int64.py | 2 +- model-integration/src/test/models/onnx/cast_bfloat16_float.py | 2 +- model-integration/src/test/models/onnx/cast_float_int8.py | 2 +- model-integration/src/test/models/onnx/cast_int8_float.py | 2 +- model-integration/src/test/models/onnx/llm/random_llm.py | 1 + model-integration/src/test/models/onnx/pytorch/pytorch_one_layer.py | 2 +- model-integration/src/test/models/onnx/simple/concat.py | 2 +- model-integration/src/test/models/onnx/simple/gather.py | 2 +- model-integration/src/test/models/onnx/simple/matmul.py | 2 +- model-integration/src/test/models/onnx/simple/simple.py | 2 +- model-integration/src/test/models/onnx/transformer/dummy_transformer.py | 2 +- .../test/models/onnx/transformer/dummy_transformer_without_type_ids.py | 1 + model-integration/src/test/models/pytorch/pytorch_test.py | 2 +- 17 files changed, 17 insertions(+), 15 deletions(-) (limited to 'model-integration/src/test/models') diff --git a/model-integration/src/test/models/lightgbm/train_lightgbm_classification.py b/model-integration/src/test/models/lightgbm/train_lightgbm_classification.py index f4e5e30e1f0..cc30e483790 100755 --- a/model-integration/src/test/models/lightgbm/train_lightgbm_classification.py +++ b/model-integration/src/test/models/lightgbm/train_lightgbm_classification.py @@ -1,5 +1,5 @@ #! /usr/bin/env python3 -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. # coding: utf-8 import json diff --git a/model-integration/src/test/models/lightgbm/train_lightgbm_regression.py b/model-integration/src/test/models/lightgbm/train_lightgbm_regression.py index 3c2fe84edac..699969ba1b1 100755 --- a/model-integration/src/test/models/lightgbm/train_lightgbm_regression.py +++ b/model-integration/src/test/models/lightgbm/train_lightgbm_regression.py @@ -1,5 +1,5 @@ #! /usr/bin/env python3 -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. # coding: utf-8 import json diff --git a/model-integration/src/test/models/onnx/add_double.py b/model-integration/src/test/models/onnx/add_double.py index 6ded565b880..7de5d18764e 100755 --- a/model-integration/src/test/models/onnx/add_double.py +++ b/model-integration/src/test/models/onnx/add_double.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import onnx from onnx import helper, TensorProto diff --git a/model-integration/src/test/models/onnx/add_float.py b/model-integration/src/test/models/onnx/add_float.py index 2549b2c762d..64c0c0b872c 100755 --- a/model-integration/src/test/models/onnx/add_float.py +++ b/model-integration/src/test/models/onnx/add_float.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import onnx from onnx import helper, TensorProto diff --git a/model-integration/src/test/models/onnx/add_int64.py b/model-integration/src/test/models/onnx/add_int64.py index f865b4ed2ea..838f96051d2 100755 --- a/model-integration/src/test/models/onnx/add_int64.py +++ b/model-integration/src/test/models/onnx/add_int64.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import onnx from onnx import helper, TensorProto diff --git a/model-integration/src/test/models/onnx/cast_bfloat16_float.py b/model-integration/src/test/models/onnx/cast_bfloat16_float.py index e7bb2a986a7..51d04747958 100755 --- a/model-integration/src/test/models/onnx/cast_bfloat16_float.py +++ b/model-integration/src/test/models/onnx/cast_bfloat16_float.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import onnx from onnx import helper, TensorProto diff --git a/model-integration/src/test/models/onnx/cast_float_int8.py b/model-integration/src/test/models/onnx/cast_float_int8.py index ab6054587d6..a9b2860f65a 100755 --- a/model-integration/src/test/models/onnx/cast_float_int8.py +++ b/model-integration/src/test/models/onnx/cast_float_int8.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import onnx from onnx import helper, TensorProto diff --git a/model-integration/src/test/models/onnx/cast_int8_float.py b/model-integration/src/test/models/onnx/cast_int8_float.py index dfd3fb8db80..dd61b928c78 100755 --- a/model-integration/src/test/models/onnx/cast_int8_float.py +++ b/model-integration/src/test/models/onnx/cast_int8_float.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import onnx from onnx import helper, TensorProto diff --git a/model-integration/src/test/models/onnx/llm/random_llm.py b/model-integration/src/test/models/onnx/llm/random_llm.py index 722906fc48b..de580d639fe 100644 --- a/model-integration/src/test/models/onnx/llm/random_llm.py +++ b/model-integration/src/test/models/onnx/llm/random_llm.py @@ -1,3 +1,4 @@ +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import torch import torch.onnx import torch.nn as nn diff --git a/model-integration/src/test/models/onnx/pytorch/pytorch_one_layer.py b/model-integration/src/test/models/onnx/pytorch/pytorch_one_layer.py index 3975c5ca34e..cb18238f09f 100755 --- a/model-integration/src/test/models/onnx/pytorch/pytorch_one_layer.py +++ b/model-integration/src/test/models/onnx/pytorch/pytorch_one_layer.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import torch import torch.onnx diff --git a/model-integration/src/test/models/onnx/simple/concat.py b/model-integration/src/test/models/onnx/simple/concat.py index ca79f77a469..cbc8b1bc6fb 100755 --- a/model-integration/src/test/models/onnx/simple/concat.py +++ b/model-integration/src/test/models/onnx/simple/concat.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import onnx from onnx import helper, TensorProto diff --git a/model-integration/src/test/models/onnx/simple/gather.py b/model-integration/src/test/models/onnx/simple/gather.py index 9db15cb20c9..2ec8f6d2ce8 100755 --- a/model-integration/src/test/models/onnx/simple/gather.py +++ b/model-integration/src/test/models/onnx/simple/gather.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import onnx import numpy as np from onnx import helper, TensorProto diff --git a/model-integration/src/test/models/onnx/simple/matmul.py b/model-integration/src/test/models/onnx/simple/matmul.py index 08bd197f4d7..b95098ceeea 100755 --- a/model-integration/src/test/models/onnx/simple/matmul.py +++ b/model-integration/src/test/models/onnx/simple/matmul.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import onnx from onnx import helper, TensorProto diff --git a/model-integration/src/test/models/onnx/simple/simple.py b/model-integration/src/test/models/onnx/simple/simple.py index eccc879470c..208585ebdb5 100755 --- a/model-integration/src/test/models/onnx/simple/simple.py +++ b/model-integration/src/test/models/onnx/simple/simple.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import onnx from onnx import helper, TensorProto diff --git a/model-integration/src/test/models/onnx/transformer/dummy_transformer.py b/model-integration/src/test/models/onnx/transformer/dummy_transformer.py index 1028035d7c0..2dc91d1468b 100644 --- a/model-integration/src/test/models/onnx/transformer/dummy_transformer.py +++ b/model-integration/src/test/models/onnx/transformer/dummy_transformer.py @@ -1,4 +1,4 @@ -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import torch import torch.onnx diff --git a/model-integration/src/test/models/onnx/transformer/dummy_transformer_without_type_ids.py b/model-integration/src/test/models/onnx/transformer/dummy_transformer_without_type_ids.py index 4c5f5ebe330..998436bd3e4 100644 --- a/model-integration/src/test/models/onnx/transformer/dummy_transformer_without_type_ids.py +++ b/model-integration/src/test/models/onnx/transformer/dummy_transformer_without_type_ids.py @@ -1,3 +1,4 @@ +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import torch import torch.onnx import torch.nn as nn diff --git a/model-integration/src/test/models/pytorch/pytorch_test.py b/model-integration/src/test/models/pytorch/pytorch_test.py index e58fc80e4ca..4a750113406 100755 --- a/model-integration/src/test/models/pytorch/pytorch_test.py +++ b/model-integration/src/test/models/pytorch/pytorch_test.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. +# Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root. import torch -- cgit v1.2.3