File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
3840TBD
@@ -45,10 +47,10 @@ Hence, no training is conducted in this project.
4547### Python
4648``` py
4749import 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)
5456b_wave = np.random.randn(1024 )* 200e-3 # mT
You can’t perform that action at this time.
0 commit comments