From 941125056413f07d720bb7720e461e201beab088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2E=20Yusuf=20Sar=C4=B1g=C3=B6z?= Date: Thu, 27 Jul 2023 23:25:47 +0300 Subject: [PATCH] refactor : rm unused import and upd todos --- gguf.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/gguf.py b/gguf.py index f1e2c69a2..31a03c43e 100644 --- a/gguf.py +++ b/gguf.py @@ -1,14 +1,13 @@ """TODOs -1. Implement writing tensor data with alignment. -2. Implement writers for known architectures, LLaMA in particular. -3. Add docstrings from the format specs. -4. After development is done, Convert it to a proper pip-installable Python package, and possibly move it to its own repo under ggml-org. +1. Implement writers for known architectures, LLaMA in particular. +2. Add docstrings from the format specs. +3. After development is done, Convert it to a proper pip-installable Python package, and possibly move it to its own repo under ggml-org. """ import struct import constants from enum import IntEnum -from typing import Any, IO, List, Sequence +from typing import Any, IO, List import numpy as np