Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add gitignore, remove unused imports, add requirements.txt #1

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
kaokore

1 change: 0 additions & 1 deletion code/dataloader_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import csv
import os
from PIL import Image
import torch
from torch.utils.data import Dataset


Expand Down
1 change: 0 additions & 1 deletion code/keras_classification_train.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import numpy as np
import os
import keras as k
import lycon
import pandas as pd
Expand Down
2 changes: 0 additions & 2 deletions download.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
#!/usr/bin/env python3

import argparse
import glob
import os
import subprocess
import sys
from os.path import join, realpath, dirname
import urllib.request
Expand Down
7 changes: 7 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
pillow==7.0.*
torch==1.4.*
tqdm==4.43.*
numpy==1.18.*
pandas==1.0.*
keras==2.3.*
lycon==0.2.*