TopicNet icon indicating copy to clipboard operation
TopicNet copied to clipboard

save_experiment parameter seems not working (at least in some cases)

Open Alvant opened this issue 5 years ago • 2 comments

import topicnet

dataset = topicnet.cooking_machine.Dataset(...)
model = topicnet.cooking_machine.models.TopicModel(...)

cube = CubeCreator(
    num_iter=10,
    parameters={
        "seed": [11221963],
        "num_topics": [5, 10]
    }
)
exp = Experiment(
    model,
    experiment_id='exp1',
    save_path='should_not_be_created',
    save_experiment=False
)

cube(model, dataset)

Result: folder specified in experiment init should_not_be_created exists Expected: there shouldn't be any such folder, because save_experiment=False

Alvant avatar Feb 26 '20 11:02 Alvant

Is it closed now?

Evgeny-Egorov-Projects avatar Jul 07 '20 08:07 Evgeny-Egorov-Projects

I think it is not...

Alvant avatar Sep 05 '20 12:09 Alvant