Skip to content

Commit

Permalink
[system-a] rename networks/ to models/
Browse files Browse the repository at this point in the history
  • Loading branch information
xieyuheng committed May 28, 2024
1 parent 4120eb7 commit d0adc15
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# system-a

[system-a] `irisModel`
[system-a] `irisTestXs`, `irisTestYs`
[system-a] `irisTrainXs`, `irisTrainYs`
[system-a] `model`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { blockStack, denseBlock } from "../../block/index.js"
import type { Tensor } from "../../tensor/Tensor.js"
import { randomTensor } from "../../tensor/randomTensor.js"
import type { Shape } from "../../tensor/shape.js"
import { zeroTensor } from "../../tensor/zeroTensor.js"
import { blockStack, denseBlock } from "../block/index.js"
import type { Tensor } from "../tensor/Tensor.js"
import { randomTensor } from "../tensor/randomTensor.js"
import type { Shape } from "../tensor/shape.js"
import { zeroTensor } from "../tensor/zeroTensor.js"

export const irisNetwork = blockStack([denseBlock(4, 6), denseBlock(6, 3)])

Expand Down

0 comments on commit d0adc15

Please sign in to comment.