├── .gitignore ├── README.md ├── data ├── test │ ├── notscam │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt │ └── scam │ │ ├── 1.txt │ │ ├── 10.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ ├── 7.txt │ │ ├── 8.txt │ │ └── 9.txt └── train │ ├── notscam │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt │ └── scam │ ├── 1.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 2.txt │ ├── 3.txt │ ├── 4.txt │ ├── 5.txt │ ├── 6.txt │ ├── 7.txt │ ├── 8.txt │ └── 9.txt ├── docs ├── README.eng.md └── README.uz.md ├── loader.py ├── main.py ├── perceptron.py ├── selector.py ├── trainer.py └── vector.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/README.md -------------------------------------------------------------------------------- /data/test/notscam/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/notscam/1.txt -------------------------------------------------------------------------------- /data/test/notscam/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/notscam/10.txt -------------------------------------------------------------------------------- /data/test/notscam/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/notscam/2.txt -------------------------------------------------------------------------------- /data/test/notscam/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/notscam/3.txt -------------------------------------------------------------------------------- /data/test/notscam/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/notscam/4.txt -------------------------------------------------------------------------------- /data/test/notscam/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/notscam/5.txt -------------------------------------------------------------------------------- /data/test/notscam/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/notscam/6.txt -------------------------------------------------------------------------------- /data/test/notscam/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/notscam/7.txt -------------------------------------------------------------------------------- /data/test/notscam/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/notscam/8.txt -------------------------------------------------------------------------------- /data/test/notscam/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/notscam/9.txt -------------------------------------------------------------------------------- /data/test/scam/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/scam/1.txt -------------------------------------------------------------------------------- /data/test/scam/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/scam/10.txt -------------------------------------------------------------------------------- /data/test/scam/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/scam/2.txt -------------------------------------------------------------------------------- /data/test/scam/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/scam/3.txt -------------------------------------------------------------------------------- /data/test/scam/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/scam/4.txt -------------------------------------------------------------------------------- /data/test/scam/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/scam/5.txt -------------------------------------------------------------------------------- /data/test/scam/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/scam/6.txt -------------------------------------------------------------------------------- /data/test/scam/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/scam/7.txt -------------------------------------------------------------------------------- /data/test/scam/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/scam/8.txt -------------------------------------------------------------------------------- /data/test/scam/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/test/scam/9.txt -------------------------------------------------------------------------------- /data/train/notscam/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/1.txt -------------------------------------------------------------------------------- /data/train/notscam/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/10.txt -------------------------------------------------------------------------------- /data/train/notscam/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/11.txt -------------------------------------------------------------------------------- /data/train/notscam/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/12.txt -------------------------------------------------------------------------------- /data/train/notscam/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/2.txt -------------------------------------------------------------------------------- /data/train/notscam/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/3.txt -------------------------------------------------------------------------------- /data/train/notscam/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/4.txt -------------------------------------------------------------------------------- /data/train/notscam/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/5.txt -------------------------------------------------------------------------------- /data/train/notscam/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/6.txt -------------------------------------------------------------------------------- /data/train/notscam/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/7.txt -------------------------------------------------------------------------------- /data/train/notscam/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/8.txt -------------------------------------------------------------------------------- /data/train/notscam/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/notscam/9.txt -------------------------------------------------------------------------------- /data/train/scam/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/1.txt -------------------------------------------------------------------------------- /data/train/scam/10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/10.txt -------------------------------------------------------------------------------- /data/train/scam/11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/11.txt -------------------------------------------------------------------------------- /data/train/scam/12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/12.txt -------------------------------------------------------------------------------- /data/train/scam/2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/2.txt -------------------------------------------------------------------------------- /data/train/scam/3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/3.txt -------------------------------------------------------------------------------- /data/train/scam/4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/4.txt -------------------------------------------------------------------------------- /data/train/scam/5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/5.txt -------------------------------------------------------------------------------- /data/train/scam/6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/6.txt -------------------------------------------------------------------------------- /data/train/scam/7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/7.txt -------------------------------------------------------------------------------- /data/train/scam/8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/8.txt -------------------------------------------------------------------------------- /data/train/scam/9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/data/train/scam/9.txt -------------------------------------------------------------------------------- /docs/README.eng.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/docs/README.eng.md -------------------------------------------------------------------------------- /docs/README.uz.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/docs/README.uz.md -------------------------------------------------------------------------------- /loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/loader.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/main.py -------------------------------------------------------------------------------- /perceptron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/perceptron.py -------------------------------------------------------------------------------- /selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/selector.py -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/trainer.py -------------------------------------------------------------------------------- /vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otabekswe/verify/HEAD/vector.py --------------------------------------------------------------------------------