Giter Site home page Giter Site logo

Comments (5)

arunpatala avatar arunpatala commented on July 1, 2024

I set the arg optimizer_parameters=model.fc.parameters() in trainer.compile.
But i guess it is being passed to optimizer initialization:

line 133, in set_optimizer
TypeError: init() got an unexpected keyword argument 'parameters'

from torchsample.

arunpatala avatar arunpatala commented on July 1, 2024

added kwargs.pop('parameters',None) after line 128 and it works as expected

from torchsample.

ncullen93 avatar ncullen93 commented on July 1, 2024

Oh I see. Wait can you tell me where in this function you added that line (i'd appreciate it):

    def set_optimizer(self, optimizer, **kwargs):
        if type(optimizer) is type or isinstance(optimizer, str):
            if 'parameters' in kwargs:
                parameters = kwargs['parameters']
            else:
                parameters = self.model.parameters()

            optimizer = _validate_optimizer_input(optimizer)
            self._optimizer = optimizer(parameters, **kwargs)
        else:
            self._optimizer = optimizer

from torchsample.

recastrodiaz avatar recastrodiaz commented on July 1, 2024

I guess there is a better way, but the following works for me:

# 1. Set some layers of the model to be non-trainable (param.requires_grad = False)
# 2. Monkey patch the instance parameters() method to return trainable weights only
import types

def parameters(self):
    p = filter(lambda p: p.requires_grad, nn.Module.parameters(self))
    return p

model.parameters = types.MethodType(parameters, model)

# 3. Profit
trainer.fit_loader(train_loader, val_loader=val_loader, nb_epoch=1)

from torchsample.

arunpatala avatar arunpatala commented on July 1, 2024
def set_optimizer(self, optimizer, **kwargs):
    if type(optimizer) is type or isinstance(optimizer, str):
        if 'parameters' in kwargs:
            parameters = kwargs['parameters']
            kwargs.pop('parameters',None)

from torchsample.

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.