Skip to content

Commit

Permalink
Merge pull request #24 from faradaym/Rename-Files
Browse files Browse the repository at this point in the history
 Rename files -- cleanup
  • Loading branch information
feiwang3311 authored Oct 10, 2018
2 parents 536e48d + 8d8efbf commit 3665f8b
Show file tree
Hide file tree
Showing 25 changed files with 9 additions and 9 deletions.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 3665f8b

Please sign in to comment.