MNISTで学習済みのニューラルネットワークをもちいて手書きの数字を判定するアプリを作りたいです。
Djangoにふれるのは初めてで、ディレクトリの構造やアドレスの指定方法に悩んでいます。
構造は以下の通りです
tutorial │ db.sqlite3 │ manage.py │ trainMNIST.ipynb │ │ ├─config │ │ settings.py │ │ urls.py │ │ wsgi.py │ │ __init__.py │ │ │ └─__pycache__ │ settings.cpython-36.pyc │ urls.cpython-36.pyc │ wsgi.cpython-36.pyc │ __init__.cpython-36.pyc │ ├─mnist │ │ admin.py │ │ apps.py │ │ models.py │ │ tests.py │ │ urls.py │ │ views.py │ │ __init__.py │ │ │ ├─migrations │ │ │ __init__.py │ │ │ │ │ └─__pycache__ │ │ __init__.cpython-36.pyc │ │ │ └─__pycache__ │ admin.cpython-36.pyc │ models.cpython-36.pyc │ urls.cpython-36.pyc │ views.cpython-36.pyc │ __init__.cpython-36.pyc │ ├─NN │ best_weights.hdf5 │ history.csv │ trainMNIST.ipynb │ ├─static │ └─images │ sample1.jpg │ sample2.jpg │ sample3.jpg │ └─templates │ base.html │ └─mnist idex.html result.html
以上です。
python manage.py runserverを実行し、http://127.0.0.1:8000/に接続すると、以下のようなエラーが出てしまいます。
Using the URLconf defined in config.urls, Django tried these URL patterns, in this order: admin/ mnist/ The empty path didn't match any of these.
以上です。
config.urls.pyの中身はこの通りです。
python
1from django.contrib import admin 2from django.urls import path 3from django.conf.urls import include 4 5urlpatterns = [ 6 path('admin/', admin.site.urls), 7 # mnistアプリケーションのurls.pyをインクルード urls.pyはアプリケーションごとに作ると良い 8 path('mnist/', include('mnist.urls')), 9 ]
どう改善すればよろしいでしょうか。
どうぞよろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/01/06 10:30
2020/01/06 10:34 編集
2020/01/06 10:40
2020/01/07 01:40
2020/01/07 01:49
2020/01/07 02:18
2020/01/07 04:03
2020/01/08 05:32
2020/01/09 03:01
2020/01/09 08:51