index
int64
repo_id
string
file_path
string
content
string
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/ConfigSpace.java
package ai.djl.mxnet.jna; import com.sun.jna.Pointer; import com.sun.jna.Structure; import com.sun.jna.ptr.PointerByReference; import java.util.Arrays; import java.util.List; public class ConfigSpace extends Structure { public int entity_map_size; public PointerByReference entity_map_key; public OtherOpt...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/FunctionInfo.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/JnaUtils.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/LibFeature.java
package ai.djl.mxnet.jna; import com.sun.jna.Pointer; import com.sun.jna.Structure; import java.util.Arrays; import java.util.List; public class LibFeature extends Structure { public String name; public byte enabled; public LibFeature() { } public LibFeature(Pointer peer) { super(peer);...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/LibUtils.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/MXCallbackList.java
package ai.djl.mxnet.jna; import com.sun.jna.Callback; import com.sun.jna.Pointer; import com.sun.jna.Structure; import com.sun.jna.ptr.PointerByReference; import java.util.Arrays; import java.util.List; public class MXCallbackList extends Structure { public int num_callbacks; public CallbacksCallback callba...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/MxnetLibrary.java
package ai.djl.mxnet.jna; import com.sun.jna.Callback; import com.sun.jna.Library; import com.sun.jna.Pointer; import com.sun.jna.ptr.PointerByReference; import java.nio.ByteBuffer; import java.nio.FloatBuffer; import java.nio.IntBuffer; import java.nio.LongBuffer; public interface MxnetLibrary extends Library { ...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/NDArrayOpInfo.java
package ai.djl.mxnet.jna; import com.sun.jna.Callback; import com.sun.jna.Pointer; import com.sun.jna.Structure; import com.sun.jna.ptr.PointerByReference; import java.nio.IntBuffer; import java.util.Arrays; import java.util.List; public class NDArrayOpInfo extends Structure { public ForwardCallback forward; ...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/NativeOpInfo.java
package ai.djl.mxnet.jna; import com.sun.jna.Callback; import com.sun.jna.Pointer; import com.sun.jna.Structure; import com.sun.jna.ptr.PointerByReference; import java.nio.IntBuffer; import java.util.Arrays; import java.util.List; public class NativeOpInfo extends Structure { public ForwardCallback forward; ...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/NativeSize.java
package ai.djl.mxnet.jna; import com.sun.jna.IntegerType; import com.sun.jna.Native; public class NativeSize extends IntegerType { private static final long serialVersionUID = 1L; public static final int SIZE = Native.SIZE_T_SIZE; public NativeSize() { this(0); } public NativeSize(long...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/NativeSizeByReference.java
package ai.djl.mxnet.jna; import com.sun.jna.ptr.ByReference; public class NativeSizeByReference extends ByReference { public NativeSizeByReference() { this(new NativeSize(0)); } @SuppressWarnings("this-escape") public NativeSizeByReference(NativeSize value) { super(NativeSize.SIZE);...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/NativeString.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/ObjectPool.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/OtherOptionEntity.java
package ai.djl.mxnet.jna; import com.sun.jna.Pointer; import com.sun.jna.Structure; import java.util.Collections; import java.util.List; public class OtherOptionEntity extends Structure { public int val; public OtherOptionEntity() { } public OtherOptionEntity(Pointer peer) { super(peer); ...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/OtherOptionSpace.java
package ai.djl.mxnet.jna; import com.sun.jna.Pointer; import com.sun.jna.Structure; import java.util.Arrays; import java.util.List; public class OtherOptionSpace extends Structure { public OtherOptionEntity.ByReference entities; public int entities_size; public OtherOptionSpace() { } public Oth...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/PointerArray.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/StringArray.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-engine/0.34.0/ai/djl/mxnet/jna/package-info.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/MxModelZoo.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/MxZooProvider.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/package-info.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp/embedding/GloveWordEmbeddingBlockFactory.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp/embedding/GloveWordEmbeddingTranslatorFactory.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp/embedding/package-info.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp/embedding
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp/embedding/utils/BuildModelZooWordEmbedding.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp/embedding
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp/embedding/utils/package-info.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp/qa/MxBertQATranslator.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp/qa/MxBertQATranslatorFactory.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp
java-sources/ai/djl/mxnet/mxnet-model-zoo/0.34.0/ai/djl/mxnet/zoo/nlp/qa/package-info.java
/* * Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/engine/OrtEngine.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/engine/OrtEngineProvider.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/engine/OrtModel.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/engine/OrtNDArray.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/engine/OrtNDManager.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/engine/OrtSymbolBlock.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/engine/OrtUtils.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/engine/package-info.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/OrtHfModelZoo.java
/* * Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/OrtHfZooProvider.java
/* * Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/OrtModelZoo.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/OrtZooProvider.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/package-info.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/nlp
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/nlp/textgeneration/OrtGptTranslator.java
/* * Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/nlp
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/nlp/textgeneration/OrtGptTranslatorFactory.java
/* * Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/nlp
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/nlp/textgeneration/package-info.java
/* * Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/tabular
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/tabular/softmax_regression/IrisClassificationTranslatorFactory.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/tabular
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/tabular/softmax_regression/IrisFlower.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/tabular
java-sources/ai/djl/onnxruntime/onnxruntime-engine/0.34.0/ai/djl/onnxruntime/zoo/tabular/softmax_regression/package-info.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/opencv/opencv/0.34.0/ai/djl
java-sources/ai/djl/opencv/opencv/0.34.0/ai/djl/opencv/OpenCVImage.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/opencv/opencv/0.34.0/ai/djl
java-sources/ai/djl/opencv/opencv/0.34.0/ai/djl/opencv/OpenCVImageFactory.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/opencv/opencv/0.34.0/ai/djl
java-sources/ai/djl/opencv/opencv/0.34.0/ai/djl/opencv/package-info.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/engine/PaddlePredictor.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/engine/PpDataType.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/engine/PpEngine.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/engine/PpEngineProvider.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/engine/PpModel.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/engine/PpNDArray.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/engine/PpNDManager.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/engine/PpPredictor.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/engine/PpSymbolBlock.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/engine/package-info.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/jni/JniUtils.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/jni/LibUtils.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/jni/PaddleLibrary.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-engine/0.27.0/ai/djl/paddlepaddle/jni/package-info.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/PpModelZoo.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/PpZooProvider.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/package-info.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/imageclassification/PpImageClassificationTranslatorFactory.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/imageclassification/PpWordRotateTranslator.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/imageclassification/PpWordRotateTranslatorFactory.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/imageclassification/package-info.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/objectdetection/BoundFinder.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/objectdetection/PpFaceDetectionTranslator.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/objectdetection/PpFaceDetectionTranslatorFactory.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/objectdetection/PpWordDetectionTranslator.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/objectdetection/PpWordDetectionTranslatorFactory.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/objectdetection/package-info.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/wordrecognition/PpWordRecognitionTranslator.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/wordrecognition/PpWordRecognitionTranslatorFactory.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv
java-sources/ai/djl/paddlepaddle/paddlepaddle-model-zoo/0.27.0/ai/djl/paddlepaddle/zoo/cv/wordrecognition/package-info.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/CodecUtils.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/Connection.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/MpiEngineProvider.java
/* * Copyright 2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/PyEngine.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/PyEngineProvider.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/PyEnv.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/PyModel.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/PyPredictor.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/PyProcess.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/RollingBatch.java
/* * Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/python/python/0.28.0/ai/djl/python
java-sources/ai/djl/python/python/0.28.0/ai/djl/python/engine/package-info.java
/* * Copyright 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch/engine/PtDeviceType.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch/engine/PtEngine.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch/engine/PtEngineProvider.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch/engine/PtGradientCollector.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch/engine/PtModel.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch/engine/PtNDArray.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch/engine/PtNDArrayEx.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...
0
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch
java-sources/ai/djl/pytorch/pytorch-engine/0.34.0/ai/djl/pytorch/engine/PtNDArrayIndexer.java
/* * Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance * with the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" fil...