Skip to main content
Filter by
Sorted by
Tagged with
2 votes
0 answers
2k views

I am getting the error given below from the code in Sacred's utils.py, please let me know if there is any solution for it. AttributeError: 'TracebackException' object has no attribute 'exc_trackback' ...
Aritra Sen's user avatar
2 votes
1 answer
378 views

I have two computers: Ubuntu1 and Ubuntu2. Ubuntu1 runs MongoDB with database Sacred3. I want to connect from U2 to U1 via ssh and store there my experiment results. What I tried and failed: 1. I ...
MikolajM's user avatar
  • 310
1 vote
0 answers
250 views

I'm trying to see some ways to store my ML experiments and I came across some python libraries like Sacred, ModelChimp, MLFlow, .... The one I like the most is Sacred, but I would like to know how to ...
Angelo's user avatar
  • 665
2 votes
0 answers
118 views

I am trying to use omniboard to keep a track of all the experiments hyperopt library is doing. The link below is from sacred library documentation and I am not able to use it to merge hyperopt and ...
deepika's user avatar
  • 81
3 votes
3 answers
928 views

When using Sacred it is necessary to pass all variables from the experiment config, into the main function, for example ex = Experiment('iris_rbf_svm') @ex.config def cfg(): C = 1.0 gamma = 0.7 ...
bluesummers's user avatar
  • 12.8k
1 vote
3 answers
3k views

I am using sacred package in python, this allows to keep track of computational experiments i'm running. sacred allows to add observer (mongodb) which stores all sorts of information regarding the ...
orialz's user avatar
  • 75
2 votes
2 answers
2k views

so I've been poking around with sacred a little bit and it seems great. unfortunately I did not find any multiple files use-cases examples like I am trying to implement. so i have this file called ...
orialz's user avatar
  • 75
7 votes
2 answers
12k views

I need the sacred package for a new code base I downloaded. It requires sacred. https://pypi.python.org/pypi/sacred conda install sacred fails with PackageNotFoundError: Package missing in current ...
bhomass's user avatar
  • 3,582
1 vote
1 answer
626 views

The experiment software sacred was run without MongoDB in the background with a configured mongo-observer. When it tried to write the settings to MongoDB, this failed, creating the file /tmp/...
serv-inc's user avatar
  • 38.9k
5 votes
4 answers
2k views

I am trying to set up sacred for Python and I am going through the tutorial. I was able to set up sacred using pip install sacred with no issues. I am having trouble running the basic code: from ...
RDizzl3's user avatar
  • 318