Nvidia nemo rl error handling
Skill autohandai/community-skills/nvidia-nemo-rl-error-handling
Error handling guidelines for NeMo-RL. Covers exception specificity, minimal try bodies, and else blocks.From its SKILL.md
npx -y skills add autohandai/community-skills --skill nvidia-nemo-rl-error-handlingAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 10 stars10 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its file declares
Copied from the file, not written here
The file declares its own license as Apache-2.0 AND CC-BY-4.0. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
0.7 KB, 90 tokens by cl100k_base, as published. Nobody here has run it
Error Handling
Use Specific Exceptions
When using try-except blocks, limit the except to the smallest set of errors possible.
Don't:
try:
open(path, "r").read()
except:
print("Failed to open file")
Do:
try:
open(path, "r").read()
except FileNotFoundError:
print("Failed to open file")
What ships with it: 1 file
11.9 KB alongside SKILL.md
- LICENSE11.9 KB