Skip to content

Commit

Permalink
update license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
anirudTT authored May 28, 2024
1 parent f8058e6 commit 374a6e8
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 6 deletions.
3 changes: 3 additions & 0 deletions model_demos/cv_demos/yolo_v3/holli_src/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: Copyright (c) 2018 Olli Huotari
# SPDX-License-Identifier: MIT

import math

import numpy as np
Expand Down
3 changes: 3 additions & 0 deletions model_demos/cv_demos/yolo_v3/holli_src/yolo_layer.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: Copyright (c) 2018 Olli Huotari
# SPDX-License-Identifier: MIT

import math

import numpy as np
Expand Down
3 changes: 3 additions & 0 deletions model_demos/cv_demos/yolo_v3/holli_src/yolov3.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: Copyright (c) 2018 Olli Huotari
# SPDX-License-Identifier: MIT

import torch
import torch.nn as nn

Expand Down
3 changes: 3 additions & 0 deletions model_demos/cv_demos/yolo_v3/holli_src/yolov3_base.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: Copyright (c) 2018 Olli Huotari
# SPDX-License-Identifier: MIT

import importlib
from abc import ABCMeta, abstractmethod
from collections import OrderedDict, defaultdict
Expand Down
3 changes: 3 additions & 0 deletions model_demos/cv_demos/yolo_v3/holli_src/yolov3_tiny.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# SPDX-FileCopyrightText: Copyright (c) 2018 Olli Huotari
# SPDX-License-Identifier: MIT

import torch
import torch.nn as nn

Expand Down
4 changes: 2 additions & 2 deletions model_demos/cv_demos/yolo_v3/pytorch_yolov3_holli.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: Copyright (c) 2018 Olli Huotari
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
# SPDX-License-Identifier: Apache-2.0

import os

Expand Down
4 changes: 2 additions & 2 deletions model_demos/cv_demos/yolo_v3/pytorch_yolov3_holli_1x1.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: Copyright (c) 2018 Olli Huotari
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
# SPDX-License-Identifier: Apache-2.0

import os

Expand Down
4 changes: 2 additions & 2 deletions model_demos/cv_demos/yolo_v3/pytorch_yolov3_tiny_holli.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-FileCopyrightText: Copyright (c) 2018 Olli Huotari
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: © 2024 Tenstorrent AI ULC
# SPDX-License-Identifier: Apache-2.0

import os

Expand Down

0 comments on commit 374a6e8

Please sign in to comment.