mirror of https://github.com/leafspark/AutoGGUF
fix: update regex for progress tracking
- update regex for progress tracking - add .env.example file - update .gitignore
This commit is contained in:
parent
3b96deb9c1
commit
32f29b9f7c
|
@ -0,0 +1,4 @@
|
||||||
|
AUTOGGUF_RESOLUTION=1650x1100
|
||||||
|
AUTOGGUF_THEME=
|
||||||
|
AUTOGGUF_CHECK_BACKEND=enabled
|
||||||
|
AUTOGGUF_CHECK_UPDATE=enabled
|
|
@ -13,6 +13,8 @@ __pycache__/
|
||||||
|
|
||||||
# Allow these files
|
# Allow these files
|
||||||
!.pre-commit-config.yaml
|
!.pre-commit-config.yaml
|
||||||
|
!.env.example
|
||||||
|
!setup.py
|
||||||
|
|
||||||
# Allow src folder and its .py files
|
# Allow src folder and its .py files
|
||||||
!src/
|
!src/
|
||||||
|
@ -41,6 +43,3 @@ assets/*
|
||||||
|
|
||||||
# Don't ignore .gitignore
|
# Don't ignore .gitignore
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
|
||||||
# Allow PyPI setup script
|
|
||||||
!setup.py
|
|
||||||
|
|
|
@ -1400,7 +1400,7 @@ def quantize_model(self):
|
||||||
|
|
||||||
def parse_progress(self, line, task_item):
|
def parse_progress(self, line, task_item):
|
||||||
# Parses the output line for progress information and updates the task item.
|
# Parses the output line for progress information and updates the task item.
|
||||||
match = re.search(r"\[(\d+)/(\d+)\]", line)
|
match = re.search(r"\[\s*(\d+)\s*/\s*(\d+)\s*\].*", line)
|
||||||
if match:
|
if match:
|
||||||
current = int(match.group(1))
|
current = int(match.group(1))
|
||||||
total = int(match.group(2))
|
total = int(match.group(2))
|
||||||
|
|
Loading…
Reference in New Issue