Skip to content

Commit c965996

Browse files
committedJan 2, 2024
prepare for v0.5.0 release
Signed-off-by: Ranganath Krishnan <[email protected]>
1 parent 7651cd0 commit c965996

23 files changed

+23
-23
lines changed
 

‎LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2023, Intel Labs
3+
Copyright (c) 2024, Intel Labs
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A library for Bayesian neural network layers and uncertainty estimation in Deep
77

88
[![python](https://img.shields.io/badge/python-3.7%2B-blue)](https://github.com/IntelLabs/bayesian-torch)
99
[![pytorch](https://img.shields.io/badge/pytorch-1.7.0%2B-orange)](https://github.com/IntelLabs/bayesian-torch)
10-
[![version](https://img.shields.io/badge/release-0.4.0-green)](https://github.com/IntelLabs/bayesian-torch/releases)
10+
[![version](https://img.shields.io/badge/release-0.5.0-green)](https://github.com/IntelLabs/bayesian-torch/releases)
1111
[![license](https://img.shields.io/badge/license-BSD%203--Clause-blue)](https://github.com/IntelLabs/bayesian-torch/blob/main/LICENSE)
1212
[![Downloads](https://static.pepy.tech/badge/bayesian-torch)](https://pepy.tech/project/bayesian-torch)
1313
<h4 align="center">

‎bayesian_torch/ao/nn/quantized/modules/quantize_conv_variational.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/ao/nn/quantized/modules/quantize_linear_variational.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/ao/nn/quantized/modules/quantized_conv_flipout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/ao/nn/quantized/modules/quantized_linear_flipout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/ao/quantization/quantize.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/base_variational_layer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/flipout_layers/conv_flipout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/flipout_layers/linear_flipout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/flipout_layers/quantized_conv_flipout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/flipout_layers/quantized_linear_flipout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/flipout_layers/rnn_flipout.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/variational_layers/conv_variational.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/variational_layers/linear_variational.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/variational_layers/quantize_conv_variational.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/variational_layers/quantize_linear_variational.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/layers/variational_layers/rnn_variational.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/models/bnn_to_qbnn.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/models/dnn_to_bnn.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/utils/avuc_loss.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Corporation
1+
# Copyright (C) 2024 Intel Corporation
22
#
33
# BSD-3-Clause License
44
#

‎bayesian_torch/utils/util.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2023 Intel Labs
1+
# Copyright (C) 2024 Intel Labs
22
#
33
# BSD-3-Clause License
44
#

‎setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
setup(
1212
name = "bayesian-torch",
1313
packages = find_packages(),
14-
version = "0.4.0",
14+
version = "0.5.0",
1515
description = "A library for Bayesian neural network layers and uncertainty estimation in Deep Learning",
1616
author = "Intel Labs",
1717
author_email = "ranganath.krishnan@intel.com",

0 commit comments

Comments
 (0)
Please sign in to comment.