fsdl-text-recognizer-2022 icon indicating copy to clipboard operation
fsdl-text-recognizer-2022 copied to clipboard

Source of the FSDL 2022 labs, which are at https://github.com/full-stack-deep-learning/fsdl-text-recognizer-2022-labs

Results 21 fsdl-text-recognizer-2022 issues
Sort by recently updated
recently updated
newest added

In order to get CUDA when launching inside VSCode, the `devcontainer.json` needs to include `gpu` arguments for `docker run`: ```json { "runArgs": [ "--gpus", "all" ] } ``` This isn't...

see the [full-stack-deep-learning/website repo's Makefile](https://github.com/full-stack-deep-learning/website/blob/main/Makefile)

There's a really nice Makefile here to build off of: https://github.com/caseyfitz/cookiecutter-disco-pie/blob/4a7f44cae4c40fde154321d5a4ede5034a13666f/%7B%7Bcookiecutter.repo_name%7D%7D/Makefile

Multistage builds help separate heavier development dependencies from lighter production dependencies without compromising on all the things that make containers nice. The classic example is separating compilation from deployment. If...

As noted in discussion [here](https://github.com/full-stack-deep-learning/fsdl-text-recognizer-2022/pull/30#pullrequestreview-1052863477), there can be a difference between the visualization the content of a Tensor as human-interpretable media and the actual contents of that Tensor. So it's...

Corresponding run - https://wandb.ai/fullstackdeeplearning/fsdl-text-recognizer-2022-training/runs/89fvpv8p

draft

Corresponding run - https://wandb.ai/fullstackdeeplearning/fsdl-text-recognizer-2022-training/runs/1t65vww1 Signed-off-by: srbhchandra

draft

either hack it into the `FlaggingCallback` or add a quick batch-style script we can use when logging the test/val sets

pull from here, in particular `environment`: ![image](https://user-images.githubusercontent.com/10442975/184250025-d225dfc2-dbf7-48bd-af4e-cc678a55d190.png)

# Problem we use the IPython `!` magic to execute terminal commands from notebooks, but that causes shell scripts to fail silently -- at most, their errors are printed as...