Skip to content

Commit

Permalink
Merge pull request #1 from NoobTW/master
Browse files Browse the repository at this point in the history
Updating Fork!
  • Loading branch information
honmanyau authored Oct 3, 2018
2 parents 6305e87 + 5a0f102 commit 84e2436
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tutorials/core-concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ const result = predict(2);
result.print() // 輸出:24
```

你也可以用深度學習中比較熱門的方法:透過高階 API `[tf.model](https://js.tensorflow.org/api/latest/index.html#model)`**建構模型。下面這段程式碼建構了一個 `[tf.sequential](https://js.tensorflow.org/api/latest/index.html#sequential)` 的模型:
你也可以用深度學習中比較熱門的方法:透過高階 API [`tf.model`](https://js.tensorflow.org/api/latest/index.html#model)**建構模型。下面這段程式碼建構了一個 [`tf.sequential`](https://js.tensorflow.org/api/latest/index.html#sequential) 的模型:

```javascript
const model = tf.sequential();
Expand All @@ -152,9 +152,9 @@ model.compile({optimizer, loss: 'categoricalCrossentropy'});
model.fit({x: data, y: labels)});
```

TensorFlow.js 中還有許多可用的不同型態的層,像是 [`tf.layers.simpleRNN`](https://js.tensorflow.org/api/latest/index.html#layers.simpleRNN)[`tf.layers.gru`](https://js.tensorflow.org/api/latest/index.html#layers.gru)[`tf.layers.lstm`](https://js.tensorflow.org/api/latest/index.html#layers.lstm)
TensorFlow.js 中還有許多可用的不同型態的層,像是 [`tf.layers.simpleRNN`](https://js.tensorflow.org/api/latest/index.html#layers.simpleRNN)[`tf.layers.gru`](https://js.tensorflow.org/api/latest/index.html#layers.gru)[`tf.layers.lstm`](https://js.tensorflow.org/api/latest/index.html#layers.lstm)

## 記憶體管理:dipose 和 tf.tidy
## 記憶體管理:dispose 和 tf.tidy

由於 TensorFlow.js 使用 GPU 來加速數學運算,使用張量和變數時管理 GPU 記憶體是必要的。

Expand Down Expand Up @@ -200,7 +200,7 @@ average.print() // 輸出: 3.5

# 其他資源

造訪 [TensorFlow.js API Reference] 以查看套件的詳細文件。
造訪 [TensorFlow.js API Reference](https://js.tensorflow.org/api/latest/index.html) 以查看套件的詳細文件。

想要更深度的瞭解機器學習架構,可以閱讀以下資源:
- [Machine Learning Crash Course](https://developers.google.com/machine-learning/crash-course)(註: 這個課程的練習使用 TensorFlow 的 [Python API](https://www.tensorflow.org/api_docs/python/),不過機器學習的核心概念一樣可以應用在 TensorFlow.js)
Expand Down

0 comments on commit 84e2436

Please sign in to comment.