Skip to content

Commit

Permalink
[change] .gitignore。微修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Simo-C3 committed Sep 17, 2022
1 parent 084c7f1 commit abe4ae1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/assets/dataset
4 changes: 2 additions & 2 deletions RasLearnSignCNN.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import numpy as np
import time
import os
imgW, imgH = 50, 50
imgW, imgH = 100, 100
nClass = 11

def buildModelCNN():
Expand All @@ -35,7 +35,7 @@ def buildModelCNN():
if not os.path.exists(signFileName):
print("Sign File does not exist")
exit()
saveModelFile = "./RasSignModelCNN_1.h5"
saveModelFile = "./assets/model/RasSignModelCNN_1.h5"
sTime = time.time()
# フォント画像のデータを読む
xy = np.load(signFileName)
Expand Down
1 change: 1 addition & 0 deletions assets/model/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
## NN モデル

0 comments on commit abe4ae1

Please sign in to comment.