├── LICENSE ├── README.md ├── assets └── intro.png ├── autodetect_code ├── data │ └── code_cat.json └── scripts │ ├── autodetect_code.py │ ├── autodetect_code.sh │ └── count_res.py ├── autodetect_if ├── data │ └── if_cat.json └── scripts │ ├── autodetect_if.py │ ├── autodetect_if.sh │ └── count_res.py ├── autodetect_math ├── data │ └── math_cat.json └── scripts │ ├── autodetect_math.py │ ├── autodetect_math.sh │ └── count_res.py └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/README.md -------------------------------------------------------------------------------- /assets/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/assets/intro.png -------------------------------------------------------------------------------- /autodetect_code/data/code_cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_code/data/code_cat.json -------------------------------------------------------------------------------- /autodetect_code/scripts/autodetect_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_code/scripts/autodetect_code.py -------------------------------------------------------------------------------- /autodetect_code/scripts/autodetect_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_code/scripts/autodetect_code.sh -------------------------------------------------------------------------------- /autodetect_code/scripts/count_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_code/scripts/count_res.py -------------------------------------------------------------------------------- /autodetect_if/data/if_cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_if/data/if_cat.json -------------------------------------------------------------------------------- /autodetect_if/scripts/autodetect_if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_if/scripts/autodetect_if.py -------------------------------------------------------------------------------- /autodetect_if/scripts/autodetect_if.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_if/scripts/autodetect_if.sh -------------------------------------------------------------------------------- /autodetect_if/scripts/count_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_if/scripts/count_res.py -------------------------------------------------------------------------------- /autodetect_math/data/math_cat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_math/data/math_cat.json -------------------------------------------------------------------------------- /autodetect_math/scripts/autodetect_math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_math/scripts/autodetect_math.py -------------------------------------------------------------------------------- /autodetect_math/scripts/autodetect_math.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_math/scripts/autodetect_math.sh -------------------------------------------------------------------------------- /autodetect_math/scripts/count_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/autodetect_math/scripts/count_res.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thu-coai/AutoDetect/HEAD/requirements.txt --------------------------------------------------------------------------------