GithubHelp home page GithubHelp logo

Comments (6)

awni avatar awni commented on August 15, 2024

There is no Flatten layer yet. You would have to redo the computation like so:

class MLP(nn.Module):

    def __init__(self, out_dims):
        super().__init__()
        self.conv = nn.Sequential(
            nn.Conv2d(1, 20, 5),    # input channels, output channels, kernel size
            nn.ReLU(),
            nn.MaxPool2d(2, 2),    # kernel size, stride length
            nn.Conv2d(20, 50, 5),
            nn.ReLU(),
            nn.MaxPool2d(2, 2),
        )
        self.mlp = nn.Sequential(
            nn.Linear(800, 500),
            nn.ReLU(),
            nn.Linear(500, 10),
        )

    def __call__(self, x):
        x = self.conv(x):
        x = x.flatten(-3, -1)
        x =  self.mlp(x)
        return(x)

At some point we considered adding Flatten but decided we prefer not to mirror every op with an NN equivalent and the equivalent above is not so onerous.

from mlx.

s4m13337 avatar s4m13337 commented on August 15, 2024

@awni Thanks, I have tried this. But I've ended up across another bug.

Here is an minimal example:

i = 0
for X, y in batch_iterate(64, train_images, train_labels):
    i += 1
    loss, grads = loss_and_grad_fn(model, X, y)
    optimizer.update(model, grads)
    mx.eval(model.parameters(), optimizer.state)
    if(i == 100):
        break
print(model.parameters())

The parameters become nan at some point between the 100th and 150th batch. It varies on every evaluation but is usually within this range. Is this related to #1277 or #319 ?

from mlx.

awni avatar awni commented on August 15, 2024

That I have no idea about. You’d need to share more code to fully reproduce this so we can help debug.

also make sure you are using the latest MLX.

from mlx.

s4m13337 avatar s4m13337 commented on August 15, 2024

LeNet MLX.ipynb.zip

@awni I'm attaching my code here. I am using version 0.16.1.

from mlx.

awni avatar awni commented on August 15, 2024

You are converting train_labels to one hot and then using it's size to determine the size of the dataset. That is a bug because the size will be a factor of 10 too large. So when in your batch_iterate function you will be reading lot's of unitialized memory.

My recommendation would be to not convert the labels to one hot, just use them as is which works with cross_entropy and is more efficient.

Alternatively you could change your batch iteration to get the right dataset size:

def batch_iterate(batch_size, X, y):
    perm = mx.array(np.random.permutation(y.shape[0]))
    for s in range(0, y.shape[0], batch_size):
        ids = perm[s: s+batch_size]
        yield X[ids], y[ids]

from mlx.

s4m13337 avatar s4m13337 commented on August 15, 2024

Great catch. I overlooked y.size. Thank you for the help.

from mlx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.