You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by cm...@apache.org on 2018/08/16 01:13:56 UTC

[incubator-mxnet] 01/02: running cljfmt

This is an automated email from the ASF dual-hosted git repository.

cmeier pushed a commit to branch more-clojure-tests
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git

commit 8805ef7f02e98b266f608d4fb49f3c1826c1744a
Author: gigasquid <cm...@gigasquidsoftware.com>
AuthorDate: Wed Aug 15 21:08:16 2018 -0400

    running cljfmt
---
 contrib/clojure-package/examples/tutorial/src/tutorial/symbol.clj       | 1 -
 contrib/clojure-package/test/org/apache/clojure_mxnet/profiler_test.clj | 1 -
 2 files changed, 2 deletions(-)

diff --git a/contrib/clojure-package/examples/tutorial/src/tutorial/symbol.clj b/contrib/clojure-package/examples/tutorial/src/tutorial/symbol.clj
index 0dd0e4d..bec71de 100644
--- a/contrib/clojure-package/examples/tutorial/src/tutorial/symbol.clj
+++ b/contrib/clojure-package/examples/tutorial/src/tutorial/symbol.clj
@@ -50,7 +50,6 @@ net ;=> #object[org.apache.mxnet.Symbol 0x5c78c8c2 "org.apache.mxnet.Symbol@5c78
 (def b (sym/variable "b"))
 (def c (sym/+ a b))
 
-
 ;; Each symbol takes a (unique) string name. NDArray and Symbol both represent a single tensor. Operators represent the computation between tensors. Operators take symbol (or NDArray) as inputs and might also additionally accept other hyperparameters such as the number of hidden neurons (num_hidden) or the activation type (act_type) and produce the output.
 
 ;; We can view a symbol simply as a function taking several arguments. And we can retrieve those arguments with the following method call:
diff --git a/contrib/clojure-package/test/org/apache/clojure_mxnet/profiler_test.clj b/contrib/clojure-package/test/org/apache/clojure_mxnet/profiler_test.clj
index d45a993..f4b7434 100644
--- a/contrib/clojure-package/test/org/apache/clojure_mxnet/profiler_test.clj
+++ b/contrib/clojure-package/test/org/apache/clojure_mxnet/profiler_test.clj
@@ -19,7 +19,6 @@
   (:require [org.apache.clojure-mxnet.profiler :as profiler]
             [clojure.test :refer :all]))
 
-
 ;; Just excercising the interop
 
 (deftest test-profiler