vault backup: 2023-11-09 14:57:27

This commit is contained in:
2023-11-09 14:57:27 +08:00
parent fa6e1745e4
commit 237cf1ce15
2 changed files with 17 additions and 7 deletions

View File

@@ -41,7 +41,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "05. 資料收集/Keras.tensorflow - Dataset.md", "file": "05. 資料收集/numpy - 同樣順序打亂多個array.md",
"mode": "source", "mode": "source",
"source": true "source": true
} }
@@ -77,7 +77,7 @@
"state": { "state": {
"type": "search", "type": "search",
"state": { "state": {
"query": "tensorflow", "query": "numpy ",
"matchingCase": false, "matchingCase": false,
"explainSearch": false, "explainSearch": false,
"collapseAll": false, "collapseAll": false,
@@ -114,7 +114,7 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "05. 資料收集/Keras.tensorflow - Dataset.md", "file": "05. 資料收集/numpy - 同樣順序打亂多個array.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@@ -139,7 +139,7 @@
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {
"file": "05. 資料收集/Keras.tensorflow - Dataset.md" "file": "05. 資料收集/numpy - 同樣順序打亂多個array.md"
} }
} }
}, },
@@ -167,7 +167,7 @@
"state": { "state": {
"type": "file-properties", "type": "file-properties",
"state": { "state": {
"file": "05. 資料收集/Keras.tensorflow - Dataset.md" "file": "05. 資料收集/numpy - 同樣順序打亂多個array.md"
} }
} }
} }
@@ -212,8 +212,9 @@
}, },
"active": "9ef635642faa0c82", "active": "9ef635642faa0c82",
"lastOpenFiles": [ "lastOpenFiles": [
"05. 資料收集/Keras.tensorflow - shuffle.md",
"05. 資料收集/Keras.tensorflow - Dataset.md", "05. 資料收集/Keras.tensorflow - Dataset.md",
"05. 資料收集/numpy - 同樣順序打亂多個array.md",
"05. 資料收集/Keras.tensorflow - shuffle.md",
"01. 個人/01. Daily/2023-11-08(週三).md", "01. 個人/01. Daily/2023-11-08(週三).md",
"01. 個人/01. Daily/2023-11-07(週二).md", "01. 個人/01. Daily/2023-11-07(週二).md",
"01. 個人/01. Daily/2023-11-06(週一).md", "01. 個人/01. Daily/2023-11-06(週一).md",
@@ -242,7 +243,6 @@
"00. Inbox/My Mindmap.canvas", "00. Inbox/My Mindmap.canvas",
"05. 資料收集/AI.md", "05. 資料收集/AI.md",
"00. Inbox/Habit Tracker.md", "00. Inbox/Habit Tracker.md",
"00. Inbox/台語諺語.md",
"00. Inbox/vc-fwUpdate code trace(Meetup).canvas", "00. Inbox/vc-fwUpdate code trace(Meetup).canvas",
"05. 資料收集/Tool Setup/Software/diskstation/share/Tools/字型", "05. 資料收集/Tool Setup/Software/diskstation/share/Tools/字型",
"05. 資料收集/Tool Setup/Software/diskstation/share/Tools", "05. 資料收集/Tool Setup/Software/diskstation/share/Tools",

View File

@@ -0,0 +1,10 @@
如果多個array的順序有相關性我們要用同樣的順序來打亂他們可以用以下方法
```python
array1 = np.array([[1, 1], [2, 2], [3, 3]])
array2 = np.array([1, 2, 3])
shuffler = np.random.permutation(len(array1))
array1_shuffled = array1[shuffler]
array2_shuffled = array2[shuffler]
```