

Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.

# Esempi di utilizzo del servizio Neptune-Export per esportare i dati di addestramento per Neptune ML
<a name="machine-learning-export-examples"></a>

Questa richiesta esporta i dati di addestramento del grafo delle proprietà per un'attività di classificazione dei nodi:

------
#### [ curl ]

```
curl \
  {{(your NeptuneExportApiUri)}} \
  -X POST \
  -H 'Content-Type: application/json' \
  -d '{
        "command": "export-pg",
        "outputS3Path": "s3://{{(your Amazon S3 bucket)}}/neptune-export",
        "params": {
          "endpoint": "{{(your Neptune endpoint DNS name)}}",
          "profile": "neptune_ml"
        },
        "additionalParams": {
          "neptune_ml": {
            "version": "v2.0",
            "targets": [
              {
                "node": "Movie",
                "property": "genre",
                "type": "classification"
              }
            ]
          }
        }
      }'
```

------
#### [ awscurl ]

```
awscurl {{(your NeptuneExportApiUri)}} \
  --region {{us-east-1}} \
  --service execute-api \
  -X POST \
  -H 'Content-Type: application/json' \
  -d '{
        "command": "export-pg",
        "outputS3Path": "s3://{{(your Amazon S3 bucket)}}/neptune-export",
        "params": {
          "endpoint": "{{(your Neptune endpoint DNS name)}}",
          "profile": "neptune_ml"
        },
        "additionalParams": {
          "neptune_ml": {
            "version": "v2.0",
            "targets": [
              {
                "node": "Movie",
                "property": "genre",
                "type": "classification"
              }
            ]
          }
        }
      }'
```

**Nota**  
Questo esempio presuppone che le credenziali siano configurate nel proprio ambiente. AWS Sostituisci {{us-east-1}} con la regione del tuo cluster Neptune.

------

Questa richiesta esporta i dati di addestramento RDF per un'attività di classificazione dei nodi:

------
#### [ curl ]

```
curl \
  {{(your NeptuneExportApiUri)}} \
  -X POST \
  -H 'Content-Type: application/json' \
  -d '{
        "command": "export-rdf",
        "outputS3Path": "s3://{{(your Amazon S3 bucket)}}/neptune-export",
        "params": {
          "endpoint": "{{(your Neptune endpoint DNS name)}}",
          "profile": "neptune_ml"
        },
        "additionalParams": {
          "neptune_ml": {
            "version": "v2.0",
            "targets": [
              {
                "node": "http://aws.amazon.com/neptune/csv2rdf/class/Movie",
                "predicate": "http://aws.amazon.com/neptune/csv2rdf/datatypeProperty/genre",
                "type": "classification"
              }
            ]
          }
        }
      }'
```

------
#### [ awscurl ]

```
awscurl {{(your NeptuneExportApiUri)}} \
  --region {{us-east-1}} \
  --service execute-api \
  -X POST \
  -H 'Content-Type: application/json' \
  -d '{
        "command": "export-rdf",
        "outputS3Path": "s3://{{(your Amazon S3 bucket)}}/neptune-export",
        "params": {
          "endpoint": "{{(your Neptune endpoint DNS name)}}",
          "profile": "neptune_ml"
        },
        "additionalParams": {
          "neptune_ml": {
            "version": "v2.0",
            "targets": [
              {
                "node": "http://aws.amazon.com/neptune/csv2rdf/class/Movie",
                "predicate": "http://aws.amazon.com/neptune/csv2rdf/datatypeProperty/genre",
                "type": "classification"
              }
            ]
          }
        }
      }'
```

**Nota**  
Questo esempio presuppone che le AWS credenziali siano configurate nel proprio ambiente. Sostituisci {{us-east-1}} con la regione del tuo cluster Neptune.

------