vault backup: 2025-01-16 10:34:48

This commit is contained in:
deng 2025-01-16 10:34:48 +08:00
parent d7043e854a
commit 7c66c5a0c5
2 changed files with 9 additions and 4 deletions

View File

@ -13,12 +13,12 @@
"state": {
"type": "markdown",
"state": {
"file": "組織/EverfortuneAI/{Note} Packaging Python Project.md",
"file": "組織/EverfortuneAI/{Note} Nox.md",
"mode": "source",
"source": false
},
"icon": "lucide-file",
"title": "{Note} Packaging Python Project"
"title": "{Note} Nox"
}
}
]
@ -144,9 +144,10 @@
"obsidian-git:Open Git source control": false
}
},
"active": "e0251782d53c0c60",
"active": "6dd46505ac5f0579",
"lastOpenFiles": [
"組織/EverfortuneAI/{Note} Nox.md",
"Untitled.md",
"組織/EverfortuneAI/{Note} Packaging Python Project.md",
"README.md",
"Test.md",

View File

@ -47,3 +47,7 @@ def test_flexibility(session, numpy, scikit_learn):
session.install('pytest')
session.run('pytest', 'tests', '-v')
```
- Issues
1. 在某些依賴套件組合下load_model在進行reload測試時會報錯原因是舊模型與新模型的記憶體位置相同導致AssertionError但為何會有這樣的差異仍未知
2. 將nox的venv_backend設為conda並開啟reuse_venv進行測試測試一陣子後會開始出現conda error猜測原因是reuse的機制出問題如果是新創造的conda env就沒問題沒開啟reuse會很耗時每次都得重建測試環境目前一個環境的容量約5GB安裝得花不少時間
3. 呈上若把venv_backend改成預設的venv在測試一段時間後仍會報錯原因可能跟上述相同