-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
41 lines (33 loc) · 814 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
# ignore Jetbrains
.idea/*
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# ignore wandb
wandb/*
# ignore the contents of the SW corpus, as it can be downloaded from somewhere else
german/*
!german/README.md
# ignore the generated .wav files and their directories
# anonymized and demo .wav files cannot be generated and have to be stored
wavs/split-10/*
# ignore all features, as they can be created
embeddings-ge2e/*
!embeddings-ge2e/README.md
embeddings-trill/*
!embeddings-trill/README.md
feature-streams/*
!feature-streams/README.md
# ignore all trained models
models/*
!models/README.md
# ignore all produced predictions
predictions/*
!predictions/README.md
# ignore the following files
test.py
demo_knn.py
server_predict.py
server_update_embeddings.py
keras_classifier.py