Words_classify.py 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. mean_fixed_words = {
  2. "num": ["one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten",
  3. "eleven", "twelve", "thirteen", "fourteen", "fifteen", "sixteen", "seventeen",
  4. "eighteen", "nineteen", "twenty", "thirty", "forty", "fifty", "sixty", "seventy",
  5. "eighty", "ninety", "one hundred"],
  6. "month": ["January", "February", "March", "April", "May", "June", "July", "August", "September",
  7. "October", "November", "December"],
  8. "week": ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
  9. "time": ["second", "minute", "quarter", "hour", "day", "week", "month", "year", "century",
  10. "morning", "noon", "afternoon", "night", "midnight"],
  11. "pron": ["I", "we", "you", "he", "she", "it", "they", "my", "our", "your", "his", "her", "they", "their", "me",
  12. "him", "them", "mine"],
  13. "body": ["foot", "head", "face", "hair", "nose", "mouth", "eye", "ear", "arm", "hand", "finger", "leg", "tail"],
  14. "color": ["red", "blue", "yellow", "green", "white", "black", "pin", "purple", "orange", " brown"],
  15. "school things": ["pen", "pencil", "pencil-case", "ruler", "book", "bag", "comic book", "post card",
  16. "newspaper", "schoolbag", "eraser", "crayon", "sharpener", "story-book", "notebook",
  17. "Chinese book", "English book" "math book", "magazine", "dictionary"],
  18. "animals": ["cat", "dog", "pig", "duck", "rabbit", "horse", "elephant", "ant", "fish", "bird", "eagle", "beaver",
  19. "snake", "mouse", "squirrel", "kangaroo", "monkey", "panda", "bear", "lion", "tiger", "fox", "zebra",
  20. "deer", "giraffe", "goose", "hen", "turkey", "lamb", "sheep", "goat", "cow", "donkey", "squid",
  21. "lobster", "shark", "seal", "sperm whale", "killer whale"],
  22. "people": ["friend", "boy", "girl", "mother", "father", "sister", "brother", "uncle", "man", "woman", "Mr.", "Miss",
  23. "lady", "mom", "dad", "parents", "grandparents", "grandma", "grandmother", "grandpa", "grandfather",
  24. "aunt", "cousin", "son", "daughter", "baby", "kid", "classmate", "queen", "visitor", "neighbour",
  25. "principal", "university student", "pen pal", "tourist", "people", "robot"],
  26. "food_drink": ["rice", "bread", "beef", "milk", "water", "egg", "fish", "tofu", "cake", "hot dog", "hamburger",
  27. "French fries", "cookie", "biscuit", "jam", "noodles", "meat", "chicken", "pork", "mutton",
  28. "vegetable", "salad", "soup", "ice", "ice-cream", "Coke", "juice", "tea", "coffee", "breakfast",
  29. "lunch", "dinner", "supper"], # "meal",
  30. "job": ["teacher", "student", "doctor", "nurse", "driver", "farmer", "singer", "writer", "actor", "actress",
  31. "artist", "TV reporter", "engineer", "accountant", "policeman", "salesperson", "cleaner", "baseball player",
  32. "assistant", "police"],
  33. "fruit_vegetables": ["apple", "banana", "pear", "orange", "watermelon", "grape", "eggplant", "green beans", "tomato",
  34. "potato", "peach", "strawberry", "cucumber", "onion", "carrot", "cabbage"],
  35. "clothes": ["jacket", "shirt", "skirt", "dress", "jeans", "pants", "socks", "shoes", "sweater", "coat",
  36. "raincoat", "shorts", "sneakers", "slippers", "sandals", "boots", "hat", "cap", "sunglasses", "tie",
  37. "scarf", "gloves", "trousers", "cloth", ], # "T-shirt"
  38. "vehicles": ["bike", "bus", "train", "boat", "ship", "yacht", "car", "taxi", "jeep", "van", "plane", "airplane",
  39. "subway", "underground", "motor cycle"],
  40. "other": ["window", "door", "desk", "chair", "bed", "computer", "board", "fan", "light", "teacher's desk",
  41. "picture", "wall", "floor", "curtain", "trash bin", "closet", "mirror", "end table", "football", "soccer",
  42. "present", "walkman", "lamp", "phone", "sofa", "shelf", "fridge", "table", "TV", "air-conditioner", "key",
  43. "lock", "photo", "chart", "plate", "knife", "fork", "spoon", "chopsticks", "pot", "gift", "toy", "doll",
  44. "ball", "balloon", "kite", "jigsaw puzzle", "box", "umbrella", "zipper", "violin", "yo-yo", "nest",
  45. "hole", "tube", "toothbrush", "menu", "e-card", "e-mail", "traffic light", "money", "medicine"],
  46. "locations": ["home", "room", "bedroom", "bathroom", "living room", "kitchen", "classroom", "school", "park",
  47. "library", "post office", "police office", "hospital", "cinema", "bookstore", "farm", "zoo", "garden",
  48. "study", "playground", "canteen", "teacher's office", "library", "gym", "washroom", "art room",
  49. "computer room", "music room", "TV room", "company", "factory", "fruit stand", "pet shop",
  50. "nature park", "theme park", "science museum", "the Great", "Wall", "supermarket", "bank", "country",
  51. "village", "city", "hometown", "bus stop"],
  52. "classes": ["sports", "science", "Moral Education", "Social Studies", "Chinese", "math", "PE", "English"],
  53. "weather": ["weather report", "rain", "cloud", "sun", "mountain", "sky", "rainbow", "wind", "air", "moon"],
  54. "countries_cities": ["China", "PRC", "America", "USA", "UK", "England", "Canada", "CAN", "Australia", "New York",
  55. "London", "Sydney", "Moscow", "Cairo"],
  56. "nature": ["river", "lake", "stream", "forest", "path", "road", "house", "bridge", "building"]
  57. }