创建一个ScyllaDB数据库容器, 点击start_database.bat启动数据库, 点击vegetable_recognition_backend.exe启动后端,确保model.safetensors在可执行文件同级目录下,
将app-debug.apk安装到Android设备上, 打开软件输入可访问的后端地址即可开始使用
已去除训练数据集,如需训练可按照保留的验证集格式添加数据 rust后端调试需把model.safetensors放在CARGO_TARGET_DIR\debug\model.safetensors flutter前端只能在debug模式下运行
docker pull scylladb/scylla
docker run --name scylla -p 9042:9042 -d scylladb/scylladocker start scylla将model.safetensors放在可执行文件vegetable_recognition_backend.exe同级目录下,然后运行vegetable_recognition_backend.exe
put model.safetensors in the same directory as the executable file vegetable_recognition_backend.exe, and then run vegetable_recognition_backend.exe
flutter pub getflutter build apk将build/app/outputs/apk/release/app-debug.apk或build/app/outputs/flutter-apk/app-debug.apk安装到Android设备上
put build/app/outputs/apk/release/app-release.apk or build/app/outputs/flutter-apk/app-debug.apk on Android device