Cpop
Cpop
Is there a function in autogluon to plot AUC_ROC curves, Precision_Recall curves, etc for classifier models? Or should we just implement these manually with matplotlib, seaborn, bokeh, etc?
Under `model.py` we see the keras model compile ``` self.keras_model.compile( optimizer=optimizer, loss=[None] * len(self.keras_model.outputs), metrics=['accuracy']) ``` And then the metrics for the Mask RCNN metrics are added: ``` # Add...
Installation of mljar-supervised downgrades scikit-learn from 0.23 to 0.22, which does not import properly with the other dependencies. ``` python -V Python 3.7.9 ``` ``` conda -V conda 4.8.4 ```...
pip install nupic gives error "Command "python setup.py egg_info" failed with error code 1 in..."
I'm running Windows 10. To reproduce the error: I've created a virtual environment "numenta-env" with python=3.6 `activate numenta-env` `pip install nupic` It begins installing and then halts while collected unittest2==0.5.1...
# It will br executed only when you run this file directly --> # It will be executed only when you run this file directly
It is unclear precisely what the SavedModel inputs and outputs should look like for the Mask RCNN model, once frozen and exported in a Servable format. What should the inputs...
output_names=[out.op.name for out in model.outputs][:4] should be modified to get the 5 loss nodes
Line 50 of main.py: ``` def freeze_model(model, name): frozen_graph = freeze_session( sess, output_names=[out.op.name for out in model.outputs][:4]) ``` Correct me if I'm wrong, but using the first 4 output names...
running >> python Fashion_Train.py produces the following error: Using TensorFlow backend. Traceback (most recent call last): File "Fashion_Train.py", line 124, in model = RFCN_Model(mode="training", config=config, model_dir=os.path.join(ROOT_DIR, "logs") ) File "/data/repos/Keras-RFCN/KerasRFCN/Model/Model.py",...
Possibly related to [Remote-SSH Python intellisense stuck at loading... microsoft/vscode-python#9045 ](https://github.com/microsoft/vscode-python/issues/9045) # Behaviour ## Expected vs. Actual Expected: Intellisense should show suggested code completions when pressing "control"+"space" and should Tab...
R-FCN.pytorch$ python test_net.py --dataset pascal_voc --arch rfcn --net res101 --checksession $SESSION --checkepoch $EPOCH --checkpoint $CHECKPOINT --cuda Traceback (most recent call last): File "test_net.py", line 30, in from model.utils.net_utils import save_net,...