Bogdan Biv
How to use recent Tensorflow.JS? TF from deno.land/x/tensorflow@v0.21 appears to work, but it's old
I've only tried the TF package from deno.land/x/tensorflow@v0.21 with the readme page example. I'm hoping there are better options - read it as more recent and maintained ports of TF.
Here's the output of my trial of using jsdelivr version in Deno:
Would there be other options?
3 replies
Permissions dump
Is there a way to dump permissions to console or to a shell file after answering the prompts interactively?
deno run --something-dump-permission="launch_deno.sh" smth.ts
✅ Granted env access to all.
✅ Granted read access to "/home/bogdanbiv/.cache/deno/npm/node_modules".
Desired output:
deno run --allow-env --allow-read=/home/bogdanbiv/.cache/deno/npm/node_modules
Update: On the other hand, I think I could try to do a TS that does this1 replies