Some general tips to avoid common code errors, also TF has many errors so we avoid this and ask to use pytorch @return: (str) common code errors
()
| 531 | |
| 532 | @staticmethod |
| 533 | def _common_code_errors(): |
| 534 | """ |
| 535 | Some general tips to avoid common code errors, also TF has many errors so we avoid this and ask to use pytorch |
| 536 | @return: (str) common code errors |
| 537 | """ |
| 538 | return ( |
| 539 | "Make sure to import everything that you are using.\n" |
| 540 | "Reflect on the code before writing it to make sure there are no bugs or compilation issues.\n" |
| 541 | "YOU MUST USE COMMANDS PROPERLY. Do not use the word COMMAND for the command that is incorrect. You must use an actual command (e.g. EDIT, REPLACE...) NOT THE WORD COMMAND. Do not make this mistake.\n" |
| 542 | "Under no circumstances should you use tensorflow or keras. Only use pytorch for scikitlearn for deep learning.\n" |
| 543 | ) |
| 544 | |
| 545 | def command_descriptions(self): |
| 546 | """ |
no outgoing calls
no test coverage detected