com.simiacryptus.util.Util类的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(7.4k)|赞(0)|评价(0)|浏览(263)

本文整理了Java中com.simiacryptus.util.Util类的一些代码示例,展示了Util类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util类的具体详情如下:
包路径:com.simiacryptus.util.Util
类名称:Util

Util介绍

[英]The type Util.
[中]类型为Util。

代码示例

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * Add weights bias layer.
  3. *
  4. * @param f the f
  5. * @return the bias layer
  6. */
  7. @Nonnull
  8. public BiasLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, bias);
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/java-util

  1. /**
  2. * Cache input stream.
  3. *
  4. * @param url the url
  5. * @return the input stream
  6. * @throws IOException the io exception
  7. * @throws NoSuchAlgorithmException the no such algorithm exception
  8. * @throws KeyManagementException the key management exception
  9. */
  10. public static InputStream cacheStream(@javax.annotation.Nonnull final URI url) throws IOException, NoSuchAlgorithmException, KeyManagementException {
  11. return com.simiacryptus.util.Util.cacheStream(url.toString(), new File(url.getPath()).getName());
  12. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * Gets test report location.
  3. *
  4. * @param sourceClass the source class
  5. * @param suffix the suffix
  6. * @return the test report location
  7. */
  8. @Nonnull
  9. public static File getTestReportLocation(@Nonnull final Class<?> sourceClass, @Nonnull final CharSequence... suffix) {
  10. final StackTraceElement callingFrame = Thread.currentThread().getStackTrace()[2];
  11. final CharSequence methodName = callingFrame.getMethodName();
  12. final String className = sourceClass.getCanonicalName();
  13. String classFilename = className.replaceAll("\\.", "/").replaceAll("\\$", "/");
  14. @Nonnull File path = new File(Util.mkString(File.separator, "reports", classFilename));
  15. for (int i = 0; i < suffix.length - 1; i++) path = new File(path, suffix[i].toString());
  16. String testName = suffix.length == 0 ? String.valueOf(methodName) : suffix[suffix.length - 1].toString();
  17. File parent = path;
  18. //parent = new File(path, new SimpleDateFormat("yyyy-MM-dd_HHmmss").format(new Date()));
  19. path = new File(parent, testName + ".md");
  20. path.getParentFile().mkdirs();
  21. logger.info(String.format("Output Location: %s", path.getAbsoluteFile()));
  22. return path;
  23. }

代码示例来源:origin: com.simiacryptus/java-util

  1. /**
  2. * Cache input stream.
  3. *
  4. * @param file the file
  5. * @param url the url
  6. * @return the input stream
  7. * @throws IOException the io exception
  8. */
  9. public static InputStream cacheLocal(String file, URI url) throws IOException {
  10. return cacheLocal(file, getStreamSupplier(url));
  11. }

代码示例来源:origin: com.simiacryptus/literate-reporting

  1. /**
  2. * Code file string.
  3. *
  4. * @param file the file
  5. * @return the string
  6. */
  7. public CharSequence pathTo(@javax.annotation.Nonnull File file) {
  8. return stripPrefix(Util.toString(pathToFile(getReportFile(), file)), "/");
  9. }

代码示例来源:origin: com.simiacryptus/java-util

  1. escape = true;//
  2. } else if (eval instanceof Component) {
  3. str = png(Util.toImage((Component) eval), "Result");
  4. escape = false;
  5. } else if (eval instanceof BufferedImage) {

代码示例来源:origin: com.simiacryptus/mindseye-test

  1. } catch (RuntimeException e) {
  2. e.printStackTrace();
  3. Util.sleep(1000);
  4. } catch (OutOfMemoryError e) {
  5. e.printStackTrace();
  6. Util.sleep(1000);

代码示例来源:origin: com.simiacryptus/mindseye-research

  1. /**
  2. * Sets timeout.
  3. *
  4. * @param number the number
  5. * @param units the units
  6. * @return the timeout
  7. */
  8. @Nonnull
  9. public LayerRateDiagnosticTrainer setTimeout(final int number, @Nonnull final TimeUnit units) {
  10. return setTimeout(number, Util.cvt(units));
  11. }

代码示例来源:origin: com.simiacryptus/java-util

  1. /**
  2. * Cache file file.
  3. *
  4. * @param url the url
  5. * @return the file
  6. * @throws IOException the io exception
  7. * @throws NoSuchAlgorithmException the no such algorithm exception
  8. * @throws KeyManagementException the key management exception
  9. */
  10. public static File cacheFile(@javax.annotation.Nonnull final URI url) throws IOException, NoSuchAlgorithmException, KeyManagementException {
  11. return com.simiacryptus.util.Util.cacheFile(url.toString(), new File(url.getPath()).getName());
  12. }

代码示例来源:origin: com.simiacryptus/char-trie

  1. private static void read() {
  2. try {
  3. InputStream in = Util.cacheLocal(file, new URI(url));
  4. String txt = new String(IOUtils.toByteArray(in), "UTF-8").replaceAll("\r", "");
  5. for (String paragraph : txt.split("\n\\s*\n")) {
  6. queue.add(new Shakespeare(paragraph));
  7. }
  8. } catch (final IOException e) {
  9. // Ignore... end of stream
  10. } catch (final RuntimeException e) {
  11. if (!(e.getCause() instanceof InterruptedException)) throw e;
  12. } catch (final Exception e) {
  13. throw new RuntimeException(e);
  14. }
  15. }
  16. }

