Skip to content

Commit 2612f2c

Browse files
committed
bump version to 0.0.2
1 parent 719b985 commit 2612f2c

2 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.0.2] - 2024-03-27
11+
### Fixed
12+
- Missing requirements and missing models in pip package
13+
1014
## [0.0.1] - 2024-03-26
1115
### Added
1216
- Paderborn Model
1317

14-
[unreleased]: https://github.com/upb-lea/mag-net-hub/compare/v0.0.1...HEAD
18+
[unreleased]: https://github.com/upb-lea/mag-net-hub/compare/v0.0.2...HEAD
19+
[0.0.2]: https://github.com/upb-lea/mag-net-hub/compare/v0.0.1...v0.0.2
1520
[0.0.1]: https://github.com/upb-lea/mag-net-hub/releases/tag/v0.0.1

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ Supported materials:
3232
## Installation
3333

3434
### Python
35-
TBD
35+
```
36+
pip install mag_net_hub
37+
```
3638

3739
### Matlab
3840
TBD
@@ -45,10 +47,10 @@ Hence, no training is conducted in this project.
4547
### Python
4648
```py
4749
import numpy as np
48-
from mag_net_hub.loss import LossModel
50+
import mag_net_hub as mnh
4951

5052
# instantiate material-specific model
51-
mdl = LossModel(material="3C92", team="paderborn")
53+
mdl = mnh.loss.LossModel(material="3C92", team="paderborn")
5254

5355
# dummy B field data (one trajectory with 1024 samples)
5456
b_wave = np.random.randn(1024)* 200e-3 # mT

0 commit comments

Comments
 (0)