I'm following along with a local build of the course, which also uses a locally hosted version of the database. There is no movie data in my database, so running the following returns a count of 0.
LOAD CSV WITH HEADERS FROM 'https://data.neo4j.com/llm-fundamentals/openai-embeddings.csv' AS row MATCH (m:Movie {movieId: row.movieId}) CALL db.create.setNodeVectorProperty(m, 'embedding', apoc.convert.fromJsonList(row.embedding)) RETURN count(*);
How can I get access to the movie database? I found a sample movie database by running :guide movie-graph, but this database appears to but much smaller and not compatible with the embeddings.
Is this data available for download to a locally running database?