# AAI-homework **Repository Path**: aloha-qing/aai-homework ## Basic Information - **Project Name**: AAI-homework - **Description**: 东北大学软件学院高级人工智能课设 - **Primary Language**: Python - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-13 - **Last Updated**: 2022-05-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 东北大学软件学院高级人工智能课设 使用深度学习相关技术构建一个花朵分类器 102分类 ___ ## Getting Started **Prerequisites** - Python 3.8.5 - Pytorch 1.7.0 - torchvision 0.8.1 **Setup** 1. Put the dataset on the correct path. Note that dst_path is an new, empty dir. ``` src_path = './data/102flowers/jpg/' dst_path = './data/102flowers/sorted_img/' label_path = './data/102flowers/imagelabels.mat' ``` 2. run python script to sort and reorganize data file structure. ``` python sortdata_102flowers.py ``` **How to use** Run IPython Notebook to see more detailed implementation.