chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:47:05 +08:00
commit 4f3b7da785
7394 changed files with 2005594 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#!/bin/bash
echo 'Downloading onnx models...'
mvn clean compile
mvn exec:java -Dexec.mainClass="org.eclipse.deeplearning4j.testinit.DownloadKt" -Dexec.args="./src/main/resources/onnx-models.txt"
echo 'Done downloading onnx models'
for file in `cat src/main/resources/onnx-models.txt`; do
#echo "$file"
mvn exec:java -Dexec.mainClass="org.eclipse.deeplearning4j.testinit.OnnxConvertKt" -Dexec.args="$file"
done