Giter Site home page Giter Site logo

yzhao062 / xgbod Goto Github PK

View Code? Open in Web Editor NEW
79.0 7.0 13.0 12.92 MB

Supplementary material for IJCNN paper "XGBOD: Improving Supervised Outlier Detection with Unsupervised Representation Learning"

Home Page: https://ieeexplore.ieee.org/document/8489605

Python 100.00%
anomaly-detection semi-supervised outlier-ensembles outlier-detection

xgbod's Introduction

😄 I am an Assistant Professor at USC Computer Science; see the latest information at my homepage.

Prospective Students.We plan to recruit 1-2 Ph.D. students for Fall 2025. For undergraduate/graduate interns, it will be considered on a case basis. I personally do not want to have a large group of "interns" without enough support. See details at my homepage.

🌱 Research Interests. My work focuses on creating robust, efficient, and automated machine learning (ML) and data mining (DM) algorithms, systems, and applications. My primary areas of interest are:

  1. Robustness and Security of AI: Enhancing the robustness and security of AI systems through out-of-distribution (OOD) detection, outlier detection, and anomaly detection.
  2. Efficient and Scalable AI: Developing efficient and scalable ML systems and automation techniques.
  3. Applications in Security, Finance, and Healthcare: Applying AI technologies to address complex problems in security, finance, and healthcare sectors.

Open-source Contribution: I created PyOD (used by NASA, Tesla, Morgan Stanley, and more) - the most popular library for anomaly detection in 2017. Also, I have led more than 10 ML open-source initiatives, receiving 20,000 GitHub stars (top 0.002%) and >22M downloads. Popular ones: PyOD, PyGOD, TDC, ADBench

📫 Contact me by:


xgbod's People

Contributors

yzhao062 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

xgbod's Issues

Some errors

This is excellent resource:

I had some errors that I solved to some extend:

1 Error: init() got an unexpected keyword argument 'ratio'

Solution: ratio to sampling_strategy

BalancedBaggingClassifier(base_estimator=clf,
sampling_strategy='auto',
replacement=False)

2 Error: Solver lbfgs supports only 'l2' or 'none' penalties, got l1 penalty.

Solution: LogisticRegression(C=1, penalty="l1", solver='liblinear', max_iter=400)

https://stackoverflow.com/questions/60868629/valueerror-solver-lbfgs-supports-only-l2-or-none-penalties-got-l1-penalty

3 Error: It didn't seem to converge

Solution: max_iter= 400 or more in the logisticRegression

clf_list = [XGBClassifier(), LogisticRegression(C=1, penalty="l1", solver='liblinear', max_iter=400),
LogisticRegression(penalty="l2", max_iter=400)]

https://stackoverflow.com/questions/62658215/convergencewarning-lbfgs-failed-to-converge-status-1-stop-total-no-of-iter

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.