Use Neo4j in Azure Devops or Azure Machine learning

Viewed 206

I have a project in python. My goal is to create an article recommendation with Neo4j.

Here is what I did:

  1. Web scraping articles
  2. Clean the data
  3. Insert the data into Neo4j
  4. Use Neo4j algorithms (graph data science library)

Everything is working, but only on my laptop.

I would like to migrate my project on Azure devops and azure machine learning in order to have a web app.

I have an Azure account and I have created Azure ML and Azure Devops for this project but I don't know how I can use Neo4j in azure devops and azure machine learning. Maybe with a VM or a container ?

1 Answers

I don't know much about Neo4j but if this were my project I would focus on setting this up as a experiment pipeline run. You can go through all of your individual steps one-by-one.

your pipe steps:

  • Web collection
  • cleaning
  • Neo4j
  • I feel like you need a "modeling" step in there, or else why are you using AML?
  • Then deploy it to a web point in AML service.

Here is my example of script steps. You just need to replace the individual PythonScriptSteps with your code.

Related