代码示例来源:origin: com.simiacryptus/literate-reporting

  1. @Override
  2. @Nonnull
  3. public File pngFile(@Nonnull final BufferedImage rawImage, final File file) {
  4. @Nullable final BufferedImage stdImage = Util.maximumSize(rawImage, getMaxImageSize());
  5. try {
  6. if (stdImage != rawImage) {
  7. @Nonnull final String rawName = file.getName().replace(".png", "_raw.png");
  8. ImageIO.write(rawImage, "png", new File(file.getParent(), rawName));
  9. }
  10. ImageIO.write(stdImage, "png", file);
  11. } catch (IOException e) {
  12. throw new RuntimeException(e);
  13. }
  14. return file;
  15. }

代码示例来源:origin: com.simiacryptus/literate-reporting

  1. escape = true;//
  2. } else if (eval instanceof Component) {
  3. str = png(Util.toImage((Component) eval), "Result");
  4. escape = false;
  5. } else if (eval instanceof BufferedImage) {

代码示例来源:origin: com.simiacryptus/java-util

  1. /**
  2. * Code file string.
  3. *
  4. * @param file the file
  5. * @return the string
  6. */
  7. public CharSequence pathTo(@javax.annotation.Nonnull File file) {
  8. return stripPrefix(Util.toString(pathToFile(getReportFile(), file)), "/");
  9. }

代码示例来源:origin: com.simiacryptus/mindseye-labs

  1. } catch (RuntimeException e) {
  2. e.printStackTrace();
  3. Util.sleep(1000);
  4. } catch (OutOfMemoryError e) {
  5. e.printStackTrace();
  6. Util.sleep(1000);

代码示例来源:origin: com.simiacryptus/mindseye-research

  1. /**
  2. * Sets timeout.
  3. *
  4. * @param number the number
  5. * @param units the units
  6. * @return the timeout
  7. */
  8. @Nonnull
  9. public RoundRobinTrainer setTimeout(final int number, @Nonnull final TimeUnit units) {
  10. return setTimeout(number, Util.cvt(units));
  11. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * From s 3 vgg 16 hdf 5.
  3. *
  4. * @return the vgg 16 hdf 5
  5. */
  6. public static ImageClassifier fromHDF5() {
  7. try {
  8. return fromHDF5(Util.cacheFile(TestUtil.S3_ROOT.resolve("vgg19_weights.h5")));
  9. } catch (IOException | KeyManagementException | NoSuchAlgorithmException e) {
  10. throw new RuntimeException(e);
  11. }
  12. }

代码示例来源:origin: com.simiacryptus/char-trie

  1. private static void read() {
  2. try {
  3. InputStream in = Util.cacheLocal(file, new URI(url));
  4. String txt = new String(IOUtils.toByteArray(in), "UTF-8").replaceAll("\r", "");
  5. List<CharSequence> list = Arrays.stream(txt.split("\n")).map(x -> x.replaceAll("[^\\w]", "")).collect(Collectors.toList());
  6. Collections.shuffle(list);
  7. for (CharSequence paragraph : list) {
  8. queue.add(new EnglishWords(paragraph));
  9. }
  10. } catch (final IOException e) {
  11. // Ignore... end of stream
  12. } catch (final RuntimeException e) {
  13. if (!(e.getCause() instanceof InterruptedException)) throw e;
  14. } catch (final Exception e) {
  15. throw new RuntimeException(e);
  16. }
  17. }
  18. }

代码示例来源:origin: com.simiacryptus/java-util

  1. @Override
  2. @Nonnull
  3. public File pngFile(@Nonnull final BufferedImage rawImage, final File file) {
  4. @Nullable final BufferedImage stdImage = Util.maximumSize(rawImage, getMaxImageSize());
  5. try {
  6. if (stdImage != rawImage) {
  7. @Nonnull final String rawName = file.getName().replace(".png", "_raw.png");
  8. ImageIO.write(rawImage, "png", new File(file.getParent(), rawName));
  9. }
  10. ImageIO.write(stdImage, "png", file);
  11. } catch (IOException e) {
  12. throw new RuntimeException(e);
  13. }
  14. return file;
  15. }

代码示例来源:origin: com.simiacryptus/mindseye-test

  1. BufferedImage image = Util.toImage(TestUtil.plot(history));
  2. if (null != image) ImageIO.write(image, "png", log.file(training_name));
  3. } catch (IOException e) {

代码示例来源:origin: com.simiacryptus/mindseye-java

  1. /**
  2. * Add weights bias key.
  3. *
  4. * @param f the f
  5. * @return the bias key
  6. */
  7. @Nonnull
  8. public BiasLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, bias);
  10. return this;
  11. }

相关文章