Skip to content

Commit

Permalink
Fix import in data ingestion notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
lochhh committed Dec 19, 2024
1 parent 508b180 commit d89a6b9
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions src/user/how_to/dj_data_ingestion_and_processing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@
"source": [
"from aeon.dj_pipeline import acquisition, subject, tracking\n",
"from aeon.dj_pipeline.analysis import block_analysis\n",
"from aeon.dj_pipeline.create_experiments import create_socialexperiment\n",
"from aeon.dj_pipeline.create_experiments.create_socialexperiment import (\n",
" create_new_social_experiment,\n",
")\n",
"from aeon.dj_pipeline.populate.worker import (\n",
" AutomatedExperimentIngestion,\n",
" acquisition_worker,\n",
Expand All @@ -54,13 +56,13 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 2,
"id": "9eb99df8-4058-4014-8885-d9a393019e2d",
"metadata": {},
"outputs": [],
"source": [
"experiment_name = \"social0.2-aeon3\"\n",
"create_socialexperiment(experiment_name)\n"
"create_new_social_experiment(experiment_name)"
]
},
{
Expand Down Expand Up @@ -321,7 +323,7 @@
},
{
"cell_type": "code",
"execution_count": 10,
"execution_count": 5,
"id": "fbac420f-d0b8-4226-a47c-8e409f9e361b",
"metadata": {},
"outputs": [],
Expand Down Expand Up @@ -353,7 +355,7 @@
},
{
"cell_type": "code",
"execution_count": 15,
"execution_count": 6,
"id": "92589a7f-cf36-4de9-b36c-02dceafbf341",
"metadata": {},
"outputs": [],
Expand Down Expand Up @@ -491,7 +493,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 8,
"id": "39309e8a-634f-4ed0-9bc2-b3535df1a44d",
"metadata": {},
"outputs": [],
Expand Down Expand Up @@ -566,7 +568,7 @@
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"display_name": "aeon",
"language": "python",
"name": "python3"
},
Expand All @@ -580,7 +582,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.11.8"
"version": "3.11.9"
}
},
"nbformat": 4,
Expand Down

0 comments on commit d89a6b9

Please sign in to comment.