Skip to content

Commit

Permalink
fixing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
yohannestayez committed Jan 8, 2025
1 parent 0b23241 commit eff19ce
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
22 changes: 11 additions & 11 deletions notebooks/data_preprocessing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -34,7 +34,7 @@
},
{
"cell_type": "code",
"execution_count": 2,
"execution_count": 13,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -377,7 +377,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": 14,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -588,7 +588,7 @@
},
{
"cell_type": "code",
"execution_count": 4,
"execution_count": 15,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -621,7 +621,7 @@
},
{
"cell_type": "code",
"execution_count": 5,
"execution_count": 16,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -655,7 +655,7 @@
},
{
"cell_type": "code",
"execution_count": 6,
"execution_count": 17,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -689,7 +689,7 @@
},
{
"cell_type": "code",
"execution_count": 7,
"execution_count": 18,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -722,7 +722,7 @@
},
{
"cell_type": "code",
"execution_count": 8,
"execution_count": 19,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -755,7 +755,7 @@
},
{
"cell_type": "code",
"execution_count": 9,
"execution_count": 20,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -789,7 +789,7 @@
},
{
"cell_type": "code",
"execution_count": 10,
"execution_count": 21,
"metadata": {},
"outputs": [
{
Expand Down Expand Up @@ -823,7 +823,7 @@
},
{
"cell_type": "code",
"execution_count": 11,
"execution_count": 22,
"metadata": {},
"outputs": [
{
Expand Down
2 changes: 1 addition & 1 deletion scripts/neo4j_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def load_movies(connector):
LOAD CSV WITH HEADERS FROM 'file:///movies_cleaned.csv' AS row
MERGE (m:Movie {id: row.id})
SET m.title = row.title,
m.genres = row.genres,
m.genres = apoc.convert.fromJsonList(row.genres),
m.release_year = toInteger(row.release_year),
m.popularity = toFloat(row.popularity),
m.vote_average = toFloat(row.vote_average),
Expand Down

0 comments on commit eff19ce

Please sign in to comment.