Skip to content
/ orange3 Public
  • Sponsor
  • Notifications You must be signed in to change notification settings
  • Fork 1k
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: biolab/orange3
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 130bbcffcd07402df606699f4d328493d68a4894
Choose a base ref
..
head repository: biolab/orange3
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 297ec2c2a10c093cd1980b241daa010086a6c12e
Choose a head ref
Showing with 2 additions and 4 deletions.
  1. +1 −1 Orange/modelling/__init__.py
  2. +1 −3 Orange/widgets/model/tests/test_owgradientboosting.py
2 changes: 1 addition & 1 deletion Orange/modelling/__init__.py
Original file line number Diff line number Diff line change
@@ -13,4 +13,4 @@
from .tree import *
from .catgb import *
from .gb import *
from .xgb import *
from .xgb import *
4 changes: 1 addition & 3 deletions Orange/widgets/model/tests/test_owgradientboosting.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
import json
import unittest
import sys
from typing import Type
from unittest.mock import patch, Mock
from unittest.mock import Mock

from Orange.classification import GBClassifier

from Orange.classification import XGBClassifier, XGBRFClassifier
from Orange.classification import CatGBClassifier
from Orange.data import Table
from Orange.modelling import GBLearner
from Orange.preprocess.score import Scorer
from Orange.regression import GBRegressor