Skip to content

Commit 7d2a456

Browse files
committed
changelog
1 parent 7e6a97c commit 7d2a456

File tree

4 files changed

+55
-0
lines changed

4 files changed

+55
-0
lines changed

en/api/py-run.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,22 @@ For example, if you want to get the experiment's URL, you can do this:
2929

3030
```python
3131
print(run.public.cloud.experiment_url)
32+
```
33+
34+
## get_url
35+
36+
Get the URL of the experiment.
37+
38+
```python
39+
run = swanlab.init()
40+
print(run.get_url())
41+
```
42+
43+
## get_project_url
44+
45+
Get the URL of the project.
46+
47+
```python
48+
run = swanlab.init()
49+
print(run.get_project_url())
3250
```

en/guide_cloud/general/changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@ Github: https://github.com/SwanHubX/SwanLab
66
:::
77

88

9+
## v0.4.9 - 2025.2.28
10+
11+
**🚀 New Features**
12+
- Added `Move Experiment` function
13+
- Added `update_config` method to some integration Callback classes
14+
- `run` now supports `get_url()` and `get_project_url()` methods to get experiment and project URLs
15+
16+
**Optimizations**
17+
- Fixed some issues on Linux systems
18+
919
## v0.4.8 - 2025.2.16
1020

1121
**🚀 New Features**

zh/api/py-run.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,20 @@ print(run.public.json())
3030
```python
3131
print(run.public.cloud.experiment_url)
3232
```
33+
34+
## get_url
35+
36+
获取实验的URL。
37+
38+
```python
39+
run = swanlab.init()
40+
print(run.get_url())
41+
```
42+
43+
## get_project_url
44+
45+
获取项目的URL。
46+
47+
```python
48+
run = swanlab.init()
49+
print(run.get_project_url())

zh/guide_cloud/general/changelog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@
55
Github: https://github.com/SwanHubX/SwanLab
66
:::
77

8+
## v0.4.9 - 2025.2.28
9+
10+
**🚀新增功能**
11+
- 新增了`移动实验`功能
12+
- 对一些集成Callback类增加了`update_config`方法
13+
- `run`新增`get_url()``get_project_url()`方法,支持获取实验和项目的URL
14+
15+
**优化**
16+
- 修复了在部分Linux系统上CPU品牌获取不到的问题
17+
818
## v0.4.8 - 2025.2.16
919

1020
**🚀新增功能**

0 commit comments

Comments
 (0)