-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Web app using Django and an Android app #26
base: master
Are you sure you want to change the base?
Conversation
Hi @ymittal This is a cool idea but tons of file changes. ;-) I could not really find/understand the API that you speak of. Are you solving the sudoku on the Android device or are you connecting to a server that is solving the sudoku remotely. If the former, then what are the hardware / RAM requirements on the Android? If the latter, it might be easier to consume all these changes if you created a separate repo called |
Hi @cclauss, definitely understandable! Though most of the new files are for Android. I am solving the sudoku by requesting a server. The main API code can be found in |
Hi @ymittal, |
Can Keras be run on a mobile phone? Seems doable but difficult/ limited... http://talc1.loria.fr/users/cerisara/posts/tflow/ My sense is that for now the client / server model is the best approach. This means that we have three or four code bases to create / manage:
|
Hi @prajwalkr, I have not. It's definitely a good idea though. What else, if anything, would you like changed? |
@prajwalkr, done! Please have a look at the latest project structure. |
@prajwalkr @cclauss are we moving forward? |
@prajwalkr, any update on commits done by @ymittal ? |
Hello @prajwalkr,
Thanks for a great project. I really wanted to see how far I can go with extending this Python app to a mobile application. This PR (inspired by #3) includes a basic Android application which utilizes an API to solve a Sudoku by clicking its picture. I used Django to create the API endpoint
sudoku/solve/
. To use your code, I had to refactor a few functions. Rest assured, your code still works for anyone who wants to experiment with just the Python scripts.I acknowledge that I have made a lot of changes to the fork, but I have tried my best to include informative READMEs to avoid confusion. Please let me know what you think and feel free to recommend any changes or ask any questions you may have.
Thank you! 😄