You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Detailed changes are as follows:
- add custom final activation to MLPClassifier
- update license information related to using sparsemax code from TFA
- refactor sparsemax functions
- refactor some loss functions and the folder structure
- update dependencies
- update README
Co-authored-by: Tyler Morrow <[email protected]>
This source code is part of the PyRIID project and is licensed under the BSD-style licence.
2
+
This project also contains code covered under the Apache-2.0 license based on Tensorflow-Addons functions which can be found in `riid/models/losses/sparsemax.py`.
3
+
4
+
The following is a list of the relevent copyright and license information.
5
+
6
+
---
7
+
8
+
Copyright 2021 National Technology & Engineering Solutions of Sandia, LLC (NTESS).
9
+
Under the terms of Contract DE-NA0003525 with NTESS, the U.S. Government retains certain rights in this software.
10
+
This source code is licensed under the BSD-style license found [here](https://github.com/sandialabs/PyRIID/blob/main/LICENSE.md).
11
+
12
+
---
13
+
14
+
Copyright 2016 The TensorFlow Authors. All Rights Reserved.
15
+
16
+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License.
17
+
You may obtain a copy of the License at
18
+
19
+
http://www.apache.org/licenses/LICENSE-2.0
20
+
21
+
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
22
+
See the License for the specific language governing permissions and limitations under the License.
This repository contains the PyRIID package (as well as tests and examples) which is intended to provide utilities that support machine learning-based research and solutions to radioisotope identification.
8
+
This repository contains the PyRIID package (as well as tests and examples) which provides utilities that support machine learning-based research and solutions to radioisotope identification.
9
9
10
10
## Installation
11
11
12
-
These instructions assume you have an up-to-date and stable Python installation; a virtual environment is recommended.
12
+
These instructions assume you meet the following requirements:
13
13
14
-
To use the latest version on PyPI (note: changes are slower to appear here), run:
14
+
- Python version: 3.7+
15
+
- Operating systems: Windows, Mac, or Ubuntu
16
+
17
+
A virtual environment is recommended.
18
+
19
+
Tests and examples are ran via Actions on many combinations of Python version and operating system.
20
+
You can verify support for your platform by checking the workflow files.
21
+
22
+
### For Use
23
+
24
+
To use the latest version on PyPI (note: changes are currently slower to appear here), run:
0 commit comments