fbac5d519a
Added in testing flow for testing our unfininshed/finished models. Also adding a test dataset with one picture of every pokemon in the game.
5 lines
160 B
Python
5 lines
160 B
Python
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)
|