Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lpm_kernel/L2/convert_hf_to_gguf.py
Original file line number Diff line number Diff line change
Expand Up @@ -3300,7 +3300,7 @@ def set_vocab(self):
toktype = SentencePieceTokenTypes.UNUSED
elif tokenizer.IsByte(token_id):
toktype = SentencePieceTokenTypes.BYTE
# take care of ununsed raw token
# take care of unused raw token
if piece.startswith("[UNUSED"):
toktype = SentencePieceTokenTypes.UNUSED

Expand Down
4 changes: 2 additions & 2 deletions lpm_kernel/api/domains/kernel2/dto/role_dto.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Role realted data structure
Role related data structure
"""
from dataclasses import dataclass
from typing import Dict, Any, Optional
Expand Down Expand Up @@ -159,4 +159,4 @@ class ShareRoleRequest:
def from_dict(cls, data: Dict[str, Any]) -> "ShareRoleRequest":
return cls(
role_id=data["role_id"]
)
)