Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can't name a parameter "filename"? #20

Open
Seanny123 opened this issue Aug 24, 2017 · 3 comments
Open

Can't name a parameter "filename"? #20

Seanny123 opened this issue Aug 24, 2017 · 3 comments

Comments

@Seanny123
Copy link

On Windows 10, I can't seem to change the "filename" parameter in the following script.

import pytry

class Simple(pytry.Trial):
    def params(self):
        self.param('first number', x=1)
        self.param('second number', y=1)
        self.param('operation to compute', op='plus')
        self.param('the filename', filename="weights.npz")

    def evaluate(self, p):
        print(p.filename)
        if p.op == 'plus':
            result = p.x + p.y
        if p.op == 'minus':
            result = p.x - p.y

        return dict(result=result)

However, if I change the parameter name to fn everything works fine.

import pytry

class Simple(pytry.Trial):
    def params(self):
        self.param('first number', x=1)
        self.param('second number', y=1)
        self.param('operation to compute', op='plus')
        self.param('the filename', fn="weights.npz")

    def evaluate(self, p):
        print(p.fn)
        if p.op == 'plus':
            result = p.x + p.y
        if p.op == 'minus':
            result = p.x - p.y

        return dict(result=result)

Any ideas why this might be happening?

@jgosmann
Copy link

Because of this line?

@tcstewar
Copy link
Owner

Argh, yes, I need a better way of handling this case.... this is due to me trying to get the command line parser to do things it's not quite happy with.... I should quickly add a warning if you try to make a filename parameter..... sorry!

@tcstewar
Copy link
Owner

I've changed that internal parameter to _trial_filename, so that makes it less likely for this problem to happen.... I'd still like to have it throw an error message if you happen to use that, though... 8920397

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants