SumNeuron
SumNeuron
is there a way to put blog under a different directiory?
Since the owner of the repo seems silent on addressing issues, i'll address two main issues here for others to reference. # Animation As is, the component doesn't support animation....
@mmoskorz this is because 1. `animate` is not exposed and 2. whenever data changes, it calls `this.react` twice resulting in any animation attempts to be moot (as your data is...
@chaimpeck You do not have to wrap in client-only... only if you are trying to bind data server side. If you async data on mount youll be fine. Anyway, statnett...
@kjschiroo the solution is relatively simple. Wherever you make you component, on the component itself set: ```html ``` See: https://github.com/statnett/vue-plotly/issues/27 for more details as to why.
@JarnoRFB ok... at the moment `_run.log_scalar(name, val, iter)` doesn't make it to the metrics.json file... ```python # anotherfile.py def foo(sacred_run=None): if sacred_run is not None: sacred_run.log_scalar('test', 10) # experiment.py from...
I've also tried manually adding the metric via `_run.info` ```python # anotherfile.py def foo(sacred_run=None): if sacred_run is not None: if 'my_metric' not in sacred_run.info: sacred_run.info['my_metric'] = [] sacred_run.info['my_metric'].append({'value': 10, 'iteration':...
@JarnoRFB I figured out the error. In another Issue I mentioned the temp dir for FileObserver. At the moment I was just doing: ```python @ex.automain def main(...): a_file = os.path.join(experiment_dir,...
@JarnoRFB just in log
Looking at my `logger` it seems that run has an "ID" property >INFO: :Started run with ID "1" but looking at `run.json` ``` json { "artifacts": [], "command": "main", "experiment":...