10 questions
2
votes
0
answers
2k
views
AttributeError: 'TracebackException' object has no attribute 'exc_trackback' Error
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'
...
2
votes
1
answer
378
views
How to save data to remote mongoDB via ssh tunnel? (connection refused)
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 ...
1
vote
0
answers
250
views
Gridsearch on an experiment in Sacred
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 ...
2
votes
0
answers
118
views
How to merge Hyperopt and Sacred together?
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 ...
3
votes
3
answers
928
views
Sacred - pass all parameters as one
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
...
1
vote
3
answers
3k
views
Accessing files in Mongodb
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 ...
2
votes
2
answers
2k
views
sacred, python - ex.config in one file and ex
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 ...
7
votes
2
answers
12k
views
python package can be installed by pip but not conda
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 ...
1
vote
1
answer
626
views
How to import the pickle file if sacred failed to connect to MongoDB
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/...
5
votes
4
answers
2k
views
Using Sacred Module with iPython
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 ...