From the uDemy course on LLM engineering.
https://www.udemy.com/course/llm-engineering-master-ai-and-large-language-models
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
417 B
49 lines
417 B
# Version control |
|
.git |
|
.gitignore |
|
|
|
# Python |
|
__pycache__/ |
|
*.py[cod] |
|
*$py.class |
|
*.so |
|
.Python |
|
.env |
|
.venv |
|
env/ |
|
venv/ |
|
ENV/ |
|
*.egg-info/ |
|
dist/ |
|
build/ |
|
|
|
# Logs and databases |
|
*.log |
|
logs/ |
|
*.sqlite |
|
|
|
# Downloads and temporary files |
|
downloads/ |
|
tmp/ |
|
temp/ |
|
|
|
# IDE specific files |
|
.idea/ |
|
.vscode/ |
|
*.swp |
|
*.swo |
|
|
|
# Docker |
|
Dockerfile |
|
.dockerignore |
|
|
|
# Documentation |
|
docs/ |
|
*.md |
|
LICENSE |
|
|
|
# Test files |
|
tests/ |
|
.pytest_cache/ |
|
.coverage |
|
htmlcov/ |