Skip to content

Commit 41b8f82

Browse files
authored
Merge pull request #2 from Hepheir/main
기본 정보 추가 (README.md)
2 parents 6582ed6 + 6f11d61 commit 41b8f82

File tree

2 files changed

+102
-0
lines changed

2 files changed

+102
-0
lines changed

.gitignore

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Installer logs
7+
pip-log.txt
8+
pip-delete-this-directory.txt
9+
10+
# Unit test / coverage reports
11+
htmlcov/
12+
.tox/
13+
.nox/
14+
.coverage
15+
.coverage.*
16+
.cache
17+
nosetests.xml
18+
coverage.xml
19+
*.cover
20+
*.py,cover
21+
.hypothesis/
22+
.pytest_cache/
23+
cover/
24+
25+
# Jupyter Notebook
26+
.ipynb_checkpoints
27+
28+
# IPython
29+
profile_default/
30+
ipython_config.py
31+
32+
# pyenv
33+
# For a library or package, you might want to ignore these files since the code is
34+
# intended to run in multiple environments; otherwise, check them in:
35+
# .python-version
36+
37+
# pipenv
38+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
39+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
40+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
41+
# install all needed dependencies.
42+
#Pipfile.lock
43+
44+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
45+
__pypackages__/
46+
47+
# Celery stuff
48+
celerybeat-schedule
49+
celerybeat.pid
50+
51+
# SageMath parsed files
52+
*.sage.py
53+
54+
# Environments
55+
.env
56+
.venv
57+
env/
58+
venv/
59+
ENV/
60+
env.bak/
61+
venv.bak/
62+
63+
# Spyder project settings
64+
.spyderproject
65+
.spyproject
66+
67+
# Rope project settings
68+
.ropeproject
69+
70+
# mkdocs documentation
71+
/site
72+
73+
# mypy
74+
.mypy_cache/
75+
.dmypy.json
76+
dmypy.json
77+
78+
# Pyre type checker
79+
.pyre/
80+
81+
# pytype static type analyzer
82+
.pytype/
83+
84+
# Cython debug symbols
85+
cython_debug/

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Preprocessing model through non uniform filtering for CNN
2+
3+
[사용자 선호 분류 모델][link/mother-model]의 전처리 모델.
4+
5+
* 사용자 선호 분류 모델의 저장소에서 서브모듈로 사용
6+
7+
## How to install
8+
9+
부모 저장소인 [사용자 선호 분류 모델 저장소][link/mother-model]를 클론하여 사용.
10+
11+
```bash
12+
# Clone this repository
13+
git clone --recursive https://github.com/DGU-DAI-Lab/Personal-preference-classification-model.git
14+
cd Personal-preference-classification-model
15+
```
16+
17+
[link/mother-model]: https://github.com/DGU-DAI-Lab/Personal-preference-classification-model

0 commit comments

Comments
 (0)