README.md 1.66 KB
Newer Older
StudentCWZ's avatar
StudentCWZ committed
1
# Project of Data Classification
StudentCWZ's avatar
StudentCWZ committed
2 3
## Introduction of project  
This project mainly uses regular expressions to classify voice data
崔为之's avatar
崔为之 committed
4

StudentCWZ's avatar
StudentCWZ committed
5 6
## Overview of Module
- Environment Configuration Module
StudentCWZ's avatar
StudentCWZ committed
7 8 9
```
requirement.txt						# The environment introduction of python
```
StudentCWZ's avatar
StudentCWZ committed
10
- Configuration Module
StudentCWZ's avatar
StudentCWZ committed
11 12 13
```
sql.conf							# The configuration file of mysql
```
StudentCWZ's avatar
StudentCWZ committed
14
- MySQL of Module
StudentCWZ's avatar
StudentCWZ committed
15 16 17
```
conn_sql.py							# The module of connecting mysql
```
StudentCWZ's avatar
StudentCWZ committed
18
- GetTime Module
StudentCWZ's avatar
StudentCWZ committed
19 20 21
```
get_time.py							# The module of getting a certain period of time
```
StudentCWZ's avatar
StudentCWZ committed
22
- DataFrame Module
StudentCWZ's avatar
StudentCWZ committed
23 24 25
```
data_deal.py						# The module of dealing DataFrame
```
StudentCWZ's avatar
StudentCWZ committed
26
- DataDeduplication Module
StudentCWZ's avatar
StudentCWZ committed
27 28 29
```
duplicate_check.py					# The module of DataDeduplication
```
StudentCWZ's avatar
StudentCWZ committed
30
- The Module of Data Classification
StudentCWZ's avatar
StudentCWZ committed
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
```
1. airconditioner_check.py 			# The module of airconditioner classification
2. ancient_poem_check.py			# The module of ancient-poem classification
3. chat_check.py					# The module of chat classification
4. fm_check.py						# The module of fm classification
5. global_control_check.py			# The module of global-control classification
6. holiday_check.py					# The module of holiday classification
7. music_check.py					# The module of music classification
8. news_check.py					# The module of news classification
9. play_control_check.py			# The module of play-control classification
10. science_check.py				# The module of science classification
11. sports_check.py					# The module of sports classification
12. stocks_check.py					# The module of stocks classification
13. translate_check.py				# The module of translate classification
14. universal_control_check.py		# The module of universal-control classification
15. weather_check.py				# The module of weather classification
```