File tree 3 files changed +14
-11
lines changed
3 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 19
19
20
20
- name : Testing
21
21
run : make test
22
+
23
+ - name : Refactoring
24
+ run : make refactor
Original file line number Diff line number Diff line change 9
9
black * .py
10
10
11
11
lint :
12
- pylint --disable=R,C,pointless-string-statement --ignore-patterns=test_.*? py * .py
12
+ pylint --disable=R,C,pointless-string-statement --ignore=UI.py --ignore -patterns=test_.*? py * .py
13
13
14
14
container-lint :
15
15
docker run --rm -i hadolint/hadolint < Dockerfile
@@ -19,4 +19,4 @@ refactor: format lint
19
19
deploy :
20
20
# deploy goes here
21
21
22
- all : install test format deploy
22
+ all : install test refactor deploy
Original file line number Diff line number Diff line change 1
1
## Deep Reinforcement Learning part
2
2
3
- import random
4
- import copy
5
- import math
3
+ # import random
4
+ # import copy
5
+ # import math
6
6
7
- import torch
8
- from torch import optim
9
- from torch import nn
10
- import torch .nn .functional as F
11
- import numpy as np
7
+ # import torch
8
+ # from torch import optim
9
+ # from torch import nn
10
+ # import torch.nn.functional as F
11
+ # import numpy as np
12
12
13
- from board import Board
13
+ # from board import Board
14
14
15
15
"""
16
16
2023.06.14 update: Empty all the stuff and start from scratch based on another approach
You can’t perform that action at this time.
0 commit comments