remove unused imports in models (#1088)

This commit is contained in:
Rob Grossman 2023-07-01 12:04:19 -07:00 committed by GitHub
parent 575f75f613
commit 2533a992e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 4 deletions

View File

@ -1,7 +1,5 @@
from tinygrad.tensor import Tensor from tinygrad.tensor import Tensor
from tinygrad.jit import TinyJit
from tinygrad.nn import Linear, LayerNorm, Embedding from tinygrad.nn import Linear, LayerNorm, Embedding
import numpy as np
from extra.utils import download_file, get_child from extra.utils import download_file, get_child
from pathlib import Path from pathlib import Path

View File

@ -1,5 +1,4 @@
import math import math
import numpy as np
from tinygrad.tensor import Tensor from tinygrad.tensor import Tensor
from tinygrad.nn import BatchNorm2d from tinygrad.nn import BatchNorm2d
from extra.utils import get_child from extra.utils import get_child

View File

@ -1,4 +1,3 @@
from tinygrad.tensor import Tensor
import tinygrad.nn as nn import tinygrad.nn as nn
from extra.utils import get_child from extra.utils import get_child