forked from ChihebTrabelsi/deep_complex_networks
-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
.gitignore
50 lines (46 loc) · 1.17 KB
/
.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
# Global ignore patters. They cause the files with the following names and
# extensions to be ignored in general by Git.
#
# We ignore these files because they're usually binary and/or very large, which
# greatly bloats the repository and its clone time. In this category are the
# files .h5/.hdf5/.txt/.log and files named *log_file*. Some of these logs are
# enormous.
#
# We also ignore files that can be easily reproduced one way or another by
# compilers, like .pyc/.o/.so/.a/.lib.
#
# Lastly we ignore files and directories that signal their temporary character
# with a name that contains "tmp".
#
# ****************************************************************************
# ** DO NOT put ignore patterns here that are private to your clone of this **
# ** repository. Those belong in your clone's .git/info/exclude file. **
# ****************************************************************************
#
**/*.h5
**/*.hdf5
**/*.txt
**/*log_file*
**/*.log
**/*.out
**/*.pyc
**/*.o
**/*.so
**/*.a
**/*.lib
**/*.dll
**/*.exe
**/*tmp*
**/*.yaml
**/*.npy
**/slurm-*.out
keras_complex.egg-info/
build/
# Ignore virtual environment
venv
.venv
# IDE
.vscode
.idea
dist/*
__pycache__/*