... | @@ -113,4 +113,22 @@ pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tu |
... | @@ -113,4 +113,22 @@ pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple/ --trusted-host pypi.tu |
|
pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com tensorflow
|
|
pip install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com tensorflow
|
|
|
|
|
|
这次阿里源比较快
|
|
这次阿里源比较快
|
|
|
|
```python3
|
|
|
|
|
|
|
|
aim demo:
|
|
```
|
|
```
|
|
|
|
# aim_test.py
|
|
|
|
from aim import Run
|
|
|
|
|
|
|
|
run = Run()
|
|
|
|
|
|
|
|
# set training hyperparameters
|
|
|
|
run['hparams'] = {
|
|
|
|
'learning_rate': 0.001,
|
|
|
|
'batch_size': 32,
|
|
|
|
}
|
|
|
|
|
|
|
|
# log metric
|
|
|
|
for i in range(10):
|
|
|
|
run.track(i, name='numbers')
|
|
|
|
``` |
|
|
|
\ No newline at end of file |