!mkdir -p '{FRAME_OUTPUT_DIR}'
%cd /home/jovyan/project/DAIN
!MKL_THREADING_LAYER=AMD
!python -W ignore colab_interpolate.py --netName DAIN_slowmotion --time_step {fps/TARGET_FPS} --start_frame 1 --end_frame {frame_count} --frame_input_dir '{FRAME_INPUT_DIR}' --frame_output_dir '{FRAME_OUTPUT_DIR}'
Run Code Online (Sandbox Code Playgroud)
输出这个...
我尝试将 FORCE 设置为 1 但没有任何反应,输出然后就消失了......
/home/jovyan/project/DAIN
Error: mkl-service + Intel(R) MKL: MKL_THREADING_LAYER=INTEL is incompatible with libgomp.so.1 library.
Try to import numpy first or set the threading layer accordingly. Set MKL_SERVICE_FORCE_INTEL to force it.```
Hey there, can anyone help me solve this problem with DAIN? I'm using Saturn Cloud with pytorch but it outputs this...
Run Code Online (Sandbox Code Playgroud) tasks.register('uberJar', Jar) {
archiveClassifier = 'Uber'
manifest {
attributes["Main-Class"] = mainClassName
}
from sourceSets.main.output
dependsOn configurations.runtimeClasspath
from {
configurations.runtimeClasspath.findAll { it.name.endsWith('jar') }.collect { zipTree(it) }
}
}
Run Code Online (Sandbox Code Playgroud)
这似乎不起作用...我正在尝试制作一个具有多个依赖项的 uber jar,One-Jar 似乎已经过时,并且我无法使用默认的 gradle uberJar 构建器或影子 jar。