Closed AwePhD closed 7 months ago
Neither settings work for me VSCode: 1.87.1 (Stable) Commit: 1e790d77f81672c49be070e04474901747115651
@DonJayamanne thanks for this extansion! as of today this fix still doesn't work (on pre-release as well)
this workaround worked for me:
Current workaround, lowercase the B in the JSON config manually. From:
"tensorBoard.logDirectory": "/path/to/log/dir"
To:
"tensorboard.logDirectory": "/path/to/log/dir"
The issue does not seem to be fixed in the last version (v2023.10.1002992421
). Do any maintainer have an idea on when this fix will be delivered? Thanks for your work!
The setting of the log dir is not taken into account in the extension. Namely, setting the tensorboard log dir does not disable the prompt.
In the related commit, in
package.json
, we set this setting to betensorBoard
. But in the actualsrc/configuration.ts
, we search atensorboard
. I guess if we uppercase the B on this line, it would fix the problem? (I am not a JS dev, so I cannot be sure at all)Current workaround, lowercase the B in the JSON config manually. From:
To: