Adding in new trained models, as well as new tools for reviewing the results.

Added in testing flow for testing our unfininshed/finished models.

Also adding a test dataset with one picture of every pokemon in the game.
This commit is contained in:
Lucas Oskorep
2019-04-30 13:00:24 -05:00
parent 601f4f7633
commit fbac5d519a
17 changed files with 1643 additions and 73 deletions
+4
View File
@@ -0,0 +1,4 @@
import pandas as pd
import os
pd.DataFrame(sorted([f.name for f in os.scandir("./data/train") if f.is_dir()])).to_csv("labels.txt", index=False, header=False)