Skip to content

Commit 4cf58c1

Browse files
committed
Fix the function name in the README.md file and remove one of the TODO's since I've just done it
1 parent 9dc8b2e commit 4cf58c1

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

Cargo.lock

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,8 @@ To load and save data, as an example, say for the XoR model
139139
we trained above, we can just call the `save_file` function as such:
140140

141141
```rust
142-
xor_model.sync_gpu_data_with_cpu().unwrap(); // sends the weights and biases from the GPU to the CPU
142+
xor_model.sync_data_from_buffers_to_host().unwrap(); // sends the weights and biases from
143+
// OpenCL buffers to Rust Vec's
143144
save_file("xor-model.bin", 0, &xor_model).unwrap();
144145
```
145146

@@ -164,5 +165,4 @@ and initialize the Model with the resulting OpenCLState.
164165
- implement convolutional layers and perhaps even solve some image classification problems in a example
165166
- have some feature of Intricate, should be optional, that would contain preloaded datasets, such as MNIST and others
166167
- write many more unit tests to make code safer, like a test for the backprop of every activation layer
167-
- perhaps write some kind of utility functions to help with writing repetitive tests for the backprop of activation functions
168-
- improve documentation of Intricate overall, like adding at least a general description for every mod
168+
- perhaps write some kind of utility functions to help with writing repetitive tests for the backprop of activation functions

0 commit comments

Comments
 (0)