|
37 | 37 | - 'conda/**/*.yml' |
38 | 38 |
|
39 | 39 | - header: | |
40 | | - Regularized contrastive learning implementation. |
| 40 | + CEBRA: Consistent EmBeddings of high-dimensional Recordings using Auxiliary variables |
| 41 | + © Mackenzie W. Mathis & Steffen Schneider (v0.4.0+) |
| 42 | + Source code: |
| 43 | + https://github.com/AdaptiveMotorControlLab/CEBRA |
| 44 | +
|
| 45 | + Please see LICENSE.md for the full license document: |
| 46 | + https://github.com/AdaptiveMotorControlLab/CEBRA/blob/main/LICENSE.md |
| 47 | +
|
| 48 | + Adapted from https://github.com/rpatrik96/nl-causal-representations/blob/master/care_nl_ica/dep_mat.py, |
| 49 | + licensed under the following MIT License: |
| 50 | +
|
| 51 | + MIT License |
| 52 | +
|
| 53 | + Copyright (c) 2022 Patrik Reizinger |
| 54 | +
|
| 55 | + Permission is hereby granted, free of charge, to any person obtaining a copy |
| 56 | + of this software and associated documentation files (the "Software"), to deal |
| 57 | + in the Software without restriction, including without limitation the rights |
| 58 | + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 59 | + copies of the Software, and to permit persons to whom the Software is |
| 60 | + furnished to do so, subject to the following conditions: |
| 61 | +
|
| 62 | + The above copyright notice and this permission notice shall be included in all |
| 63 | + copies or substantial portions of the Software. |
41 | 64 |
|
42 | | - Not licensed yet. Distribution for review. |
43 | | - Code will be open-sourced upon publication. |
| 65 | + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 66 | + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 67 | + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 68 | + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 69 | + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 70 | + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 71 | + SOFTWARE. |
44 | 72 |
|
45 | 73 | include: |
46 | | - - 'cebra/solver/multiobjective.py' |
47 | | - - 'cebra/solver/regularized.py' |
48 | | - - 'cebra/solver/metrics.py' |
49 | | - - 'cebra/models/multiobjective.py' |
50 | | - - 'cebra/models/multi_criterions.py' |
51 | | - - 'cebra/data/multiobjective.py' |
52 | | - - 'cebra/attribution/*.py' |
53 | | - - 'tests/test_multiobjective.py' |
| 74 | + - 'cebra/attribution/jacobian.py' |
| 75 | + |
54 | 76 |
|
55 | 77 | - header: | |
56 | | - Copyright (c) Facebook, Inc. and its affiliates. |
| 78 | + CEBRA: Consistent EmBeddings of high-dimensional Recordings using Auxiliary variables |
| 79 | + © Mackenzie W. Mathis & Steffen Schneider (v0.4.0+) |
| 80 | + Source code: |
| 81 | + https://github.com/AdaptiveMotorControlLab/CEBRA |
| 82 | +
|
| 83 | + Please see LICENSE.md for the full license document: |
| 84 | + https://github.com/AdaptiveMotorControlLab/CEBRA/blob/main/LICENSE.md |
| 85 | +
|
| 86 | + This file contains the PyTorch implementation of Jacobian regularization described in [1]. |
| 87 | + Judy Hoffman, Daniel A. Roberts, and Sho Yaida, |
| 88 | + "Robust Learning with Jacobian Regularization," 2019. |
| 89 | + [arxiv:1908.02729](https://arxiv.org/abs/1908.02729) |
| 90 | +
|
| 91 | + Adapted from https://github.com/facebookresearch/jacobian_regularizer/blob/main/jacobian/jacobian.py |
| 92 | + licensed under the following MIT License: |
| 93 | +
|
| 94 | + MIT License |
| 95 | +
|
| 96 | + Copyright (c) Facebook, Inc. and its affiliates. |
57 | 97 |
|
58 | | - This source code is licensed under the MIT license found in the |
59 | | - LICENSE file in the root directory of this source tree. |
| 98 | + Permission is hereby granted, free of charge, to any person obtaining a copy |
| 99 | + of this software and associated documentation files (the "Software"), to deal |
| 100 | + in the Software without restriction, including without limitation the rights |
| 101 | + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 102 | + copies of the Software, and to permit persons to whom the Software is |
| 103 | + furnished to do so, subject to the following conditions: |
60 | 104 |
|
61 | | - PyTorch implementation of Jacobian regularization described in [1]. |
| 105 | + The above copyright notice and this permission notice shall be included in all |
| 106 | + copies or substantial portions of the Software. |
62 | 107 |
|
63 | | - [1] Judy Hoffman, Daniel A. Roberts, and Sho Yaida, |
64 | | - "Robust Learning with Jacobian Regularization," 2019. |
65 | | - [arxiv:1908.02729](https://arxiv.org/abs/1908.02729) |
| 108 | + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 109 | + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 110 | + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
| 111 | + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 112 | + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 113 | + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 114 | + SOFTWARE. |
66 | 115 |
|
67 | 116 | include: |
68 | 117 | - 'cebra/models/jacobian_regularizer.py' |
0 commit comments