Skip to content

Instantly share code, notes, and snippets.

View cnuernber's full-sized avatar

Chris Nuernberger cnuernber

View GitHub Profile
@woxtu
woxtu / deps.edn
Last active July 13, 2020 12:26
Object detection in Clojure using Deep Java Library
{:deps
{ai.djl/api {:mvn/version "0.4.1"}
ai.djl.mxnet/mxnet-model-zoo {:mvn/version "0.4.1"}
ai.djl.mxnet/mxnet-native-auto {:mvn/version "1.6.0"}
org.apache.logging.log4j/log4j-slf4j-impl {:mvn/version "2.13.0"}}}
@animeshtrivedi
animeshtrivedi / ParquetToArrow.java
Last active March 8, 2022 12:04
Example program to convert Apache Parquet data to Apache Arrow
/* This code snippet is a part of the blog at
https://github.com/animeshtrivedi/blog/blob/master/post/2017-12-26-arrow.md
*/
import com.google.common.collect.ImmutableList;
import org.apache.arrow.memory.RootAllocator;
import org.apache.arrow.vector.*;
import org.apache.arrow.vector.dictionary.DictionaryProvider;
import org.apache.arrow.vector.types.FloatingPointPrecision;
import org.apache.arrow.vector.types.pojo.ArrowType;