forked from fidsusj/HateSpeechDetection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
59 lines (47 loc) · 757 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Visual Studio Code
.vscode/*
# PyCharm
.idea/
# virtualenv files
.venv/
# Python specific
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
.coverage
.env
# Mac DS_Store files
.DS_Store
# environment variables
.env
# misc
TODO.md
# data
src/data/original/*
assignments/3/data/*
assignments/4/data/*
!src/data/.gitkeep
**/.ipynb_checkpoints
# latex
*.aux
*.bbl
*.bcf
*.blg
*.fdb_latexmk
*.fls
*.log
*.out
*.toc
**/__latexindent_temp.tex
*.run.xml
*.synctex.gz
# large model files
src/models/fasttext_model.bin
# assignment corrections
assignments/1/correction/*
assignments/2/correction/*
assignments/3/correction/*
assignments/4/correction/*
# src folder as package for tests with nose
HateSpeechDetectionSrc.egg-info/*