Deep-SAD-PyTorch icon indicating copy to clipboard operation
Deep-SAD-PyTorch copied to clipboard

A PyTorch implementation of Deep SAD, a deep Semi-supervised Anomaly Detection method.

Results 18 Deep-SAD-PyTorch issues
Sort by recently updated
recently updated
newest added

Bumps [numpy](https://github.com/numpy/numpy) from 1.16.4 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

Bumps [pillow](https://github.com/python-pillow/Pillow) from 6.0.0 to 9.0.1. Release notes Sourced from pillow's releases. 9.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/9.0.1.html Changes In show_file, use os.remove to remove temporary images. CVE-2022-24303 #6010 [@​radarhere, @​hugovk] Restrict builtins within...

dependencies

Bumps [cvxopt](http://cvxopt.org) from 1.2.3 to 1.2.7. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cvxopt&package-manager=pip&previous-version=1.2.3&new-version=1.2.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

hello, thanks for your greate work! could you please release the "Supervised Deep Binary Classifier" code? Thanks!

Great work! I enjoyed reading your paper. I am just wondering whether this can be applied to time-series data? thanks

Can you pl guide on steps/details for training the model on new custom dataset ?

Excuse me. Labeled outlier classes also should be put into the ae_net to train?

Once I've trained my DeepSAD model, I'd like to make a prediction using the trained model. In my understanding, when making a prediction for one data, the anomaly score can...

# Filter out decoder network keys ae_net_dict = {k: v for k, v in ae_net_dict.items() if k in net_dict} Did not match any keys. The encoders seem to live in...

Deep-SAD-PyTorch/src/DeepSAD.py, **line 123** The encoder has different layer names than the network. As a result, the ae_net_dict here is an empty dictionary. One possible revision, ae_net_dict = {k: v for...