48 lines
1.1 KiB
Plaintext
48 lines
1.1 KiB
Plaintext
{
|
|
"cells": [
|
|
{
|
|
"cell_type": "code",
|
|
"id": "initial_id",
|
|
"metadata": {
|
|
"collapsed": true,
|
|
"ExecuteTime": {
|
|
"end_time": "2025-11-04T13:58:26.819647Z",
|
|
"start_time": "2025-11-04T13:58:26.816351Z"
|
|
}
|
|
},
|
|
"source": [
|
|
"nn_architecture = [\n",
|
|
" {\"input_dim\": 2, \"output_dim\": 4, \"activation\": \"relu\"},\n",
|
|
" {\"input_dim\": 4, \"output_dim\": 6, \"activation\": \"relu\"},\n",
|
|
" {\"input_dim\": 6, \"output_dim\": 6, \"activation\": \"relu\"},\n",
|
|
" {\"input_dim\": 6, \"output_dim\": 4, \"activation\": \"relu\"},\n",
|
|
" {\"input_dim\": 4, \"output_dim\": 1, \"activation\": \"sigmoid\"},\n",
|
|
"]\n"
|
|
],
|
|
"outputs": [],
|
|
"execution_count": 1
|
|
}
|
|
],
|
|
"metadata": {
|
|
"kernelspec": {
|
|
"display_name": "Python 3",
|
|
"language": "python",
|
|
"name": "python3"
|
|
},
|
|
"language_info": {
|
|
"codemirror_mode": {
|
|
"name": "ipython",
|
|
"version": 2
|
|
},
|
|
"file_extension": ".py",
|
|
"mimetype": "text/x-python",
|
|
"name": "python",
|
|
"nbconvert_exporter": "python",
|
|
"pygments_lexer": "ipython2",
|
|
"version": "2.7.6"
|
|
}
|
|
},
|
|
"nbformat": 4,
|
|
"nbformat_minor": 5
|
|
}
|