Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename files -- cleanup #24

Merged
merged 1 commit into from
Oct 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,15 +168,15 @@ These instructions will get you a copy of the project up and running on your loc
### Directory Organization
* [root directory for Lantern](./src)
* [Lantern code directory](./src/main/scala/lantern)
* [code for AD on scalar variable](./src/main/scala/lantern/ad_lms.scala)
* [code for AD on vector and tensor](./src/main/scala/lantern/ad_lms_vector.scala)
* [LMS framework code](./src/main/scala/lantern/dslapi.scala)
* [data loader](./src/main/scala/lantern/scanner.scala)
* [code for AD on scalar variable](src/main/scala/lantern/ScalarDifferentiation.scala)
* [code for AD on vector and tensor](src/main/scala/lantern/TensorDifferentiation.scala)
* [LMS framework code](src/main/scala/lantern/DslAPI.scala)
* [data loader](src/main/scala/lantern/Scanner.scala)
* [Lantern test directory](./src/test/scala/lantern)
* [ScalaTest instance of RNN evaluation](./src/test/scala/lantern/vanillaRNN.scala)
* [ScalaTest instance of LSTM evaluation](./src/test/scala/lantern/LSTM.scala)
* [ScalaTest instance of TreeLSTM evaluation](./src/test/scala/lantern/sentimentTreeLSTM.scala)
* [ScalaTest instance of CNN evaluation](./src/test/scala/lantern/mnistCNN.scala)
* [ScalaTest instance of RNN evaluation](src/test/scala/lantern/TestVanillaRNN.scala)
* [ScalaTest instance of LSTM evaluation](src/test/scala/lantern/LSTMTest.scala)
* [ScalaTest instance of TreeLSTM evaluation](src/test/scala/lantern/SentimentTreeLSTMTest.scala)
* [ScalaTest instance of CNN evaluation](src/test/scala/lantern/MnistCNNTest.scala)
* [directory for evaluation code](./src/out/ICFP18evaluation)
* [directory for RNN evaluation code](./src/out/ICFP18evaluation/evaluationRNN)
* [directory for LSTM evaluation code](./src/out/ICFP18evaluation/evaluationLSTM)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ object ShiftReset {
assert (gradient_if == gfif(2.4, 3.9))
println("Step 2b")
// Function with if-statement (like the one in ad_lms.scala)
// Function with if-statement (like the one in ScalarDifferentiation.scala)
def fif2(x: Num): Num @diff = {
if (x > 0.0) x * x else -1.0 * x * x
}
Expand Down