Skip to content

Commit

Permalink
include gitignore
Browse files Browse the repository at this point in the history
Signed-off-by: rmdg88 <[email protected]>
  • Loading branch information
rmdg88 committed Oct 4, 2024
1 parent aeddacf commit 77e7d98
Showing 1 changed file with 94 additions and 0 deletions.
94 changes: 94 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
### Custom ###

*.model
*.vocab
*.env
*DS_Store
*~
*.so
*.a
*.exe
dist/*
build/*
externals/*
tmp/*
_legacy*
data/documents/*.csv
data/documents/*.json
data/documents/*/*.nlp.json
data/wikipedia/pdfs/*.json
data/wikipedia/pdfs/*.nlp.json
data/models/*.json
data/models/*.jsonl
data/models/*.bin
data/models/*.txt
data/models/*.vec
data/models/*.out
data/*/*.json
data/*/*.jsonl
data/*/*/*.jsonl
data/*/*.xml*
data/*/*/*.xml*
data/*/*.gz
data/*/*/*.csv
*.bin
*.gz
*.tar
_models/*
data_*
build_*
deepsearch_glm/resources/*/*/*.txt
deepsearch_glm/resources/*/*/*.json
deepsearch_glm/resources/*/*/*.jsonl
deepsearch_glm/resources/*/*/*/*.txt
deepsearch_glm/resources/*/*/*/*.json
deepsearch_glm/resources/*/*/*/*.jsonl
deepsearch_glm/resources/data_nlp/*.txt
deepsearch_glm/resources/data_nlp/*.json
deepsearch_glm/resources/data_nlp/*.jsonl
tests/data/docs/*.json
tests/data/texts/*.jsonl
tests/data/glm/test_01A/glm_ref/*.csv
tests/data/glm/test_01A/glm_ref/*.txt

### CXX ###

# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app

### Python ###

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

0 comments on commit 77e7d98

Please sign in to comment.