Skip to content

Commit

Permalink
just append path in the notebooks. i give up!
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunsavel committed Feb 14, 2024
1 parent c47d045 commit 30c65e0
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/pages/Quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
"outputs": [],
"source": [
"import numpy as np\n",
"import sys\n",
"\n",
"sys.path.insert(0, os.path.abspath(\"../../src\"))\n",
"\n",
"import cortecs\n",
"from cortecs.opac.opac import *\n",
Expand Down
3 changes: 3 additions & 0 deletions docs/pages/fitting_nn.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@
"import tensorflow as tf\n",
"import os\n",
"import random\n",
"import sys\n",
"\n",
"sys.path.insert(0, os.path.abspath(\"../../src\"))\n",
"\n",
"import cortecs\n",
"from cortecs.opac.opac import *\n",
Expand Down
3 changes: 3 additions & 0 deletions docs/pages/fitting_polynomial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
"outputs": [],
"source": [
"import numpy as np\n",
"import sys\n",
"\n",
"sys.path.insert(0, os.path.abspath(\"../../src\"))\n",
"\n",
"import cortecs\n",
"from cortecs.opac.opac import *\n",
Expand Down
3 changes: 3 additions & 0 deletions docs/pages/optimizing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
"import numpy as np\n",
"import random\n",
"import os\n",
"import sys\n",
"\n",
"sys.path.insert(0, os.path.abspath(\"../../src\"))\n",
"\n",
"import cortecs\n",
"from cortecs.opac.opac import *\n",
Expand Down

0 comments on commit 30c65e0

Please sign in to comment.