Tuesday, October 29, 2019

Productivity Tip

1. Have a Cache.py and Info_Cache.py to record repeated used code and info;
2. Read briefly for other ppl implementation, come back and read again after your implementation (see important things and get insightful things quicker);
3. Set shortcut for repeated access folder and file (e.g., item 1 file)
4. have a logs of what you have done (for those be mindful or to undo later)
5. use bookmark in pycharm is possible if you are changing multiple files
6. change portion by portion - test each portion before moving on to the next one
7. familiar with the software engineering pattern, use them if possible
   - with distributedstrategy: (what is this pattern?)
8. no wechat, etc. when you are doing big refactoring, easily loss track


[easier step each time - it lead you to the next step]
change run_cv_supervised
-> discover [I just need to have a method to split out X_train,Y_train,X_test,y_test]
Delete run_cv_supervised back and change run_cv_normal
->discover [I can separate the cross validation recording out to make it simpler]

No comments:

Post a Comment