Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
793e574
Decoupling autoround into multiple quantizers
n1ck-guo Sep 4, 2025
b1a4252
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 4, 2025
18ecda2
Merge branch 'main' into hengguo/decoupling
n1ck-guo Sep 5, 2025
9ab2452
fix
n1ck-guo Sep 9, 2025
0f64071
Merge branch 'main' of https://github.com/intel/auto-round into main
n1ck-guo Sep 9, 2025
6e6e753
Merge branch 'main' into hengguo/decoupling
n1ck-guo Sep 9, 2025
ab5a2ee
Merge branch 'main' of https://github.com/intel/auto-round into hengg…
n1ck-guo Sep 16, 2025
f3492ea
update
n1ck-guo Sep 16, 2025
874e579
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 16, 2025
4d07f17
merge script
n1ck-guo Sep 17, 2025
9a4478b
merge
n1ck-guo Sep 17, 2025
63ad1d5
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 17, 2025
c1b6bbf
merge
n1ck-guo Sep 17, 2025
e26c973
code scan
n1ck-guo Sep 17, 2025
beba041
Merge branch 'hengguo/decoupling' of https://github.com/intel/auto-ro…
n1ck-guo Sep 17, 2025
488b685
fix by comment
n1ck-guo Sep 17, 2025
9e2f167
fix
n1ck-guo Sep 17, 2025
f1673f0
Merge branch 'main' into hengguo/decoupling
n1ck-guo Sep 17, 2025
df399b9
fix bug
n1ck-guo Sep 17, 2025
912906b
Merge branch 'hengguo/decoupling' of https://github.com/intel/auto-ro…
n1ck-guo Sep 17, 2025
6733c5f
code scan
n1ck-guo Sep 17, 2025
b69a1c3
update by comment
n1ck-guo Sep 17, 2025
8afeb7a
comment
n1ck-guo Sep 17, 2025
601adde
add config
n1ck-guo Sep 17, 2025
b2bbe7e
comment
n1ck-guo Sep 17, 2025
b63bb1a
update
n1ck-guo Sep 18, 2025
5609679
better config for kwargs
n1ck-guo Sep 18, 2025
093539b
comment
n1ck-guo Sep 18, 2025
84a6855
clean
n1ck-guo Sep 18, 2025
f8cba19
Merge remote-tracking branch 'origin' into hengguo/decoupling
n1ck-guo Sep 18, 2025
9ab99a4
update
n1ck-guo Sep 18, 2025
1240b74
rename main
n1ck-guo Sep 18, 2025
31c751f
merge __main__
n1ck-guo Sep 18, 2025
44701ec
split eval_cli
n1ck-guo Sep 18, 2025
e148086
clean
n1ck-guo Sep 18, 2025
bfcd1b4
fix
n1ck-guo Sep 19, 2025
e1c6605
fix
n1ck-guo Sep 19, 2025
b0e9045
fix ut
n1ck-guo Sep 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions auto_round/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from auto_round.autoround import AutoRound, AutoRoundAdam
from auto_round.mllm import AutoRoundMLLM
from auto_round.autoround import AutoRound

# support for old api
from auto_round.autoround import AutoRoundLLM, AutoRoundMLLM, AutoRoundAdam
from auto_round.utils import LazyImport


Expand Down
Loading