David GG
David GG
Hello everyone, No matter how I try to upload the pre-annotated data in an **Image Classification Project**: * Through the web app, uploading a txt file as indicated in the...
Details for the issue -------------------- #### What did you do? Use MOSEK api and impose timeLimit ``` solver = pulp.getSolver('MOSEK', timeLimit=300) ``` or ``` solver = pulp.apis.MOSEK( timeLimit=300) ``` Check...
When opening jupyter notebooks that are generated by VsCode, it usually shortens the notebook. This is, it only shows it up to some point.
Could you provide some documentation or at least a link about the automation rate analysis plot in classification reports? Thanks!
Details for the issue -------------------- #### What did you do? Define a df `pd.DataFrame` with some values being `pulp.LpAffineExtression` variables. #### What did you expect to see? When displaying the...
Problem: the `timeLimit` argument is not available for the `MOSEK` solver class. This has been made explicit in the `__init__`. Other changes: * default parameter for `options` is None and...
Let assume I import pulp as ```import pulp``` When using type hints in pulp, should I use `pulp.pulp.LpVariable` or `pulp.LpVariable`. When using `type(variable)` it returns `pulp.pulp.LpVariable`. I assume that the...
Create a new transformation for Segmentation task. Randomly crops an image horizontally preserving one of the borders. TODO: - complete docstrings - tests Associated to #1053
### 🚀 Feature Request I found in the `transforms` module of the library a class `SegCropImageAndMask(SegmentationTransform)`. Is there any similar data augmentation class for Object Detection problems? In case it...
Details for the issue -------------------- `X.isBinary()` is False when the variable is binary but a value has been fixed. #### What did you do? ```python import pulp X = pulp.LpVariable("X",cat="Binary")...