Skip to content
This repository was archived by the owner on Jun 22, 2022. It is now read-only.

Commit 4937bc7

Browse files
author
minerva-ml
committed
Merge branch 'master' of github.com:neptune-ml/open-solution-googleai-object-detection
2 parents 5cc6847 + 1e41b73 commit 4937bc7

File tree

3 files changed

+143
-0
lines changed

3 files changed

+143
-0
lines changed

.github/ISSUE_TEMPLATE/bug.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: bug
3+
about: Create bug report
4+
5+
---
6+
7+
There are two things that will make the processing of your issue faster:
8+
1. Make sure that you are using the latest version of the code,
9+
1. In case of bug issue, it would be nice to provide more technical details such like execution command, error message or script that reproduces your bug.
10+
#
11+
12+
Thanks!
13+
14+
Kamil & Jakub,
15+
16+
*core contributors to the Open Solution*
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: everything else
3+
about: Suggest an idea for this project
4+
5+
---
6+
7+

.gitignore

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
.pytest_cache
6+
tests/.cache
7+
8+
# C extensions
9+
*.so
10+
11+
# neptune, pycharm
12+
.cache
13+
.cache/
14+
.idea/
15+
.idea_modules/
16+
*_local.yaml
17+
out/
18+
output
19+
output/
20+
*.log
21+
target/
22+
devbook.ipynb
23+
devbook_local.ipynb
24+
25+
# Distribution / packaging
26+
.Python
27+
env/
28+
build/
29+
develop-eggs/
30+
dist/
31+
downloads/
32+
eggs/
33+
.eggs/
34+
lib/
35+
lib64/
36+
parts/
37+
sdist/
38+
var/
39+
wheels/
40+
*.egg-info/
41+
.installed.cfg
42+
*.egg
43+
44+
# PyInstaller
45+
# Usually these files are written by a python script from a template
46+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
47+
*.manifest
48+
*.spec
49+
50+
# Installer logs
51+
pip-log.txt
52+
pip-delete-this-directory.txt
53+
54+
# Unit test / coverage reports
55+
htmlcov/
56+
.tox/
57+
.coverage
58+
.coverage.*
59+
nosetests.xml
60+
coverage.xml
61+
*.cover
62+
.hypothesis/
63+
64+
# Translations
65+
*.mo
66+
*.pot
67+
68+
# Django stuff:
69+
local_settings.py
70+
71+
# Flask stuff:
72+
instance/
73+
.webassets-cache
74+
75+
# Scrapy stuff:
76+
.scrapy
77+
78+
# Sphinx documentation
79+
docs/_build/
80+
81+
# Jupyter Notebook
82+
Untitled*.ipynb
83+
.ipynb_checkpoints
84+
85+
# pyenv
86+
.python-version
87+
88+
# celery beat schedule file
89+
celerybeat-schedule
90+
91+
# SageMath parsed files
92+
*.sage.py
93+
94+
# dotenv
95+
.env
96+
97+
# virtualenv
98+
.venv
99+
venv/
100+
ENV/
101+
102+
# Spyder project settings
103+
.spyderproject
104+
.spyproject
105+
106+
# Rope project settings
107+
.ropeproject
108+
109+
# mkdocs documentation
110+
/site
111+
112+
# mypy
113+
.mypy_cache/
114+
115+
# Working directories
116+
examples/cache/
117+
configs/neptune_config_local.yaml
118+
notebooks/local_playground.ipynb
119+
configs/neptune_config_home.yaml
120+
configs/neptune_config_cluster.yaml

0 commit comments

Comments
 (0)