mirror of
https://github.com/clearml/clearml
synced 2025-01-31 00:56:57 +00:00
Auto detect tensorflow-intel as tensorflow (there is no tensorflow-intel package)
This commit is contained in:
parent
4bd6b20a62
commit
0ed5ff4123
@ -97,6 +97,11 @@ class ScriptRequirements(object):
|
||||
for fname, lines in skimage.items():
|
||||
modules.add('scikit_image', fname, lines)
|
||||
|
||||
if 'tensorflow-intel' in modules:
|
||||
tfmodule = modules.pop('tensorflow-intel', {})
|
||||
for fname, lines in tfmodule.items():
|
||||
modules.add('tensorflow', fname, lines)
|
||||
|
||||
# if we have torch and it supports tensorboard, we should add that as well
|
||||
# (because it will not be detected automatically)
|
||||
if 'torch' in modules and 'tensorboard' not in modules and 'tensorboardX' not in modules:
|
||||
|
Loading…
Reference in New Issue
Block a user