Skip to content

Commit

Permalink
feat(model): implement model sharding management
Browse files Browse the repository at this point in the history
- Add sharding functionality to improve performance
- Update documentation to make reading code easier
- Modify .gitignore for stricter file management
  • Loading branch information
leafspark committed Aug 5, 2024
1 parent cfa61fd commit c9167a7
Show file tree
Hide file tree
Showing 3 changed files with 567 additions and 38 deletions.
24 changes: 19 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ __pycache__/
# Ignore everything
*

# But allow these file types
!*.py
# Allow specific file types globally
!*.bat
!*.txt
!*.md
Expand All @@ -15,11 +14,26 @@ __pycache__/
# Allow these files
!.pre-commit-config.yaml

# Allow assets folder
# Allow src folder and its .py files
!src/
src/*
!src/*.py

# Allow docs folder and its .py files
!docs/
docs/*
!docs/*.py

# Allow assets folder, but only .svg, .png, and .ico files
!assets/
!assets/**
assets/*
!assets/*.svg
!assets/*.png
!assets/*.ico

# Allow .github folder and its contents
!.github/
!.github/**

# Don't ignore .gitignore
!.gitignore
!.gitignore
Loading

0 comments on commit c9167a7

Please sign in to comment.