Florian Rohrer
Florian Rohrer
Why is the `history` command not available?
Running the first few lines of https://github.com/tflearn/tflearn/blob/master/examples/basics/use_dask.py gives me an error in line 29: ``` --------------------------------------------------------------------------- ValueError Traceback (most recent call last) in 1 X = da.from_array(np.asarray(X), chunks=(1000, 1000, 1000,...
Look at the table at the middle of [this](http://www.regular-expressions.info/posixbrackets.html) page. Everytime you write [a-zA-Z0-9] to select letters and digits, you can write [:alnum:] instead. Another example is when you want...
Hi, Often times I want to compare different classifiers on the same dataset and I find myself writing code that looks like this: ```python list_of_feature_list = [...] # could looks...
Hi, I am trying to find the trained model weights, but they seemed to have been moved/deleted in Google Drive. If am refering to these lines: https://github.com/CellProfiler/CellProfiler-plugins/blob/0a63e2dc71dc6a99b6112c3be70f8c2dc9301d2a/CellProfiler4_AutoConvert/classifypixelsunet.py#L149-L151 Any idea how...
Hi, love your package. Is there maybe a possibility to hide the input cells? For example, when I am using `jupyter nbconvert` I would use it with these flags: ```jupyter...
Hi everybody, My `.pre-commit-config.yaml` looks like this: ```yaml - repo: https://github.com/RobertCraigie/pyright-python rev: v1.1.322 hooks: - id: pyright args: ["--pythonpath", ".venv/Scripts/python.exe"] ``` and this all works fine as long as I...