Guest User

Untitled

a guest
Jan 27th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.82 KB | None | 0 0
  1. [INFO] Scanning for projects...
  2. [INFO]
  3. [INFO] ------------------------------------------------------------------------
  4. [INFO] Building flink-ml 1.3-SNAPSHOT
  5. [INFO] ------------------------------------------------------------------------
  6. [INFO]
  7. [INFO] --- maven-checkstyle-plugin:2.17:check (validate) @ flink-ml_2.10 ---
  8. [INFO]
  9. [INFO] --- maven-enforcer-plugin:1.4.1:enforce (enforce-maven) @ flink-ml_2.10 ---
  10. [INFO]
  11. [INFO] --- maven-remote-resources-plugin:1.5:process (process-resource-bundles) @ flink-ml_2.10 ---
  12. [INFO]
  13. [INFO] --- maven-resources-plugin:2.7:resources (default-resources) @ flink-ml_2.10 ---
  14. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  15. [INFO] skip non existing resourceDirectory /Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/src/main/resources
  16. [INFO] Copying 3 resources
  17. [INFO]
  18. [INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ flink-ml_2.10 ---
  19. [INFO] No sources to compile
  20. [INFO]
  21. [INFO] --- scala-maven-plugin:3.2.2:compile (default) @ flink-ml_2.10 ---
  22. [INFO] Nothing to compile - all classes are up to date
  23. [INFO]
  24. [INFO] --- maven-resources-plugin:2.7:testResources (default-testResources) @ flink-ml_2.10 ---
  25. [INFO] Using 'UTF-8' encoding to copy filtered resources.
  26. [INFO] Copying 2 resources
  27. [INFO] Copying 3 resources
  28. [INFO]
  29. [INFO] --- maven-compiler-plugin:3.1:testCompile (default-testCompile) @ flink-ml_2.10 ---
  30. [INFO] No sources to compile
  31. [INFO]
  32. [INFO] --- scala-maven-plugin:3.2.2:testCompile (default) @ flink-ml_2.10 ---
  33. [INFO] Nothing to compile - all classes are up to date
  34. [INFO]
  35. [INFO] --- maven-surefire-plugin:2.18.1:test (default-test) @ flink-ml_2.10 ---
  36. [INFO]
  37. [INFO] --- scalatest-maven-plugin:1.0:test (scala-test) @ flink-ml_2.10 ---
  38. Discovery starting.
  39. Discovery completed in 270 milliseconds.
  40. Run starting. Expected test count is: 67
  41. FlinkMLToolsSuite:
  42. FlinkMLTools
  43. - should register the required types
  44. DistributedRowMatrixSuite:
  45. DistributedRowMatrix
  46. - should contain the initialization data
  47. - should return the correct dimensions when provided by the user
  48. - should return a sparse local matrix containing the initialization data
  49. - should return a dense local matrix containing the initialization data
  50. add
  51. - should correctly add two distributed row matrices
  52. DenseMatrixSuite:
  53. Flink's DenseMatrix
  54. - should contain the initialization data
  55. - should fail in case of invalid element access
  56. - should be copyable
  57. QuadTreeSuite:
  58. QuadTree Class
  59. - should partition into equal size sub-boxes and search for nearby objects properly
  60. DistanceMetricSuite:
  61. Distance Measures
  62. - should calculate Euclidean distance correctly
  63. - should calculate square value of Euclidean distance correctly
  64. - should calculate Chebyshev distance correctly
  65. - should calculate Cosine distance correctly
  66. - should calculate Manhattan distance correctly
  67. - should calculate Minkowski distance correctly
  68. - should calculate Tanimoto distance correctly
  69. - should be serialized
  70. MLUtilsSuite:
  71. The RichExecutionEnvironment
  72. - should read a libSVM/SVMLight input file
  73. - should write a libSVM/SVMLight output file
  74. BreezeMathSuite:
  75. Breeze vector conversion
  76. - should convert a DenseMatrix into breeze.linalg.DenseMatrix and vice versa
  77. - should convert a SparseMatrix into breeze.linalg.CSCMatrix
  78. - should convert a dense Flink vector into a dense Breeze vector and vice versa
  79. - should convert a sparse Flink vector into a sparse Breeze vector and given the right converter back into a dense Flink vector
  80. DenseVectorSuite:
  81. Flink's DenseVector
  82. - should contain the initialization data
  83. - should fail in case of an illegal element access
  84. - should calculate dot product with DenseVector
  85. - should calculate dot product with SparseVector
  86. - should calculate dot product with SparseVector 2
  87. - should fail in case of calculation dot product with different size vector
  88. - should calculate outer product with DenseVector correctly as DenseMatrix
  89. - should calculate outer product with SparseVector correctly as SparseMatrix
  90. - should calculate outer product with a DenseVector correctly as DenseMatrix 2
  91. - should calculate outer product with a SparseVector correctly as SparseMatrix 2
  92. - should DenseVector right outer product with one-dimensional DenseVector as identity
  93. - should DenseVector right outer product with one-dimensional SparseVector as identity
  94. - should DenseVector left outer product with one-dimensional unit DenseVector as identity
  95. - should SparseVector left outer product with one-dimensional unit DenseVector as identity
  96. - should DenseVector outer product via multiplication if both vectors are one-dimensional
  97. - should SparseVector outer product via multiplication if both vectors are one-dimensional
  98. - should calculate magnitude of vector
  99. - should convert from and to Breeze vector
  100. SparseVectorSuite:
  101. Flink's SparseVector
  102. - should contain a single element provided as coordinate list (COO)
  103. - should contain the initialization data provided as coordinate list (COO)
  104. - should fail when accessing elements using an invalid index
  105. - should fail when the COO list contains elements with invalid indices
  106. - should be copyable
  107. - should calculate dot product with SparseVector
  108. - should calculate dot product with SparseVector 2
  109. - should calculate dot product with DenseVector
  110. - should fail in case of calculation dot product with different size vector
  111. - should calculate outer product with SparseVector correctly as SparseMatrix
  112. - should calculate outer product with DenseVector correctly as SparseMatrix
  113. - should calculate outer product with a DenseVector correctly as SparseMatrix 2
  114. - should calculate outer product with a SparseVector correctly as SparseMatrix 2
  115. - should calculate right outer product with DenseVector
  116. with one-dimensional unit DenseVector as identity
  117. - should calculate right outer product with DenseVector
  118. with one-dimensional unit SparseVector as identity
  119. - should calculate left outer product for SparseVector
  120. with one-dimensional unit DenseVector as identity
  121. - should calculate outer product with SparseVector
  122. via multiplication if both vectors are one-dimensional
  123. - should calculate outer product with DenseVector
  124. via multiplication if both vectors are one-dimensional
  125. - should calculate magnitude of vector
  126. - should convert from and to Breeze vectors
  127. SparseMatrixSuite:
  128. Flink's SparseMatrix
  129. - should contain a single element provided as a coordinate list (COO)
  130. - should be initialized from a coordinate list representation (COO)
  131. - should fail when accessing zero elements or using invalid indices
  132. - should fail when elements of the COO list have invalid indices
  133. - should be copyable
  134. Run completed in 3 seconds, 652 milliseconds.
  135. Total number of tests run: 67
  136. Suites: completed 11, aborted 0
  137. Tests: succeeded 67, failed 0, canceled 0, ignored 0, pending 0
  138. All tests passed.
  139. [INFO]
  140. [INFO] --- maven-jar-plugin:2.4:jar (default-jar) @ flink-ml_2.10 ---
  141. [INFO] Building jar: /Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/target/flink-ml_2.10-1.3-SNAPSHOT.jar
  142. [INFO]
  143. [INFO] --- maven-site-plugin:3.5.1:attach-descriptor (attach-descriptor) @ flink-ml_2.10 ---
  144. [INFO]
  145. [INFO] --- maven-shade-plugin:2.4.1:shade (shade-flink) @ flink-ml_2.10 ---
  146. [INFO] Excluding org.scalamacros:quasiquotes_2.10:jar:2.0.1 from the shaded jar.
  147. [INFO] Excluding org.scalanlp:breeze_2.10:jar:0.12 from the shaded jar.
  148. [INFO] Excluding org.scalanlp:breeze-macros_2.10:jar:0.12 from the shaded jar.
  149. [INFO] Excluding com.github.fommil.netlib:core:jar:1.1.2 from the shaded jar.
  150. [INFO] Excluding net.sourceforge.f2j:arpack_combined_all:jar:0.1 from the shaded jar.
  151. [INFO] Excluding net.sf.opencsv:opencsv:jar:2.3 from the shaded jar.
  152. [INFO] Excluding com.github.rwl:jtransforms:jar:2.4.0 from the shaded jar.
  153. [INFO] Excluding org.spire-math:spire_2.10:jar:0.7.4 from the shaded jar.
  154. [INFO] Excluding org.spire-math:spire-macros_2.10:jar:0.7.4 from the shaded jar.
  155. [INFO] Excluding com.chuusai:shapeless_2.10.4:jar:2.0.0 from the shaded jar.
  156. [INFO] Including org.apache.flink:force-shading:jar:1.3-SNAPSHOT in the shaded jar.
  157. [INFO] Replacing original artifact with shaded artifact.
  158. [INFO] Replacing /Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/target/flink-ml_2.10-1.3-SNAPSHOT.jar with /Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/target/flink-ml_2.10-1.3-SNAPSHOT-shaded.jar
  159. [INFO] Replacing original test artifact with shaded test artifact.
  160. [INFO] Replacing /Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/target/flink-ml_2.10-1.3-SNAPSHOT-tests.jar with /Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/target/flink-ml_2.10-1.3-SNAPSHOT-shaded-tests.jar
  161. [INFO] Dependency-reduced POM written at: /Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/target/dependency-reduced-pom.xml
  162. [INFO] Dependency-reduced POM written at: /Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/target/dependency-reduced-pom.xml
  163. [INFO] Dependency-reduced POM written at: /Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/target/dependency-reduced-pom.xml
  164. [INFO]
  165. [INFO] --- maven-javadoc-plugin:2.9.1:jar (attach-javadocs) @ flink-ml_2.10 ---
  166. [INFO]
  167. [INFO] --- maven-assembly-plugin:2.4:single (make-assembly) @ flink-ml_2.10 ---
  168. [INFO] Building jar: /Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/target/flink-ml_2.10-1.3-SNAPSHOT-jar-with-dependencies.jar
  169. [INFO]
  170. [INFO] --- maven-surefire-plugin:2.18.1:test (integration-tests) @ flink-ml_2.10 ---
  171. [INFO]
  172. [INFO] --- scalatest-maven-plugin:1.0:test (integration-test) @ flink-ml_2.10 ---
  173. Discovery starting.
  174. Discovery completed in 322 milliseconds.
  175. Run starting. Expected test count is: 49
  176. SplitterITSuite:
  177. Flink's DataSet Splitter
  178. - should result in datasets with no elements in common and all elements used
  179. - should result in datasets of an expected size when precise
  180. - should result in expected number of datasets
  181. - should produce TrainTestDataSets in which training size is greater than testing size
  182. - should throw an exception if sample fraction ins nonsensical
  183. MultipleLinearRegressionITSuite:
  184. The multiple linear regression implementation
  185. Jan 27, 2017 10:58:46 AM com.github.fommil.netlib.BLAS <clinit>
  186. WARNING: Failed to load implementation from: com.github.fommil.netlib.NativeSystemBLAS
  187. Jan 27, 2017 10:58:46 AM com.github.fommil.netlib.BLAS <clinit>
  188. WARNING: Failed to load implementation from: com.github.fommil.netlib.NativeRefBLAS
  189. - should estimate a linear function
  190. - should work with sparse vectors as input
  191. - should estimate a cubic function
  192. - should make (mostly) correct predictions
  193. PredictionFunctionITSuite:
  194. The optimization framework prediction functions
  195. - should correctly calculate linear predictions
  196. - should correctly calculate the gradient for linear predictions
  197. ALSITSuite:
  198. The alternating least squares (ALS) implementation
  199. Jan 27, 2017 10:58:49 AM com.github.fommil.netlib.LAPACK <clinit>
  200. WARNING: Failed to load implementation from: com.github.fommil.netlib.NativeSystemLAPACK
  201. Jan 27, 2017 10:58:49 AM com.github.fommil.netlib.LAPACK <clinit>
  202. WARNING: Failed to load implementation from: com.github.fommil.netlib.NativeRefLAPACK
  203. - should properly factorize a matrix
  204. PolynomialFeaturesITSuite:
  205. The polynomial base implementation
  206. - should map single element vectors to the polynomial vector space
  207. - should map vectors to the polynomial vector space
  208. - should return an empty vector if the max degree is zero
  209. StochasticOutlierSelectionITSuite:
  210. Stochastic Outlier Selection algorithm
  211. - should Compute the perplexity of the vector and return the correct error
  212. - should Compute the distance matrix and give symmetrical distances
  213. - should Compute the distance matrix and give the correct distances
  214. - should Computing the affinity matrix and return the correct affinity
  215. - should Compute the binding probabilities and return the correct probabilities
  216. - should Compute the product of the vector, should return the correct values
  217. - should Verifying the output of the SOS algorithm assign the one true outlier
  218. MinMaxScalerITSuite:
  219. Flink's MinMax Scaler
  220. - should scale the vectors' values to be restricted in the [0.0,1.0] range
  221. - should scale vectors' values in the [-1.0,1.0] range
  222. StandardScalerITSuite:
  223. Flink's Standard Scaler
  224. - should scale the vectors to have mean equal to 0 and std equal to 1
  225. - should scale the vectors to have mean equal to 10 and standard deviation equal to 2
  226. - should work with LabeledVector
  227. - should work with (FlinkVector, Double) tuples
  228. LossFunctionITSuite:
  229. The optimization Loss Function implementations
  230. - should calculate squared loss and gradient correctly
  231. PipelineITSuite:
  232. Flink's pipelines
  233. - should support chaining of compatible transformer
  234. - should throw an exception when the pipeline operators are not compatible
  235. - should throw an exception when the input data is not supported
  236. - should support multiple transformers and a predictor
  237. - should throw an exception when the input data is not supported by a predictor
  238. SVMITSuite:
  239. The SVM using CoCoA implementation
  240. - should train a SVM
  241. - should make (mostly) correct predictions
  242. - should be possible to get the raw decision function values
  243. GradientDescentITSuite:
  244. The Stochastic Gradient Descent implementation
  245. - should correctly solve an L1 regularized regression problem
  246. - should correctly perform one step with L2 regularization
  247. - should estimate a linear function
  248. - should estimate a linear function without an intercept
  249. - should correctly perform one step of the algorithm with initial weights provided
  250. - should terminate early if the convergence criterion is reached
  251. - should come up with similar parameter estimates with xu step-size strategy
  252. KNNITSuite:
  253. The KNN Join Implementation
  254. - should throw an exception when the given K is not valid
  255. - should throw an exception when the given count of blocks is not valid
  256. - should calculate kNN join correctly without using a Quadtree
  257. - should calculate kNN join correctly with a Quadtree
  258. - should throw an exception when using a Quadtree with an incompatible metric
  259. Run completed in 22 seconds, 215 milliseconds.
  260. Total number of tests run: 49
  261. Suites: completed 14, aborted 0
  262. Tests: succeeded 49, failed 0, canceled 0, ignored 0, pending 0
  263. All tests passed.
  264. [INFO]
  265. [INFO] --- scalastyle-maven-plugin:0.8.0:check (default) @ flink-ml_2.10 ---
  266. Saving to outputFile=/Users/fokkodriesprong/Desktop/flink-test/flink-libraries/flink-ml/target/scalastyle-output.xml
  267. Processed 76 file(s)
  268. Found 0 errors
  269. Found 0 warnings
  270. Found 0 infos
  271. Finished in 1281 ms
  272. [INFO] ------------------------------------------------------------------------
  273. [INFO] BUILD SUCCESS
  274. [INFO] ------------------------------------------------------------------------
  275. [INFO] Total time: 41.055 s
  276. [INFO] Finished at: 2017-01-27T10:59:06+01:00
  277. [INFO] Final Memory: 44M/833M
  278. [INFO] ------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment